list_source_locations
(**kwargs)¶Lists the source locations for a channel. A source location defines the host server URL, and contains a list of sources.
See also: AWS API Documentation
Request Syntax
response = client.list_source_locations(
MaxResults=123,
NextToken='string'
)
MaxResults
source locations, use the value of NextToken
in the response to get the next page of results.dict
Response Syntax
{
'Items': [
{
'AccessConfiguration': {
'AccessType': 'S3_SIGV4'|'SECRETS_MANAGER_ACCESS_TOKEN',
'SecretsManagerAccessTokenConfiguration': {
'HeaderName': 'string',
'SecretArn': 'string',
'SecretStringKey': 'string'
}
},
'Arn': 'string',
'CreationTime': datetime(2015, 1, 1),
'DefaultSegmentDeliveryConfiguration': {
'BaseUrl': 'string'
},
'HttpConfiguration': {
'BaseUrl': 'string'
},
'LastModifiedTime': datetime(2015, 1, 1),
'SegmentDeliveryConfigurations': [
{
'BaseUrl': 'string',
'Name': 'string'
},
],
'SourceLocationName': 'string',
'Tags': {
'string': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Items (list) --
A list of source locations.
(dict) --
A source location is a container for sources. For more information about source locations, see Working with source locations in the MediaTailor User Guide .
AccessConfiguration (dict) --
The access configuration for the source location.
AccessType (string) --
The type of authentication used to access content from HttpConfiguration::BaseUrl
on your source location. Accepted value: S3_SIGV4
.
S3_SIGV4
- AWS Signature Version 4 authentication for Amazon S3 hosted virtual-style access. If your source location base URL is an Amazon S3 bucket, MediaTailor can use AWS Signature Version 4 (SigV4) authentication to access the bucket where your source content is stored. Your MediaTailor source location baseURL must follow the S3 virtual hosted-style request URL format. For example, https://bucket-name.s3.Region.amazonaws.com/key-name.
Before you can use S3_SIGV4
, you must meet these requirements:
SecretsManagerAccessTokenConfiguration (dict) --
AWS Secrets Manager access token configuration parameters.
HeaderName (string) --
The name of the HTTP header used to supply the access token in requests to the source location.
SecretArn (string) --
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the access token.
SecretStringKey (string) --
The AWS Secrets Manager SecretString key associated with the access token. MediaTailor uses the key to look up SecretString key and value pair containing the access token.
Arn (string) --
The ARN of the SourceLocation.
CreationTime (datetime) --
The timestamp that indicates when the source location was created.
DefaultSegmentDeliveryConfiguration (dict) --
The default segment delivery configuration.
BaseUrl (string) --
The hostname of the server that will be used to serve segments. This string must include the protocol, such as https:// .
HttpConfiguration (dict) --
The HTTP configuration for the source location.
BaseUrl (string) --
The base URL for the source location host server. This string must include the protocol, such as https:// .
LastModifiedTime (datetime) --
The timestamp that indicates when the source location was last modified.
SegmentDeliveryConfigurations (list) --
The segment delivery configurations for the source location.
(dict) --
The segment delivery configuration settings.
BaseUrl (string) --
The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as https://example.com/some/path
. To use a relative URL specify the relative path, such as /some/path*
.
Name (string) --
A unique identifier used to distinguish between multiple segment delivery configurations in a source location.
SourceLocationName (string) --
The name of the source location.
Tags (dict) --
The tags assigned to the source location. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources.
NextToken (string) --
Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.