MediaTailor

Table of Contents

Client

class MediaTailor.Client

A low-level client representing AWS MediaTailor

Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads to viewers while maintaining broadcast quality in over-the-top (OTT) video applications. For information about using the service, including detailed information about the settings covered in this guide, see the AWS Elemental MediaTailor User Guide .

Through the SDKs and the CLI you manage AWS Elemental MediaTailor configurations and channels the same as you do through the console. For example, you specify ad insertion behavior and mapping information for the origin server and the ad decision server (ADS).

import boto3

client = boto3.client('mediatailor')

These are the available methods:

can_paginate(operation_name)

Check if an operation can be paginated.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Returns
True if the operation can be paginated, False otherwise.
configure_logs_for_playback_configuration(**kwargs)

Configures Amazon CloudWatch log settings for a playback configuration.

See also: AWS API Documentation

Request Syntax

response = client.configure_logs_for_playback_configuration(
    PercentEnabled=123,
    PlaybackConfigurationName='string'
)
Parameters
  • PercentEnabled (integer) --

    [REQUIRED]

    The percentage of session logs that MediaTailor sends to your Cloudwatch Logs account. For example, if your playback configuration has 1000 sessions and percentEnabled is set to 60, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the debug log mode .

    Valid values: 0 - 100

  • PlaybackConfigurationName (string) --

    [REQUIRED]

    The name of the playback configuration.

Return type

dict

Returns

Response Syntax

{
    'PercentEnabled': 123,
    'PlaybackConfigurationName': 'string'
}

Response Structure

  • (dict) --

    Success.

    • PercentEnabled (integer) --

      The percentage of session logs that MediaTailor sends to your Cloudwatch Logs account.

    • PlaybackConfigurationName (string) --

      The name of the playback configuration.

create_channel(**kwargs)

Creates a channel.

See also: AWS API Documentation

Request Syntax

response = client.create_channel(
    ChannelName='string',
    FillerSlate={
        'SourceLocationName': 'string',
        'VodSourceName': 'string'
    },
    Outputs=[
        {
            'DashPlaylistSettings': {
                'ManifestWindowSeconds': 123,
                'MinBufferTimeSeconds': 123,
                'MinUpdatePeriodSeconds': 123,
                'SuggestedPresentationDelaySeconds': 123
            },
            'HlsPlaylistSettings': {
                'ManifestWindowSeconds': 123
            },
            'ManifestName': 'string',
            'SourceGroup': 'string'
        },
    ],
    PlaybackMode='LOOP'|'LINEAR',
    Tags={
        'string': 'string'
    }
)
Parameters
  • ChannelName (string) --

    [REQUIRED]

    The identifier for the channel you are working on.

  • FillerSlate (dict) --

    The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses a LINEAR PlaybackMode.

    • SourceLocationName (string) --

      The name of the source location where the slate VOD source is stored.

    • VodSourceName (string) --

      The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

  • Outputs (list) --

    [REQUIRED]

    The channel's output properties.

    • (dict) --

      The output configuration for this channel.

      • DashPlaylistSettings (dict) --

        DASH manifest configuration parameters.

        • ManifestWindowSeconds (integer) --

          The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

        • MinBufferTimeSeconds (integer) --

          Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: 2 seconds. Maximum value: 60 seconds.

        • MinUpdatePeriodSeconds (integer) --

          Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

        • SuggestedPresentationDelaySeconds (integer) --

          Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

      • HlsPlaylistSettings (dict) --

        HLS playlist configuration parameters.

        • ManifestWindowSeconds (integer) --

          The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

      • ManifestName (string) -- [REQUIRED]

        The name of the manifest for the channel. The name appears in the PlaybackUrl.

      • SourceGroup (string) -- [REQUIRED]

        A string used to match which HttpPackageConfiguration is used for each VodSource.

  • PlaybackMode (string) --

    [REQUIRED]

    The type of playback mode to use for this channel.

    LINEAR - The programs in the schedule play once back-to-back in the schedule.

    LOOP - The programs in the schedule play back-to-back in an endless loop. When the last program in the schedule stops playing, playback loops back to the first program in the schedule.

  • Tags (dict) --

    The tags to assign to the channel.

    • (string) --
      • (string) --
Return type

dict

Returns

Response Syntax

{
    'Arn': 'string',
    'ChannelName': 'string',
    'ChannelState': 'RUNNING'|'STOPPED',
    'CreationTime': datetime(2015, 1, 1),
    'FillerSlate': {
        'SourceLocationName': 'string',
        'VodSourceName': 'string'
    },
    'LastModifiedTime': datetime(2015, 1, 1),
    'Outputs': [
        {
            'DashPlaylistSettings': {
                'ManifestWindowSeconds': 123,
                'MinBufferTimeSeconds': 123,
                'MinUpdatePeriodSeconds': 123,
                'SuggestedPresentationDelaySeconds': 123
            },
            'HlsPlaylistSettings': {
                'ManifestWindowSeconds': 123
            },
            'ManifestName': 'string',
            'PlaybackUrl': 'string',
            'SourceGroup': 'string'
        },
    ],
    'PlaybackMode': 'string',
    'Tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --

    Success.

    • Arn (string) --

      The ARN of the channel.

    • ChannelName (string) --

      The name of the channel.

    • ChannelState (string) --

      Indicates whether the channel is in a running state or not.

    • CreationTime (datetime) --

      The timestamp of when the channel was created.

    • FillerSlate (dict) --

      Contains information about the slate used to fill gaps between programs in the schedule.

      • SourceLocationName (string) --

        The name of the source location where the slate VOD source is stored.

      • VodSourceName (string) --

        The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

    • LastModifiedTime (datetime) --

      The timestamp of when the channel was last modified.

    • Outputs (list) --

      The channel's output properties.

      • (dict) --

        This response includes only the "property" : "type" property.

        • DashPlaylistSettings (dict) --

          DASH manifest configuration settings.

          • ManifestWindowSeconds (integer) --

            The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

          • MinBufferTimeSeconds (integer) --

            Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: 2 seconds. Maximum value: 60 seconds.

          • MinUpdatePeriodSeconds (integer) --

            Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

          • SuggestedPresentationDelaySeconds (integer) --

            Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

        • HlsPlaylistSettings (dict) --

          HLS manifest configuration settings.

          • ManifestWindowSeconds (integer) --

            The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

        • ManifestName (string) --

          The name of the manifest for the channel that will appear in the channel output's playback URL.

        • PlaybackUrl (string) --

          The URL used for playback by content players.

        • SourceGroup (string) --

          A string used to associate a package configuration source group with a channel output.

    • PlaybackMode (string) --

      The channel's playback mode.

    • Tags (dict) --

      The tags assigned to the channel.

      • (string) --
        • (string) --

create_prefetch_schedule(**kwargs)

Creates a new prefetch schedule for the specified playback configuration.

See also: AWS API Documentation

Request Syntax

response = client.create_prefetch_schedule(
    Consumption={
        'AvailMatchingCriteria': [
            {
                'DynamicVariable': 'string',
                'Operator': 'EQUALS'
            },
        ],
        'EndTime': datetime(2015, 1, 1),
        'StartTime': datetime(2015, 1, 1)
    },
    Name='string',
    PlaybackConfigurationName='string',
    Retrieval={
        'DynamicVariables': {
            'string': 'string'
        },
        'EndTime': datetime(2015, 1, 1),
        'StartTime': datetime(2015, 1, 1)
    },
    StreamId='string'
)
Parameters
  • Consumption (dict) --

    [REQUIRED]

    The configuration settings for MediaTailor's consumption of the prefetched ads from the ad decision server. Each consumption configuration contains an end time and an optional start time that define the consumption window . Prefetch schedules automatically expire no earlier than seven days after the end time.

    • AvailMatchingCriteria (list) --

      If you only want MediaTailor to insert prefetched ads into avails (ad breaks) that match specific dynamic variables, such as scte.event_id, set the avail matching criteria.

      • (dict) --

        MediaTailor only places (consumes) prefetched ads if the ad break meets the criteria defined by the dynamic variables. This gives you granular control over which ad break to place the prefetched ads into.

        As an example, let's say that you set DynamicVariable to scte.event_id and Operator to EQUALS, and your playback configuration has an ADS URL of https://my.ads.server.com/path?&podId=[scte.avail_num]&event=[scte.event_id]&duration=[session.avail_duration_secs]. And the prefetch request to the ADS contains these values https://my.ads.server.com/path?&podId=3&event=my-awesome-event&duration=30. MediaTailor will only insert the prefetched ads into the ad break if has a SCTE marker with an event id of my-awesome-event, since it must match the event id that MediaTailor uses to query the ADS.

        You can specify up to five AvailMatchingCriteria. If you specify multiple AvailMatchingCriteria, MediaTailor combines them to match using a logical AND. You can model logical OR combinations by creating multiple prefetch schedules.

        • DynamicVariable (string) -- [REQUIRED]

          The dynamic variable(s) that MediaTailor should use as avail matching criteria. MediaTailor only places the prefetched ads into the avail if the avail matches the criteria defined by the dynamic variable. For information about dynamic variables, see Using dynamic ad variables in the MediaTailor User Guide .

          You can include up to 100 dynamic variables.

        • Operator (string) -- [REQUIRED]

          For the DynamicVariable specified in AvailMatchingCriteria, the Operator that is used for the comparison.

    • EndTime (datetime) -- [REQUIRED]

      The time when MediaTailor no longer considers the prefetched ads for use in an ad break. MediaTailor automatically deletes prefetch schedules no less than seven days after the end time. If you'd like to manually delete the prefetch schedule, you can call DeletePrefetchSchedule.

    • StartTime (datetime) --

      The time when prefetched ads are considered for use in an ad break. If you don't specify StartTime, the prefetched ads are available after MediaTailor retrives them from the ad decision server.

  • Name (string) --

    [REQUIRED]

    The identifier for the playback configuration.

  • PlaybackConfigurationName (string) --

    [REQUIRED]

    The name of the playback configuration.

  • Retrieval (dict) --

    [REQUIRED]

    The configuration settings for retrieval of prefetched ads from the ad decision server. Only one set of prefetched ads will be retrieved and subsequently consumed for each ad break.

    • DynamicVariables (dict) --

      The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS).

      You intially configure dynamic variables for the ADS URL when you set up your playback configuration. When you specify DynamicVariables for prefetch retrieval, MediaTailor includes the dynamic variables in the request to the ADS.

      • (string) --
        • (string) --
    • EndTime (datetime) -- [REQUIRED]

      The time when prefetch retrieval ends for the ad break. Prefetching will be attempted for manifest requests that occur at or before this time.

    • StartTime (datetime) --

      The time when prefetch retrievals can start for this break. Ad prefetching will be attempted for manifest requests that occur at or after this time. Defaults to the current time. If not specified, the prefetch retrieval starts as soon as possible.

  • StreamId (string) -- An optional stream identifier that MediaTailor uses to prefetch ads for multiple streams that use the same playback configuration. If StreamId is specified, MediaTailor returns all of the prefetch schedules with an exact match on StreamId. If not specified, MediaTailor returns all of the prefetch schedules for the playback configuration, regardless of StreamId.
Return type

dict

Returns

Response Syntax

{
    'Arn': 'string',
    'Consumption': {
        'AvailMatchingCriteria': [
            {
                'DynamicVariable': 'string',
                'Operator': 'EQUALS'
            },
        ],
        'EndTime': datetime(2015, 1, 1),
        'StartTime': datetime(2015, 1, 1)
    },
    'Name': 'string',
    'PlaybackConfigurationName': 'string',
    'Retrieval': {
        'DynamicVariables': {
            'string': 'string'
        },
        'EndTime': datetime(2015, 1, 1),
        'StartTime': datetime(2015, 1, 1)
    },
    'StreamId': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Arn (string) --

      The Amazon Resource Name (ARN) of the prefetch schedule.

    • Consumption (dict) --

      Consumption settings determine how, and when, MediaTailor places the prefetched ads into ad breaks. Ad consumption occurs within a span of time that you define, called a consumption window . You can designate which ad breaks that MediaTailor fills with prefetch ads by setting avail matching criteria.

      • AvailMatchingCriteria (list) --

        If you only want MediaTailor to insert prefetched ads into avails (ad breaks) that match specific dynamic variables, such as scte.event_id, set the avail matching criteria.

        • (dict) --

          MediaTailor only places (consumes) prefetched ads if the ad break meets the criteria defined by the dynamic variables. This gives you granular control over which ad break to place the prefetched ads into.

          As an example, let's say that you set DynamicVariable to scte.event_id and Operator to EQUALS, and your playback configuration has an ADS URL of https://my.ads.server.com/path?&podId=[scte.avail_num]&event=[scte.event_id]&duration=[session.avail_duration_secs]. And the prefetch request to the ADS contains these values https://my.ads.server.com/path?&podId=3&event=my-awesome-event&duration=30. MediaTailor will only insert the prefetched ads into the ad break if has a SCTE marker with an event id of my-awesome-event, since it must match the event id that MediaTailor uses to query the ADS.

          You can specify up to five AvailMatchingCriteria. If you specify multiple AvailMatchingCriteria, MediaTailor combines them to match using a logical AND. You can model logical OR combinations by creating multiple prefetch schedules.

          • DynamicVariable (string) --

            The dynamic variable(s) that MediaTailor should use as avail matching criteria. MediaTailor only places the prefetched ads into the avail if the avail matches the criteria defined by the dynamic variable. For information about dynamic variables, see Using dynamic ad variables in the MediaTailor User Guide .

            You can include up to 100 dynamic variables.

          • Operator (string) --

            For the DynamicVariable specified in AvailMatchingCriteria, the Operator that is used for the comparison.

      • EndTime (datetime) --

        The time when MediaTailor no longer considers the prefetched ads for use in an ad break. MediaTailor automatically deletes prefetch schedules no less than seven days after the end time. If you'd like to manually delete the prefetch schedule, you can call DeletePrefetchSchedule.

      • StartTime (datetime) --

        The time when prefetched ads are considered for use in an ad break. If you don't specify StartTime, the prefetched ads are available after MediaTailor retrives them from the ad decision server.

    • Name (string) --

      The name of the prefetch schedule. The name must be unique among all prefetch schedules that are associated with the specified playback configuration.

    • PlaybackConfigurationName (string) --

      The name of the playback configuration to create the prefetch schedule for.

    • Retrieval (dict) --

      A complex type that contains settings for prefetch retrieval from the ad decision server (ADS).

      • DynamicVariables (dict) --

        The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS).

        You intially configure dynamic variables for the ADS URL when you set up your playback configuration. When you specify DynamicVariables for prefetch retrieval, MediaTailor includes the dynamic variables in the request to the ADS.

        • (string) --
          • (string) --
      • EndTime (datetime) --

        The time when prefetch retrieval ends for the ad break. Prefetching will be attempted for manifest requests that occur at or before this time.

      • StartTime (datetime) --

        The time when prefetch retrievals can start for this break. Ad prefetching will be attempted for manifest requests that occur at or after this time. Defaults to the current time. If not specified, the prefetch retrieval starts as soon as possible.

    • StreamId (string) --

      An optional stream identifier that you can specify in order to prefetch for multiple streams that use the same playback configuration.

create_program(**kwargs)

Creates a program.

See also: AWS API Documentation

Request Syntax

response = client.create_program(
    AdBreaks=[
        {
            'MessageType': 'SPLICE_INSERT',
            'OffsetMillis': 123,
            'Slate': {
                'SourceLocationName': 'string',
                'VodSourceName': 'string'
            },
            'SpliceInsertMessage': {
                'AvailNum': 123,
                'AvailsExpected': 123,
                'SpliceEventId': 123,
                'UniqueProgramId': 123
            }
        },
    ],
    ChannelName='string',
    ProgramName='string',
    ScheduleConfiguration={
        'Transition': {
            'RelativePosition': 'BEFORE_PROGRAM'|'AFTER_PROGRAM',
            'RelativeProgram': 'string',
            'ScheduledStartTimeMillis': 123,
            'Type': 'string'
        }
    },
    SourceLocationName='string',
    VodSourceName='string'
)
Parameters
  • AdBreaks (list) --

    The ad break configuration settings.

    • (dict) --

      Ad break configuration parameters.

      • MessageType (string) --

        The SCTE-35 ad insertion type. Accepted value: SPLICE_INSERT.

      • OffsetMillis (integer) --

        How long (in milliseconds) after the beginning of the program that an ad starts. This value must fall within 100ms of a segment boundary, otherwise the ad break will be skipped.

      • Slate (dict) --

        Ad break slate configuration.

        • SourceLocationName (string) --

          The name of the source location where the slate VOD source is stored.

        • VodSourceName (string) --

          The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

      • SpliceInsertMessage (dict) --

        This defines the SCTE-35 splice_insert() message inserted around the ad. For information about using splice_insert(), see the SCTE-35 specficiaiton, section 9.7.3.1.

        • AvailNum (integer) --

          This is written to splice_insert.avail_num, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

        • AvailsExpected (integer) --

          This is written to splice_insert.avails_expected, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

        • SpliceEventId (integer) --

          This is written to splice_insert.splice_event_id, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 1.

        • UniqueProgramId (integer) --

          This is written to splice_insert.unique_program_id, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

  • ChannelName (string) --

    [REQUIRED]

    The identifier for the channel you are working on.

  • ProgramName (string) --

    [REQUIRED]

    The identifier for the program you are working on.

  • ScheduleConfiguration (dict) --

    [REQUIRED]

    The schedule configuration settings.

    • Transition (dict) -- [REQUIRED]

      Program transition configurations.

      • RelativePosition (string) -- [REQUIRED]

        The position where this program will be inserted relative to the RelativePosition.

      • RelativeProgram (string) --

        The name of the program that this program will be inserted next to, as defined by RelativePosition.

      • ScheduledStartTimeMillis (integer) --

        The date and time that the program is scheduled to start, in epoch milliseconds.

      • Type (string) -- [REQUIRED]

        Defines when the program plays in the schedule. You can set the value to ABSOLUTE or RELATIVE.

        ABSOLUTE - The program plays at a specific wall clock time. This setting can only be used for channels using the LINEAR PlaybackMode.

        Note the following considerations when using ABSOLUTE transitions:

        If the preceding program in the schedule has a duration that extends past the wall clock time, MediaTailor truncates the preceding program on a common segment boundary.

        If there are gaps in playback, MediaTailor plays the FillerSlate you configured for your linear channel.

        RELATIVE - The program is inserted into the schedule either before or after a program that you specify via RelativePosition.

  • SourceLocationName (string) --

    [REQUIRED]

    The name of the source location.

  • VodSourceName (string) --

    [REQUIRED]

    The name that's used to refer to a VOD source.

Return type

dict

Returns

Response Syntax

{
    'AdBreaks': [
        {
            'MessageType': 'SPLICE_INSERT',
            'OffsetMillis': 123,
            'Slate': {
                'SourceLocationName': 'string',
                'VodSourceName': 'string'
            },
            'SpliceInsertMessage': {
                'AvailNum': 123,
                'AvailsExpected': 123,
                'SpliceEventId': 123,
                'UniqueProgramId': 123
            }
        },
    ],
    'Arn': 'string',
    'ChannelName': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'ProgramName': 'string',
    'ScheduledStartTime': datetime(2015, 1, 1),
    'SourceLocationName': 'string',
    'VodSourceName': 'string'
}

Response Structure

  • (dict) --

    Success.

    • AdBreaks (list) --

      The ad break configuration settings.

      • (dict) --

        Ad break configuration parameters.

        • MessageType (string) --

          The SCTE-35 ad insertion type. Accepted value: SPLICE_INSERT.

        • OffsetMillis (integer) --

          How long (in milliseconds) after the beginning of the program that an ad starts. This value must fall within 100ms of a segment boundary, otherwise the ad break will be skipped.

        • Slate (dict) --

          Ad break slate configuration.

          • SourceLocationName (string) --

            The name of the source location where the slate VOD source is stored.

          • VodSourceName (string) --

            The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

        • SpliceInsertMessage (dict) --

          This defines the SCTE-35 splice_insert() message inserted around the ad. For information about using splice_insert(), see the SCTE-35 specficiaiton, section 9.7.3.1.

          • AvailNum (integer) --

            This is written to splice_insert.avail_num, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

          • AvailsExpected (integer) --

            This is written to splice_insert.avails_expected, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

          • SpliceEventId (integer) --

            This is written to splice_insert.splice_event_id, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 1.

          • UniqueProgramId (integer) --

            This is written to splice_insert.unique_program_id, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

    • Arn (string) --

      The ARN of the program.

    • ChannelName (string) --

      The name of the channel that the program belongs to.

    • CreationTime (datetime) --

      The timestamp of when the program was created.

    • ProgramName (string) --

      The name of the program.

    • ScheduledStartTime (datetime) --

      The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.

    • SourceLocationName (string) --

      The source location name.

    • VodSourceName (string) --

      The name that's used to refer to a VOD source.

create_source_location(**kwargs)

Creates a source location on a specific channel.

See also: AWS API Documentation

Request Syntax

response = client.create_source_location(
    AccessConfiguration={
        'AccessType': 'S3_SIGV4'|'SECRETS_MANAGER_ACCESS_TOKEN',
        'SecretsManagerAccessTokenConfiguration': {
            'HeaderName': 'string',
            'SecretArn': 'string',
            'SecretStringKey': 'string'
        }
    },
    DefaultSegmentDeliveryConfiguration={
        'BaseUrl': 'string'
    },
    HttpConfiguration={
        'BaseUrl': 'string'
    },
    SourceLocationName='string',
    Tags={
        'string': 'string'
    }
)
Parameters
  • AccessConfiguration (dict) --

    Access configuration parameters. Configures the type of authentication used to access content from your 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:

      • You must allow MediaTailor to access your S3 bucket by granting mediatailor.amazonaws.com principal access in IAM. For information about configuring access in IAM, see Access management in the IAM User Guide.
      • The mediatailor.amazonaws.com service principal must have permissions to read all top level manifests referenced by the VodSource packaging configurations.
      • The caller of the API must have s3:GetObject IAM permissions to read all top level manifests referenced by your MediaTailor VodSource packaging configurations.
    • 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.

  • DefaultSegmentDeliveryConfiguration (dict) --

    The optional configuration for the server that serves segments.

    • 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) --

    [REQUIRED]

    The source's HTTP package configurations.

    • BaseUrl (string) -- [REQUIRED]

      The base URL for the source location host server. This string must include the protocol, such as https:// .

  • SourceLocationName (string) --

    [REQUIRED]

    The identifier for the source location you are working on.

  • Tags (dict) --

    The tags to assign to the source location.

    • (string) --
      • (string) --
Return type

dict

Returns

Response Syntax

{
    '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),
    'SourceLocationName': 'string',
    'Tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --

    Success.

    • 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:

        • You must allow MediaTailor to access your S3 bucket by granting mediatailor.amazonaws.com principal access in IAM. For information about configuring access in IAM, see Access management in the IAM User Guide.
        • The mediatailor.amazonaws.com service principal must have permissions to read all top level manifests referenced by the VodSource packaging configurations.
        • The caller of the API must have s3:GetObject IAM permissions to read all top level manifests referenced by your MediaTailor VodSource packaging configurations.
      • 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 source location.

    • CreationTime (datetime) --

      The timestamp that indicates when the source location was created.

    • DefaultSegmentDeliveryConfiguration (dict) --

      The default segment delivery configuration settings.

      • 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 package configuration settings 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.

    • SourceLocationName (string) --

      The name of the source location.

    • Tags (dict) --

      The tags assigned to the source location.

      • (string) --
        • (string) --

create_vod_source(**kwargs)

Creates name for a specific VOD source in a source location.

See also: AWS API Documentation

Request Syntax

response = client.create_vod_source(
    HttpPackageConfigurations=[
        {
            'Path': 'string',
            'SourceGroup': 'string',
            'Type': 'DASH'|'HLS'
        },
    ],
    SourceLocationName='string',
    Tags={
        'string': 'string'
    },
    VodSourceName='string'
)
Parameters
  • HttpPackageConfigurations (list) --

    [REQUIRED]

    An array of HTTP package configuration parameters for this VOD source.

    • (dict) --

      The HTTP package configuration properties for the requested VOD source.

      • Path (string) -- [REQUIRED]

        The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.

      • SourceGroup (string) -- [REQUIRED]

        The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.

      • Type (string) -- [REQUIRED]

        The streaming protocol for this package configuration. Supported values are HLS and DASH.

  • SourceLocationName (string) --

    [REQUIRED]

    The identifier for the source location you are working on.

  • Tags (dict) --

    The tags to assign to the VOD source.

    • (string) --
      • (string) --
  • VodSourceName (string) --

    [REQUIRED]

    The identifier for the VOD source you are working on.

Return type

dict

Returns

Response Syntax

{
    'Arn': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'HttpPackageConfigurations': [
        {
            'Path': 'string',
            'SourceGroup': 'string',
            'Type': 'DASH'|'HLS'
        },
    ],
    'LastModifiedTime': datetime(2015, 1, 1),
    'SourceLocationName': 'string',
    'Tags': {
        'string': 'string'
    },
    'VodSourceName': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Arn (string) --

      The ARN of the VOD source.

    • CreationTime (datetime) --

      The timestamp that indicates when the VOD source was created.

    • HttpPackageConfigurations (list) --

      The HTTP package configurations.

      • (dict) --

        The HTTP package configuration properties for the requested VOD source.

        • Path (string) --

          The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.

        • SourceGroup (string) --

          The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.

        • Type (string) --

          The streaming protocol for this package configuration. Supported values are HLS and DASH.

    • LastModifiedTime (datetime) --

      The ARN for the VOD source.

    • SourceLocationName (string) --

      The name of the source location associated with the VOD source.

    • Tags (dict) --

      The tags assigned to the VOD source.

      • (string) --
        • (string) --
    • VodSourceName (string) --

      The name of the VOD source.

delete_channel(**kwargs)

Deletes a channel. You must stop the channel before it can be deleted.

See also: AWS API Documentation

Request Syntax

response = client.delete_channel(
    ChannelName='string'
)
Parameters
ChannelName (string) --

[REQUIRED]

The identifier for the channel you are working on.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Success.

delete_channel_policy(**kwargs)

Deletes a channel's IAM policy.

See also: AWS API Documentation

Request Syntax

response = client.delete_channel_policy(
    ChannelName='string'
)
Parameters
ChannelName (string) --

[REQUIRED]

The identifier for the channel you are working on.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Success.

delete_playback_configuration(**kwargs)

Deletes the playback configuration for the specified name.

See also: AWS API Documentation

Request Syntax

response = client.delete_playback_configuration(
    Name='string'
)
Parameters
Name (string) --

[REQUIRED]

The identifier for the playback configuration.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    The request was successful and there is no content in the response.

delete_prefetch_schedule(**kwargs)

Deletes a prefetch schedule for a specific playback configuration. If you call DeletePrefetchSchedule on an expired prefetch schedule, MediaTailor returns an HTTP 404 status code.

See also: AWS API Documentation

Request Syntax

response = client.delete_prefetch_schedule(
    Name='string',
    PlaybackConfigurationName='string'
)
Parameters
  • Name (string) --

    [REQUIRED]

    The identifier for the playback configuration.

  • PlaybackConfigurationName (string) --

    [REQUIRED]

    The name of the playback configuration.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

    The request was successful and there is no content in the response.

delete_program(**kwargs)

Deletes a specific program on a specific channel.

See also: AWS API Documentation

Request Syntax

response = client.delete_program(
    ChannelName='string',
    ProgramName='string'
)
Parameters
  • ChannelName (string) --

    [REQUIRED]

    The identifier for the channel you are working on.

  • ProgramName (string) --

    [REQUIRED]

    The identifier for the program you are working on.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

    Success.

delete_source_location(**kwargs)

Deletes a source location on a specific channel.

See also: AWS API Documentation

Request Syntax

response = client.delete_source_location(
    SourceLocationName='string'
)
Parameters
SourceLocationName (string) --

[REQUIRED]

The identifier for the source location you are working on.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Success.

delete_vod_source(**kwargs)

Deletes a specific VOD source in a specific source location.

See also: AWS API Documentation

Request Syntax

response = client.delete_vod_source(
    SourceLocationName='string',
    VodSourceName='string'
)
Parameters
  • SourceLocationName (string) --

    [REQUIRED]

    The identifier for the source location you are working on.

  • VodSourceName (string) --

    [REQUIRED]

    The identifier for the VOD source you are working on.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

    Success.

describe_channel(**kwargs)

Describes the properties of a specific channel.

See also: AWS API Documentation

Request Syntax

response = client.describe_channel(
    ChannelName='string'
)
Parameters
ChannelName (string) --

[REQUIRED]

The identifier for the channel you are working on.

Return type
dict
Returns
Response Syntax
{
    'Arn': 'string',
    'ChannelName': 'string',
    'ChannelState': 'RUNNING'|'STOPPED',
    'CreationTime': datetime(2015, 1, 1),
    'FillerSlate': {
        'SourceLocationName': 'string',
        'VodSourceName': 'string'
    },
    'LastModifiedTime': datetime(2015, 1, 1),
    'Outputs': [
        {
            'DashPlaylistSettings': {
                'ManifestWindowSeconds': 123,
                'MinBufferTimeSeconds': 123,
                'MinUpdatePeriodSeconds': 123,
                'SuggestedPresentationDelaySeconds': 123
            },
            'HlsPlaylistSettings': {
                'ManifestWindowSeconds': 123
            },
            'ManifestName': 'string',
            'PlaybackUrl': 'string',
            'SourceGroup': 'string'
        },
    ],
    'PlaybackMode': 'string',
    'Tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --

    Success.

    • Arn (string) --

      The ARN of the channel.

    • ChannelName (string) --

      The name of the channel.

    • ChannelState (string) --

      Indicates whether the channel is in a running state or not.

    • CreationTime (datetime) --

      The timestamp of when the channel was created.

    • FillerSlate (dict) --

      Contains information about the slate used to fill gaps between programs in the schedule.

      • SourceLocationName (string) --

        The name of the source location where the slate VOD source is stored.

      • VodSourceName (string) --

        The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

    • LastModifiedTime (datetime) --

      The timestamp of when the channel was last modified.

    • Outputs (list) --

      The channel's output properties.

      • (dict) --

        This response includes only the "property" : "type" property.

        • DashPlaylistSettings (dict) --

          DASH manifest configuration settings.

          • ManifestWindowSeconds (integer) --

            The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

          • MinBufferTimeSeconds (integer) --

            Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: 2 seconds. Maximum value: 60 seconds.

          • MinUpdatePeriodSeconds (integer) --

            Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

          • SuggestedPresentationDelaySeconds (integer) --

            Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

        • HlsPlaylistSettings (dict) --

          HLS manifest configuration settings.

          • ManifestWindowSeconds (integer) --

            The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

        • ManifestName (string) --

          The name of the manifest for the channel that will appear in the channel output's playback URL.

        • PlaybackUrl (string) --

          The URL used for playback by content players.

        • SourceGroup (string) --

          A string used to associate a package configuration source group with a channel output.

    • PlaybackMode (string) --

      The channel's playback mode.

    • Tags (dict) --

      The tags assigned to the channel.

      • (string) --
        • (string) --
describe_program(**kwargs)

Retrieves the properties of the requested program.

See also: AWS API Documentation

Request Syntax

response = client.describe_program(
    ChannelName='string',
    ProgramName='string'
)
Parameters
  • ChannelName (string) --

    [REQUIRED]

    The identifier for the channel you are working on.

  • ProgramName (string) --

    [REQUIRED]

    The identifier for the program you are working on.

Return type

dict

Returns

Response Syntax

{
    'AdBreaks': [
        {
            'MessageType': 'SPLICE_INSERT',
            'OffsetMillis': 123,
            'Slate': {
                'SourceLocationName': 'string',
                'VodSourceName': 'string'
            },
            'SpliceInsertMessage': {
                'AvailNum': 123,
                'AvailsExpected': 123,
                'SpliceEventId': 123,
                'UniqueProgramId': 123
            }
        },
    ],
    'Arn': 'string',
    'ChannelName': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'ProgramName': 'string',
    'ScheduledStartTime': datetime(2015, 1, 1),
    'SourceLocationName': 'string',
    'VodSourceName': 'string'
}

Response Structure

  • (dict) --

    Success.

    • AdBreaks (list) --

      The ad break configuration settings.

      • (dict) --

        Ad break configuration parameters.

        • MessageType (string) --

          The SCTE-35 ad insertion type. Accepted value: SPLICE_INSERT.

        • OffsetMillis (integer) --

          How long (in milliseconds) after the beginning of the program that an ad starts. This value must fall within 100ms of a segment boundary, otherwise the ad break will be skipped.

        • Slate (dict) --

          Ad break slate configuration.

          • SourceLocationName (string) --

            The name of the source location where the slate VOD source is stored.

          • VodSourceName (string) --

            The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

        • SpliceInsertMessage (dict) --

          This defines the SCTE-35 splice_insert() message inserted around the ad. For information about using splice_insert(), see the SCTE-35 specficiaiton, section 9.7.3.1.

          • AvailNum (integer) --

            This is written to splice_insert.avail_num, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

          • AvailsExpected (integer) --

            This is written to splice_insert.avails_expected, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

          • SpliceEventId (integer) --

            This is written to splice_insert.splice_event_id, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 1.

          • UniqueProgramId (integer) --

            This is written to splice_insert.unique_program_id, as defined in section 9.7.3.1 of the SCTE-35 specification. The default value is 0. Values must be between 0 and 256, inclusive.

    • Arn (string) --

      The ARN of the program.

    • ChannelName (string) --

      The name of the channel that the program belongs to.

    • CreationTime (datetime) --

      The timestamp of when the program was created.

    • ProgramName (string) --

      The name of the program.

    • ScheduledStartTime (datetime) --

      The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.

    • SourceLocationName (string) --

      The source location name.

    • VodSourceName (string) --

      The name that's used to refer to a VOD source.

describe_source_location(**kwargs)

Retrieves the properties of the requested source location.

See also: AWS API Documentation

Request Syntax

response = client.describe_source_location(
    SourceLocationName='string'
)
Parameters
SourceLocationName (string) --

[REQUIRED]

The identifier for the source location you are working on.

Return type
dict
Returns
Response Syntax
{
    '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),
    'SourceLocationName': 'string',
    'Tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --

    Success.

    • 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:

        • You must allow MediaTailor to access your S3 bucket by granting mediatailor.amazonaws.com principal access in IAM. For information about configuring access in IAM, see Access management in the IAM User Guide.
        • The mediatailor.amazonaws.com service principal must have permissions to read all top level manifests referenced by the VodSource packaging configurations.
        • The caller of the API must have s3:GetObject IAM permissions to read all top level manifests referenced by your MediaTailor VodSource packaging configurations.
      • 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 source location.

    • CreationTime (datetime) --

      The timestamp that indicates when the source location was created.

    • DefaultSegmentDeliveryConfiguration (dict) --

      The default segment delivery configuration settings.

      • 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 package configuration settings 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.

    • SourceLocationName (string) --

      The name of the source location.

    • Tags (dict) --

      The tags assigned to the source location.

      • (string) --
        • (string) --
describe_vod_source(**kwargs)

Provides details about a specific VOD source in a specific source location.

See also: AWS API Documentation

Request Syntax

response = client.describe_vod_source(
    SourceLocationName='string',
    VodSourceName='string'
)
Parameters
  • SourceLocationName (string) --

    [REQUIRED]

    The identifier for the source location you are working on.

  • VodSourceName (string) --

    [REQUIRED]

    The identifier for the VOD source you are working on.

Return type

dict

Returns

Response Syntax

{
    'Arn': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'HttpPackageConfigurations': [
        {
            'Path': 'string',
            'SourceGroup': 'string',
            'Type': 'DASH'|'HLS'
        },
    ],
    'LastModifiedTime': datetime(2015, 1, 1),
    'SourceLocationName': 'string',
    'Tags': {
        'string': 'string'
    },
    'VodSourceName': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Arn (string) --

      The ARN of the VOD source.

    • CreationTime (datetime) --

      The timestamp that indicates when the VOD source was created.

    • HttpPackageConfigurations (list) --

      The HTTP package configurations.

      • (dict) --

        The HTTP package configuration properties for the requested VOD source.

        • Path (string) --

          The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.

        • SourceGroup (string) --

          The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.

        • Type (string) --

          The streaming protocol for this package configuration. Supported values are HLS and DASH.

    • LastModifiedTime (datetime) --

      The ARN for the VOD source.

    • SourceLocationName (string) --

      The name of the source location associated with the VOD source.

    • Tags (dict) --

      The tags assigned to the VOD source.

      • (string) --
        • (string) --
    • VodSourceName (string) --

      The name of the VOD source.

generate_presigned_url(ClientMethod, Params=None, ExpiresIn=3600, HttpMethod=None)

Generate a presigned url given a client, its method, and arguments

Parameters
  • ClientMethod (string) -- The client method to presign for
  • Params (dict) -- The parameters normally passed to ClientMethod.
  • ExpiresIn (int) -- The number of seconds the presigned url is valid for. By default it expires in an hour (3600 seconds)
  • HttpMethod (string) -- The http method to use on the generated url. By default, the http method is whatever is used in the method's model.
Returns

The presigned url

get_channel_policy(**kwargs)

Retrieves information about a channel's IAM policy.

See also: AWS API Documentation

Request Syntax

response = client.get_channel_policy(
    ChannelName='string'
)
Parameters
ChannelName (string) --

[REQUIRED]

The identifier for the channel you are working on.

Return type
dict
Returns
Response Syntax
{
    'Policy': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Policy (string) --

      The IAM policy for the channel.

get_channel_schedule(**kwargs)

Retrieves information about your channel's schedule.

See also: AWS API Documentation

Request Syntax

response = client.get_channel_schedule(
    ChannelName='string',
    DurationMinutes='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • ChannelName (string) --

    [REQUIRED]

    The identifier for the channel you are working on.

  • DurationMinutes (string) -- The schedule duration in minutes. The maximum duration is 4320 minutes (three days).
  • MaxResults (integer) -- Upper bound on number of records to return. The maximum number of results is 100.
  • NextToken (string) -- Pagination token from the GET list request. Use the token to fetch the next page of results.
Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'ApproximateDurationSeconds': 123,
            'ApproximateStartTime': datetime(2015, 1, 1),
            'Arn': 'string',
            'ChannelName': 'string',
            'ProgramName': 'string',
            'ScheduleAdBreaks': [
                {
                    'ApproximateDurationSeconds': 123,
                    'ApproximateStartTime': datetime(2015, 1, 1),
                    'SourceLocationName': 'string',
                    'VodSourceName': 'string'
                },
            ],
            'ScheduleEntryType': 'PROGRAM'|'FILLER_SLATE',
            'SourceLocationName': 'string',
            'VodSourceName': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      An array of schedule entries for the channel.

      • (dict) --

        The properties for a schedule.

        • ApproximateDurationSeconds (integer) --

          The approximate duration of this program, in seconds.

        • ApproximateStartTime (datetime) --

          The approximate time that the program will start playing.

        • Arn (string) --

          The ARN of the program.

        • ChannelName (string) --

          The name of the channel that uses this schedule.

        • ProgramName (string) --

          The name of the program.

        • ScheduleAdBreaks (list) --

          The schedule's ad break properties.

          • (dict) --

            The schedule's ad break properties.

            • ApproximateDurationSeconds (integer) --

              The approximate duration of the ad break, in seconds.

            • ApproximateStartTime (datetime) --

              The approximate time that the ad will start playing.

            • SourceLocationName (string) --

              The name of the source location containing the VOD source used for the ad break.

            • VodSourceName (string) --

              The name of the VOD source used for the ad break.

        • ScheduleEntryType (string) --

          The type of schedule entry.

          Valid values: PROGRAM or FILLER_SLATE.

        • SourceLocationName (string) --

          The name of the source location.

        • VodSourceName (string) --

          The name of the VOD source.

    • NextToken (string) --

      Pagination token from the GET list request. Use the token to fetch the next page of results.

get_paginator(operation_name)

Create a paginator for an operation.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Raises OperationNotPageableError
Raised if the operation is not pageable. You can use the client.can_paginate method to check if an operation is pageable.
Return type
L{botocore.paginate.Paginator}
Returns
A paginator object.
get_playback_configuration(**kwargs)

Returns the playback configuration for the specified name.

See also: AWS API Documentation

Request Syntax

response = client.get_playback_configuration(
    Name='string'
)
Parameters
Name (string) --

[REQUIRED]

The identifier for the playback configuration.

Return type
dict
Returns
Response Syntax
{
    'AdDecisionServerUrl': 'string',
    'AvailSuppression': {
        'Mode': 'OFF'|'BEHIND_LIVE_EDGE',
        'Value': 'string'
    },
    'Bumper': {
        'EndUrl': 'string',
        'StartUrl': 'string'
    },
    'CdnConfiguration': {
        'AdSegmentUrlPrefix': 'string',
        'ContentSegmentUrlPrefix': 'string'
    },
    'ConfigurationAliases': {
        'string': {
            'string': 'string'
        }
    },
    'DashConfiguration': {
        'ManifestEndpointPrefix': 'string',
        'MpdLocation': 'string',
        'OriginManifestType': 'SINGLE_PERIOD'|'MULTI_PERIOD'
    },
    'HlsConfiguration': {
        'ManifestEndpointPrefix': 'string'
    },
    'LivePreRollConfiguration': {
        'AdDecisionServerUrl': 'string',
        'MaxDurationSeconds': 123
    },
    'LogConfiguration': {
        'PercentEnabled': 123
    },
    'ManifestProcessingRules': {
        'AdMarkerPassthrough': {
            'Enabled': True|False
        }
    },
    'Name': 'string',
    'PersonalizationThresholdSeconds': 123,
    'PlaybackConfigurationArn': 'string',
    'PlaybackEndpointPrefix': 'string',
    'SessionInitializationEndpointPrefix': 'string',
    'SlateAdUrl': 'string',
    'Tags': {
        'string': 'string'
    },
    'TranscodeProfileName': 'string',
    'VideoContentSourceUrl': 'string'
}

Response Structure

  • (dict) --

    Success.

    • AdDecisionServerUrl (string) --

      The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.

    • AvailSuppression (dict) --

      The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see Ad Suppression .

      • Mode (string) --

        Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window.

      • Value (string) --

        A live edge offset time in HH:MM:SS. MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. If Value is set to 00:00:00, it is in sync with the live edge, and MediaTailor won't fill any ad breaks on or behind the live edge. If you set a Value time, MediaTailor won't fill any ad breaks on or behind this time in the manifest lookback window. For example, if you set 00:45:00, then MediaTailor will fill ad breaks that occur within 45 minutes behind the live edge, but won't fill ad breaks on or behind 45 minutes behind the live edge.

    • Bumper (dict) --

      The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see Bumpers .

      • EndUrl (string) --

        The URL for the end bumper asset.

      • StartUrl (string) --

        The URL for the start bumper asset.

    • CdnConfiguration (dict) --

      The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.

      • AdSegmentUrlPrefix (string) --

        A non-default content delivery network (CDN) to serve ad segments. By default, AWS Elemental MediaTailor uses Amazon CloudFront with default cache settings as its CDN for ad segments. To set up an alternate CDN, create a rule in your CDN for the origin ads.mediatailor.<region>.amazonaws.com. Then specify the rule's name in this AdSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for ad segments.

      • ContentSegmentUrlPrefix (string) --

        A content delivery network (CDN) to cache content segments, so that content requests don’t always have to go to the origin server. First, create a rule in your CDN for the content segment origin server. Then specify the rule's name in this ContentSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for content segments.

    • ConfigurationAliases (dict) --

      The player parameters and aliases used as dynamic variables during session initialization. For more information, see Domain Variables .

      • (string) --

        The dynamic variable that has aliases.

        • (dict) --

          Map of aliases to the value to be used at request time.

          • (string) --
            • (string) --
    • DashConfiguration (dict) --

      The configuration for DASH content.

      • ManifestEndpointPrefix (string) --

        The URL generated by MediaTailor to initiate a playback session. The session uses server-side reporting. This setting is ignored in PUT operations.

      • MpdLocation (string) --

        The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT. The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.

      • OriginManifestType (string) --

        The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to SINGLE_PERIOD. The default setting is MULTI_PERIOD. For multi-period manifests, omit this setting or set it to MULTI_PERIOD.

    • HlsConfiguration (dict) --

      The configuration for HLS content.

      • ManifestEndpointPrefix (string) --

        The URL that is used to initiate a playback session for devices that support Apple HLS. The session uses server-side reporting.

    • LivePreRollConfiguration (dict) --

      The configuration for pre-roll ad insertion.

      • AdDecisionServerUrl (string) --

        The URL for the ad decision server (ADS) for pre-roll ads. This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.

      • MaxDurationSeconds (integer) -- The maximum allowed duration for the pre-roll ad avail. AWS Elemental MediaTailor won't play pre-roll ads to exceed this duration, regardless of the total duration of ads that the ADS returns.
    • LogConfiguration (dict) --

      The Amazon CloudWatch log settings for a playback configuration.

      • PercentEnabled (integer) --

        The percentage of session logs that MediaTailor sends to your Cloudwatch Logs account. For example, if your playback configuration has 1000 sessions and percentEnabled is set to 60, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the debug log mode .

        Valid values: 0 - 100

    • ManifestProcessingRules (dict) --

      The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

      • AdMarkerPassthrough (dict) --

        For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest.

        No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.

        • Enabled (boolean) --

          Enables ad marker passthrough for your configuration.

    • Name (string) --

      The identifier for the playback configuration.

    • PersonalizationThresholdSeconds (integer) --

      Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to ad replacement in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see Ad Behavior in AWS Elemental MediaTailor .

    • PlaybackConfigurationArn (string) --

      The Amazon Resource Name (ARN) for the playback configuration.

    • PlaybackEndpointPrefix (string) --

      The URL that the player accesses to get a manifest from AWS Elemental MediaTailor. This session will use server-side reporting.

    • SessionInitializationEndpointPrefix (string) --

      The URL that the player uses to initialize a session that uses client-side reporting.

    • SlateAdUrl (string) --

      The URL for a high-quality video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.

    • Tags (dict) --

      The tags assigned to the playback configuration.

      • (string) --
        • (string) --
    • TranscodeProfileName (string) --

      The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.

    • VideoContentSourceUrl (string) --

      The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.

get_prefetch_schedule(**kwargs)

Returns information about the prefetch schedule for a specific playback configuration. If you call GetPrefetchSchedule on an expired prefetch schedule, MediaTailor returns an HTTP 404 status code.

See also: AWS API Documentation

Request Syntax

response = client.get_prefetch_schedule(
    Name='string',
    PlaybackConfigurationName='string'
)
Parameters
  • Name (string) --

    [REQUIRED]

    The identifier for the playback configuration.

  • PlaybackConfigurationName (string) --

    [REQUIRED]

    The name of the playback configuration.

Return type

dict

Returns

Response Syntax

{
    'Arn': 'string',
    'Consumption': {
        'AvailMatchingCriteria': [
            {
                'DynamicVariable': 'string',
                'Operator': 'EQUALS'
            },
        ],
        'EndTime': datetime(2015, 1, 1),
        'StartTime': datetime(2015, 1, 1)
    },
    'Name': 'string',
    'PlaybackConfigurationName': 'string',
    'Retrieval': {
        'DynamicVariables': {
            'string': 'string'
        },
        'EndTime': datetime(2015, 1, 1),
        'StartTime': datetime(2015, 1, 1)
    },
    'StreamId': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Arn (string) --

      The Amazon Resource Name (ARN) of the prefetch schedule.

    • Consumption (dict) --

      Consumption settings determine how, and when, MediaTailor places the prefetched ads into ad breaks. Ad consumption occurs within a span of time that you define, called a consumption window . You can designate which ad breaks that MediaTailor fills with prefetch ads by setting avail matching criteria.

      • AvailMatchingCriteria (list) --

        If you only want MediaTailor to insert prefetched ads into avails (ad breaks) that match specific dynamic variables, such as scte.event_id, set the avail matching criteria.

        • (dict) --

          MediaTailor only places (consumes) prefetched ads if the ad break meets the criteria defined by the dynamic variables. This gives you granular control over which ad break to place the prefetched ads into.

          As an example, let's say that you set DynamicVariable to scte.event_id and Operator to EQUALS, and your playback configuration has an ADS URL of https://my.ads.server.com/path?&podId=[scte.avail_num]&event=[scte.event_id]&duration=[session.avail_duration_secs]. And the prefetch request to the ADS contains these values https://my.ads.server.com/path?&podId=3&event=my-awesome-event&duration=30. MediaTailor will only insert the prefetched ads into the ad break if has a SCTE marker with an event id of my-awesome-event, since it must match the event id that MediaTailor uses to query the ADS.

          You can specify up to five AvailMatchingCriteria. If you specify multiple AvailMatchingCriteria, MediaTailor combines them to match using a logical AND. You can model logical OR combinations by creating multiple prefetch schedules.

          • DynamicVariable (string) --

            The dynamic variable(s) that MediaTailor should use as avail matching criteria. MediaTailor only places the prefetched ads into the avail if the avail matches the criteria defined by the dynamic variable. For information about dynamic variables, see Using dynamic ad variables in the MediaTailor User Guide .

            You can include up to 100 dynamic variables.

          • Operator (string) --

            For the DynamicVariable specified in AvailMatchingCriteria, the Operator that is used for the comparison.

      • EndTime (datetime) --

        The time when MediaTailor no longer considers the prefetched ads for use in an ad break. MediaTailor automatically deletes prefetch schedules no less than seven days after the end time. If you'd like to manually delete the prefetch schedule, you can call DeletePrefetchSchedule.

      • StartTime (datetime) --

        The time when prefetched ads are considered for use in an ad break. If you don't specify StartTime, the prefetched ads are available after MediaTailor retrives them from the ad decision server.

    • Name (string) --

      The name of the prefetch schedule. The name must be unique among all prefetch schedules that are associated with the specified playback configuration.

    • PlaybackConfigurationName (string) --

      The name of the playback configuration to create the prefetch schedule for.

    • Retrieval (dict) --

      A complex type that contains settings for prefetch retrieval from the ad decision server (ADS).

      • DynamicVariables (dict) --

        The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS).

        You intially configure dynamic variables for the ADS URL when you set up your playback configuration. When you specify DynamicVariables for prefetch retrieval, MediaTailor includes the dynamic variables in the request to the ADS.

        • (string) --
          • (string) --
      • EndTime (datetime) --

        The time when prefetch retrieval ends for the ad break. Prefetching will be attempted for manifest requests that occur at or before this time.

      • StartTime (datetime) --

        The time when prefetch retrievals can start for this break. Ad prefetching will be attempted for manifest requests that occur at or after this time. Defaults to the current time. If not specified, the prefetch retrieval starts as soon as possible.

    • StreamId (string) --

      An optional stream identifier that you can specify in order to prefetch for multiple streams that use the same playback configuration.

get_waiter(waiter_name)

Returns an object that can wait for some condition.

Parameters
waiter_name (str) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
Returns
The specified waiter object.
Return type
botocore.waiter.Waiter
list_alerts(**kwargs)

Returns a list of alerts for the given resource.

See also: AWS API Documentation

Request Syntax

response = client.list_alerts(
    MaxResults=123,
    NextToken='string',
    ResourceArn='string'
)
Parameters
  • MaxResults (integer) -- Upper bound on number of records to return. The maximum number of results is 100.
  • NextToken (string) -- Pagination token from the GET list request. Use the token to fetch the next page of results.
  • ResourceArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the resource.

Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'AlertCode': 'string',
            'AlertMessage': 'string',
            'LastModifiedTime': datetime(2015, 1, 1),
            'RelatedResourceArns': [
                'string',
            ],
            'ResourceArn': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      An array of alerts that are associated with this resource.

      • (dict) --

        Alert configuration parameters.

        • AlertCode (string) --

          The code for the alert. For example, NOT_PROCESSED.

        • AlertMessage (string) --

          If an alert is generated for a resource, an explanation of the reason for the alert.

        • LastModifiedTime (datetime) --

          The timestamp when the alert was last modified.

        • RelatedResourceArns (list) --

          The Amazon Resource Names (ARNs) related to this alert.

          • (string) --
        • ResourceArn (string) --

          The Amazon Resource Name (ARN) of the resource.

    • NextToken (string) --

      Pagination token from the list request. Use the token to fetch the next page of results.

list_channels(**kwargs)

Retrieves a list of channels that are associated with this account.

See also: AWS API Documentation

Request Syntax

response = client.list_channels(
    MaxResults=123,
    NextToken='string'
)
Parameters
  • MaxResults (integer) -- Upper bound on number of records to return. The maximum number of results is 100.
  • NextToken (string) -- Pagination token from the GET list request. Use the token to fetch the next page of results.
Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'Arn': 'string',
            'ChannelName': 'string',
            'ChannelState': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'FillerSlate': {
                'SourceLocationName': 'string',
                'VodSourceName': 'string'
            },
            'LastModifiedTime': datetime(2015, 1, 1),
            'Outputs': [
                {
                    'DashPlaylistSettings': {
                        'ManifestWindowSeconds': 123,
                        'MinBufferTimeSeconds': 123,
                        'MinUpdatePeriodSeconds': 123,
                        'SuggestedPresentationDelaySeconds': 123
                    },
                    'HlsPlaylistSettings': {
                        'ManifestWindowSeconds': 123
                    },
                    'ManifestName': 'string',
                    'PlaybackUrl': 'string',
                    'SourceGroup': 'string'
                },
            ],
            'PlaybackMode': 'string',
            'Tags': {
                'string': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      An array of channels that are associated with this account.

      • (dict) --

        The configuration parameters for a channel.

        • Arn (string) --

          The ARN of the channel.

        • ChannelName (string) --

          The name of the channel.

        • ChannelState (string) --

          Returns the state whether the channel is running or not.

        • CreationTime (datetime) --

          The timestamp of when the channel was created.

        • FillerSlate (dict) --

          Contains information about the slate used to fill gaps between programs in the schedule. You must configure FillerSlate if your channel uses an LINEAR PlaybackMode.

          • SourceLocationName (string) --

            The name of the source location where the slate VOD source is stored.

          • VodSourceName (string) --

            The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

        • LastModifiedTime (datetime) --

          The timestamp of when the channel was last modified.

        • Outputs (list) --

          The channel's output properties.

          • (dict) --

            This response includes only the "property" : "type" property.

            • DashPlaylistSettings (dict) --

              DASH manifest configuration settings.

              • ManifestWindowSeconds (integer) --

                The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

              • MinBufferTimeSeconds (integer) --

                Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: 2 seconds. Maximum value: 60 seconds.

              • MinUpdatePeriodSeconds (integer) --

                Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

              • SuggestedPresentationDelaySeconds (integer) --

                Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

            • HlsPlaylistSettings (dict) --

              HLS manifest configuration settings.

              • ManifestWindowSeconds (integer) --

                The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

            • ManifestName (string) --

              The name of the manifest for the channel that will appear in the channel output's playback URL.

            • PlaybackUrl (string) --

              The URL used for playback by content players.

            • SourceGroup (string) --

              A string used to associate a package configuration source group with a channel output.

        • PlaybackMode (string) --

          The type of playback mode for this channel.

          LINEAR - Programs play back-to-back only once.

          LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.

        • Tags (dict) --

          The tags to assign to the channel.

          • (string) --
            • (string) --
    • 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.

list_playback_configurations(**kwargs)

Returns a list of the playback configurations defined in AWS Elemental MediaTailor. You can specify a maximum number of configurations to return at a time. The default maximum is 50. Results are returned in pagefuls. If MediaTailor has more configurations than the specified maximum, it provides parameters in the response that you can use to retrieve the next pageful.

See also: AWS API Documentation

Request Syntax

response = client.list_playback_configurations(
    MaxResults=123,
    NextToken='string'
)
Parameters
  • MaxResults (integer) -- Maximum number of records to return.
  • NextToken (string) -- Pagination token returned by the GET list request when results exceed the maximum allowed. Use the token to fetch the next page of results.
Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'AdDecisionServerUrl': 'string',
            'AvailSuppression': {
                'Mode': 'OFF'|'BEHIND_LIVE_EDGE',
                'Value': 'string'
            },
            'Bumper': {
                'EndUrl': 'string',
                'StartUrl': 'string'
            },
            'CdnConfiguration': {
                'AdSegmentUrlPrefix': 'string',
                'ContentSegmentUrlPrefix': 'string'
            },
            'ConfigurationAliases': {
                'string': {
                    'string': 'string'
                }
            },
            'DashConfiguration': {
                'ManifestEndpointPrefix': 'string',
                'MpdLocation': 'string',
                'OriginManifestType': 'SINGLE_PERIOD'|'MULTI_PERIOD'
            },
            'HlsConfiguration': {
                'ManifestEndpointPrefix': 'string'
            },
            'LivePreRollConfiguration': {
                'AdDecisionServerUrl': 'string',
                'MaxDurationSeconds': 123
            },
            'LogConfiguration': {
                'PercentEnabled': 123
            },
            'ManifestProcessingRules': {
                'AdMarkerPassthrough': {
                    'Enabled': True|False
                }
            },
            'Name': 'string',
            'PersonalizationThresholdSeconds': 123,
            'PlaybackConfigurationArn': 'string',
            'PlaybackEndpointPrefix': 'string',
            'SessionInitializationEndpointPrefix': 'string',
            'SlateAdUrl': 'string',
            'Tags': {
                'string': 'string'
            },
            'TranscodeProfileName': 'string',
            'VideoContentSourceUrl': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.

      • (dict) --

        Creates a playback configuration. For information about MediaTailor configurations, see Working with configurations in AWS Elemental MediaTailor .

        • AdDecisionServerUrl (string) --

          The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.

        • AvailSuppression (dict) --

          The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see Ad Suppression .

          • Mode (string) --

            Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window.

          • Value (string) --

            A live edge offset time in HH:MM:SS. MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. If Value is set to 00:00:00, it is in sync with the live edge, and MediaTailor won't fill any ad breaks on or behind the live edge. If you set a Value time, MediaTailor won't fill any ad breaks on or behind this time in the manifest lookback window. For example, if you set 00:45:00, then MediaTailor will fill ad breaks that occur within 45 minutes behind the live edge, but won't fill ad breaks on or behind 45 minutes behind the live edge.

        • Bumper (dict) --

          The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see Bumpers .

          • EndUrl (string) --

            The URL for the end bumper asset.

          • StartUrl (string) --

            The URL for the start bumper asset.

        • CdnConfiguration (dict) --

          The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.

          • AdSegmentUrlPrefix (string) --

            A non-default content delivery network (CDN) to serve ad segments. By default, AWS Elemental MediaTailor uses Amazon CloudFront with default cache settings as its CDN for ad segments. To set up an alternate CDN, create a rule in your CDN for the origin ads.mediatailor.<region>.amazonaws.com. Then specify the rule's name in this AdSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for ad segments.

          • ContentSegmentUrlPrefix (string) --

            A content delivery network (CDN) to cache content segments, so that content requests don’t always have to go to the origin server. First, create a rule in your CDN for the content segment origin server. Then specify the rule's name in this ContentSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for content segments.

        • ConfigurationAliases (dict) --

          The player parameters and aliases used as dynamic variables during session initialization. For more information, see Domain Variables .

          • (string) --

            The dynamic variable that has aliases.

            • (dict) --

              Map of aliases to the value to be used at request time.

              • (string) --
                • (string) --
        • DashConfiguration (dict) --

          The configuration for a DASH source.

          • ManifestEndpointPrefix (string) --

            The URL generated by MediaTailor to initiate a playback session. The session uses server-side reporting. This setting is ignored in PUT operations.

          • MpdLocation (string) --

            The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT. The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.

          • OriginManifestType (string) --

            The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to SINGLE_PERIOD. The default setting is MULTI_PERIOD. For multi-period manifests, omit this setting or set it to MULTI_PERIOD.

        • HlsConfiguration (dict) --

          The configuration for HLS content.

          • ManifestEndpointPrefix (string) --

            The URL that is used to initiate a playback session for devices that support Apple HLS. The session uses server-side reporting.

        • LivePreRollConfiguration (dict) --

          The configuration for pre-roll ad insertion.

          • AdDecisionServerUrl (string) --

            The URL for the ad decision server (ADS) for pre-roll ads. This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.

          • MaxDurationSeconds (integer) -- The maximum allowed duration for the pre-roll ad avail. AWS Elemental MediaTailor won't play pre-roll ads to exceed this duration, regardless of the total duration of ads that the ADS returns.

        • LogConfiguration (dict) --

          The Amazon CloudWatch log settings for a playback configuration.

          • PercentEnabled (integer) --

            The percentage of session logs that MediaTailor sends to your Cloudwatch Logs account. For example, if your playback configuration has 1000 sessions and percentEnabled is set to 60, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the debug log mode .

            Valid values: 0 - 100

        • ManifestProcessingRules (dict) --

          The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

          • AdMarkerPassthrough (dict) --

            For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest.

            No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.

            • Enabled (boolean) --

              Enables ad marker passthrough for your configuration.

        • Name (string) --

          The identifier for the playback configuration.

        • PersonalizationThresholdSeconds (integer) --

          Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to ad replacement in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see Ad Behavior in AWS Elemental MediaTailor .

        • PlaybackConfigurationArn (string) --

          The Amazon Resource Name (ARN) for the playback configuration.

        • PlaybackEndpointPrefix (string) --

          The URL that the player accesses to get a manifest from AWS Elemental MediaTailor.

        • SessionInitializationEndpointPrefix (string) --

          The URL that the player uses to initialize a session that uses client-side reporting.

        • SlateAdUrl (string) --

          The URL for a video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.

        • Tags (dict) --

          The tags to assign to the playback configuration.

          • (string) --
            • (string) --
        • TranscodeProfileName (string) --

          The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.

        • VideoContentSourceUrl (string) --

          The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.

    • NextToken (string) --

      Pagination token returned by the GET list request when results exceed the maximum allowed. Use the token to fetch the next page of results.

list_prefetch_schedules(**kwargs)

Creates a new prefetch schedule.

See also: AWS API Documentation

Request Syntax

response = client.list_prefetch_schedules(
    MaxResults=123,
    NextToken='string',
    PlaybackConfigurationName='string',
    StreamId='string'
)
Parameters
  • MaxResults (integer) -- The maximum number of prefetch schedules that you want MediaTailor to return in response to the current request. If the playback configuration has more than MaxResults prefetch schedules, use the value of NextToken in the response to get the next page of results.
  • NextToken (string) --

    (Optional) If the playback configuration has more than MaxResults prefetch schedules, use NextToken to get the second and subsequent pages of results.

    For the first ListPrefetchSchedulesRequest request, omit this value.

    For the second and subsequent requests, get the value of NextToken from the previous response and specify that value for NextToken in the request.

    If the previous response didn't include a NextToken element, there are no more prefetch schedules to get.

  • PlaybackConfigurationName (string) --

    [REQUIRED]

    The name of the playback configuration.

  • StreamId (string) -- An optional filtering parameter whereby MediaTailor filters the prefetch schedules to include only specific streams.
Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'Arn': 'string',
            'Consumption': {
                'AvailMatchingCriteria': [
                    {
                        'DynamicVariable': 'string',
                        'Operator': 'EQUALS'
                    },
                ],
                'EndTime': datetime(2015, 1, 1),
                'StartTime': datetime(2015, 1, 1)
            },
            'Name': 'string',
            'PlaybackConfigurationName': 'string',
            'Retrieval': {
                'DynamicVariables': {
                    'string': 'string'
                },
                'EndTime': datetime(2015, 1, 1),
                'StartTime': datetime(2015, 1, 1)
            },
            'StreamId': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      Lists the prefetch schedules. An empty Items list doesn't mean there aren't more items to fetch, just that that page was empty.

      • (dict) --

        A complex type that contains prefetch schedule information.

        • Arn (string) --

          The Amazon Resource Name (ARN) of the prefetch schedule.

        • Consumption (dict) --

          Consumption settings determine how, and when, MediaTailor places the prefetched ads into ad breaks. Ad consumption occurs within a span of time that you define, called a consumption window . You can designate which ad breaks that MediaTailor fills with prefetch ads by setting avail matching criteria.

          • AvailMatchingCriteria (list) --

            If you only want MediaTailor to insert prefetched ads into avails (ad breaks) that match specific dynamic variables, such as scte.event_id, set the avail matching criteria.

            • (dict) --

              MediaTailor only places (consumes) prefetched ads if the ad break meets the criteria defined by the dynamic variables. This gives you granular control over which ad break to place the prefetched ads into.

              As an example, let's say that you set DynamicVariable to scte.event_id and Operator to EQUALS, and your playback configuration has an ADS URL of https://my.ads.server.com/path?&podId=[scte.avail_num]&event=[scte.event_id]&duration=[session.avail_duration_secs]. And the prefetch request to the ADS contains these values https://my.ads.server.com/path?&podId=3&event=my-awesome-event&duration=30. MediaTailor will only insert the prefetched ads into the ad break if has a SCTE marker with an event id of my-awesome-event, since it must match the event id that MediaTailor uses to query the ADS.

              You can specify up to five AvailMatchingCriteria. If you specify multiple AvailMatchingCriteria, MediaTailor combines them to match using a logical AND. You can model logical OR combinations by creating multiple prefetch schedules.

              • DynamicVariable (string) --

                The dynamic variable(s) that MediaTailor should use as avail matching criteria. MediaTailor only places the prefetched ads into the avail if the avail matches the criteria defined by the dynamic variable. For information about dynamic variables, see Using dynamic ad variables in the MediaTailor User Guide .

                You can include up to 100 dynamic variables.

              • Operator (string) --

                For the DynamicVariable specified in AvailMatchingCriteria, the Operator that is used for the comparison.

          • EndTime (datetime) --

            The time when MediaTailor no longer considers the prefetched ads for use in an ad break. MediaTailor automatically deletes prefetch schedules no less than seven days after the end time. If you'd like to manually delete the prefetch schedule, you can call DeletePrefetchSchedule.

          • StartTime (datetime) --

            The time when prefetched ads are considered for use in an ad break. If you don't specify StartTime, the prefetched ads are available after MediaTailor retrives them from the ad decision server.

        • Name (string) --

          The name of the prefetch schedule. The name must be unique among all prefetch schedules that are associated with the specified playback configuration.

        • PlaybackConfigurationName (string) --

          The name of the playback configuration to create the prefetch schedule for.

        • Retrieval (dict) --

          A complex type that contains settings for prefetch retrieval from the ad decision server (ADS).

          • DynamicVariables (dict) --

            The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS).

            You intially configure dynamic variables for the ADS URL when you set up your playback configuration. When you specify DynamicVariables for prefetch retrieval, MediaTailor includes the dynamic variables in the request to the ADS.

            • (string) --
              • (string) --
          • EndTime (datetime) --

            The time when prefetch retrieval ends for the ad break. Prefetching will be attempted for manifest requests that occur at or before this time.

          • StartTime (datetime) --

            The time when prefetch retrievals can start for this break. Ad prefetching will be attempted for manifest requests that occur at or after this time. Defaults to the current time. If not specified, the prefetch retrieval starts as soon as possible.

        • StreamId (string) --

          An optional stream identifier that you can specify in order to prefetch for multiple streams that use the same playback configuration.

    • NextToken (string) --

      The value that you will use forNextToken in the next ListPrefetchSchedulesRequest request.

list_source_locations(**kwargs)

Retrieves a list of source locations.

See also: AWS API Documentation

Request Syntax

response = client.list_source_locations(
    MaxResults=123,
    NextToken='string'
)
Parameters
  • MaxResults (integer) -- Upper bound on number of records to return. The maximum number of results is 100.
  • NextToken (string) -- Pagination token from the GET list request. Use the token to fetch the next page of results.
Return type

dict

Returns

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),
            'SourceLocationName': 'string',
            'Tags': {
                'string': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      An array of source locations.

      • (dict) --

        This response includes only the "type" : "object" property.

        • 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:

            • You must allow MediaTailor to access your S3 bucket by granting mediatailor.amazonaws.com principal access in IAM. For information about configuring access in IAM, see Access management in the IAM User Guide.
            • The mediatailor.amazonaws.com service principal must have permissions to read all top level manifests referenced by the VodSource packaging configurations.
            • The caller of the API must have s3:GetObject IAM permissions to read all top level manifests referenced by your MediaTailor VodSource packaging configurations.
          • 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.

        • SourceLocationName (string) --

          The name of the source location.

        • Tags (dict) --

          The tags assigned to the source location.

          • (string) --
            • (string) --
    • NextToken (string) --

      Pagination token from the list request. Use the token to fetch the next page of results.

list_tags_for_resource(**kwargs)

Returns a list of the tags assigned to the specified playback configuration resource.

See also: AWS API Documentation

Request Syntax

response = client.list_tags_for_resource(
    ResourceArn='string'
)
Parameters
ResourceArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) for the playback configuration. You can get this from the response to any playback configuration request.

Return type
dict
Returns
Response Syntax
{
    'Tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --

    Success.

    • Tags (dict) --

      A comma-separated list of tag key:value pairs.

      • (string) --
        • (string) --

Exceptions

  • MediaTailor.Client.exceptions.BadRequestException
list_vod_sources(**kwargs)

Lists all the VOD sources in a source location.

See also: AWS API Documentation

Request Syntax

response = client.list_vod_sources(
    MaxResults=123,
    NextToken='string',
    SourceLocationName='string'
)
Parameters
  • MaxResults (integer) -- Upper bound on number of records to return. The maximum number of results is 100.
  • NextToken (string) -- Pagination token from the GET list request. Use the token to fetch the next page of results.
  • SourceLocationName (string) --

    [REQUIRED]

    The identifier for the source location you are working on.

Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'Arn': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'HttpPackageConfigurations': [
                {
                    'Path': 'string',
                    'SourceGroup': 'string',
                    'Type': 'DASH'|'HLS'
                },
            ],
            'LastModifiedTime': datetime(2015, 1, 1),
            'SourceLocationName': 'string',
            'Tags': {
                'string': 'string'
            },
            'VodSourceName': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      Lists the VOD sources.

      • (dict) --

        VOD source configuration parameters.

        • Arn (string) --

          The ARN for the VOD source.

        • CreationTime (datetime) --

          The timestamp that indicates when the VOD source was created.

        • HttpPackageConfigurations (list) --

          The HTTP package configurations for the VOD source.

          • (dict) --

            The HTTP package configuration properties for the requested VOD source.

            • Path (string) --

              The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.

            • SourceGroup (string) --

              The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.

            • Type (string) --

              The streaming protocol for this package configuration. Supported values are HLS and DASH.

        • LastModifiedTime (datetime) --

          The timestamp that indicates when the VOD source was last modified.

        • SourceLocationName (string) --

          The name of the source location that the VOD source is associated with.

        • Tags (dict) --

          The tags assigned to the VOD source.

          • (string) --
            • (string) --
        • VodSourceName (string) --

          The name of the VOD source.

    • NextToken (string) --

      Pagination token from the list request. Use the token to fetch the next page of results.

put_channel_policy(**kwargs)

Creates an IAM policy for the channel.

See also: AWS API Documentation

Request Syntax

response = client.put_channel_policy(
    ChannelName='string',
    Policy='string'
)
Parameters
  • ChannelName (string) --

    [REQUIRED]

    The identifier for the channel you are working on.

  • Policy (string) --

    [REQUIRED]

    Adds an IAM role that determines the permissions of your channel.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

    Success.

put_playback_configuration(**kwargs)

Adds a new playback configuration to AWS Elemental MediaTailor.

See also: AWS API Documentation

Request Syntax

response = client.put_playback_configuration(
    AdDecisionServerUrl='string',
    AvailSuppression={
        'Mode': 'OFF'|'BEHIND_LIVE_EDGE',
        'Value': 'string'
    },
    Bumper={
        'EndUrl': 'string',
        'StartUrl': 'string'
    },
    CdnConfiguration={
        'AdSegmentUrlPrefix': 'string',
        'ContentSegmentUrlPrefix': 'string'
    },
    ConfigurationAliases={
        'string': {
            'string': 'string'
        }
    },
    DashConfiguration={
        'MpdLocation': 'string',
        'OriginManifestType': 'SINGLE_PERIOD'|'MULTI_PERIOD'
    },
    LivePreRollConfiguration={
        'AdDecisionServerUrl': 'string',
        'MaxDurationSeconds': 123
    },
    ManifestProcessingRules={
        'AdMarkerPassthrough': {
            'Enabled': True|False
        }
    },
    Name='string',
    PersonalizationThresholdSeconds=123,
    SlateAdUrl='string',
    Tags={
        'string': 'string'
    },
    TranscodeProfileName='string',
    VideoContentSourceUrl='string'
)
Parameters
  • AdDecisionServerUrl (string) -- The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
  • AvailSuppression (dict) --

    The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see Ad Suppression .

    • Mode (string) --

      Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window.

    • Value (string) --

      A live edge offset time in HH:MM:SS. MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. If Value is set to 00:00:00, it is in sync with the live edge, and MediaTailor won't fill any ad breaks on or behind the live edge. If you set a Value time, MediaTailor won't fill any ad breaks on or behind this time in the manifest lookback window. For example, if you set 00:45:00, then MediaTailor will fill ad breaks that occur within 45 minutes behind the live edge, but won't fill ad breaks on or behind 45 minutes behind the live edge.

  • Bumper (dict) --

    The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see Bumpers .

    • EndUrl (string) --

      The URL for the end bumper asset.

    • StartUrl (string) --

      The URL for the start bumper asset.

  • CdnConfiguration (dict) --

    The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.

    • AdSegmentUrlPrefix (string) --

      A non-default content delivery network (CDN) to serve ad segments. By default, AWS Elemental MediaTailor uses Amazon CloudFront with default cache settings as its CDN for ad segments. To set up an alternate CDN, create a rule in your CDN for the origin ads.mediatailor.<region>.amazonaws.com. Then specify the rule's name in this AdSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for ad segments.

    • ContentSegmentUrlPrefix (string) --

      A content delivery network (CDN) to cache content segments, so that content requests don’t always have to go to the origin server. First, create a rule in your CDN for the content segment origin server. Then specify the rule's name in this ContentSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for content segments.

  • ConfigurationAliases (dict) --

    The player parameters and aliases used as dynamic variables during session initialization. For more information, see Domain Variables .

    • (string) --

      The dynamic variable that has aliases.

      • (dict) --

        Map of aliases to the value to be used at request time.

        • (string) --
          • (string) --
  • DashConfiguration (dict) --

    The configuration for DASH content.

    • MpdLocation (string) --

      The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT. The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.

    • OriginManifestType (string) --

      The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to SINGLE_PERIOD. The default setting is MULTI_PERIOD. For multi-period manifests, omit this setting or set it to MULTI_PERIOD.

  • LivePreRollConfiguration (dict) --

    The configuration for pre-roll ad insertion.

    • AdDecisionServerUrl (string) --

      The URL for the ad decision server (ADS) for pre-roll ads. This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.

    • MaxDurationSeconds (integer) -- The maximum allowed duration for the pre-roll ad avail. AWS Elemental MediaTailor won't play pre-roll ads to exceed this duration, regardless of the total duration of ads that the ADS returns.
  • ManifestProcessingRules (dict) --

    The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

    • AdMarkerPassthrough (dict) --

      For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest.

      No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.

      • Enabled (boolean) --

        Enables ad marker passthrough for your configuration.

  • Name (string) -- The identifier for the playback configuration.
  • PersonalizationThresholdSeconds (integer) -- Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to ad replacement in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see Ad Behavior in AWS Elemental MediaTailor .
  • SlateAdUrl (string) -- The URL for a high-quality video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID configurations. For VPAID, the slate is required because MediaTailor provides it in the slots that are designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.
  • Tags (dict) --

    The tags to assign to the playback configuration.

    • (string) --
      • (string) --
  • TranscodeProfileName (string) -- The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.
  • VideoContentSourceUrl (string) -- The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.
Return type

dict

Returns

Response Syntax

{
    'AdDecisionServerUrl': 'string',
    'AvailSuppression': {
        'Mode': 'OFF'|'BEHIND_LIVE_EDGE',
        'Value': 'string'
    },
    'Bumper': {
        'EndUrl': 'string',
        'StartUrl': 'string'
    },
    'CdnConfiguration': {
        'AdSegmentUrlPrefix': 'string',
        'ContentSegmentUrlPrefix': 'string'
    },
    'ConfigurationAliases': {
        'string': {
            'string': 'string'
        }
    },
    'DashConfiguration': {
        'ManifestEndpointPrefix': 'string',
        'MpdLocation': 'string',
        'OriginManifestType': 'SINGLE_PERIOD'|'MULTI_PERIOD'
    },
    'HlsConfiguration': {
        'ManifestEndpointPrefix': 'string'
    },
    'LivePreRollConfiguration': {
        'AdDecisionServerUrl': 'string',
        'MaxDurationSeconds': 123
    },
    'LogConfiguration': {
        'PercentEnabled': 123
    },
    'ManifestProcessingRules': {
        'AdMarkerPassthrough': {
            'Enabled': True|False
        }
    },
    'Name': 'string',
    'PersonalizationThresholdSeconds': 123,
    'PlaybackConfigurationArn': 'string',
    'PlaybackEndpointPrefix': 'string',
    'SessionInitializationEndpointPrefix': 'string',
    'SlateAdUrl': 'string',
    'Tags': {
        'string': 'string'
    },
    'TranscodeProfileName': 'string',
    'VideoContentSourceUrl': 'string'
}

Response Structure

  • (dict) --

    Success.

    • AdDecisionServerUrl (string) --

      The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.

    • AvailSuppression (dict) --

      The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see Ad Suppression .

      • Mode (string) --

        Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window.

      • Value (string) --

        A live edge offset time in HH:MM:SS. MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. If Value is set to 00:00:00, it is in sync with the live edge, and MediaTailor won't fill any ad breaks on or behind the live edge. If you set a Value time, MediaTailor won't fill any ad breaks on or behind this time in the manifest lookback window. For example, if you set 00:45:00, then MediaTailor will fill ad breaks that occur within 45 minutes behind the live edge, but won't fill ad breaks on or behind 45 minutes behind the live edge.

    • Bumper (dict) --

      The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see Bumpers .

      • EndUrl (string) --

        The URL for the end bumper asset.

      • StartUrl (string) --

        The URL for the start bumper asset.

    • CdnConfiguration (dict) --

      The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.

      • AdSegmentUrlPrefix (string) --

        A non-default content delivery network (CDN) to serve ad segments. By default, AWS Elemental MediaTailor uses Amazon CloudFront with default cache settings as its CDN for ad segments. To set up an alternate CDN, create a rule in your CDN for the origin ads.mediatailor.<region>.amazonaws.com. Then specify the rule's name in this AdSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for ad segments.

      • ContentSegmentUrlPrefix (string) --

        A content delivery network (CDN) to cache content segments, so that content requests don’t always have to go to the origin server. First, create a rule in your CDN for the content segment origin server. Then specify the rule's name in this ContentSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for content segments.

    • ConfigurationAliases (dict) --

      The player parameters and aliases used as dynamic variables during session initialization. For more information, see Domain Variables .

      • (string) --

        The dynamic variable that has aliases.

        • (dict) --

          Map of aliases to the value to be used at request time.

          • (string) --
            • (string) --
    • DashConfiguration (dict) --

      The configuration for DASH content.

      • ManifestEndpointPrefix (string) --

        The URL generated by MediaTailor to initiate a playback session. The session uses server-side reporting. This setting is ignored in PUT operations.

      • MpdLocation (string) --

        The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT. The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.

      • OriginManifestType (string) --

        The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to SINGLE_PERIOD. The default setting is MULTI_PERIOD. For multi-period manifests, omit this setting or set it to MULTI_PERIOD.

    • HlsConfiguration (dict) --

      The configuration for HLS content.

      • ManifestEndpointPrefix (string) --

        The URL that is used to initiate a playback session for devices that support Apple HLS. The session uses server-side reporting.

    • LivePreRollConfiguration (dict) --

      The configuration for pre-roll ad insertion.

      • AdDecisionServerUrl (string) --

        The URL for the ad decision server (ADS) for pre-roll ads. This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.

      • MaxDurationSeconds (integer) -- The maximum allowed duration for the pre-roll ad avail. AWS Elemental MediaTailor won't play pre-roll ads to exceed this duration, regardless of the total duration of ads that the ADS returns.

    • LogConfiguration (dict) --

      The Amazon CloudWatch log settings for a playback configuration.

      • PercentEnabled (integer) --

        The percentage of session logs that MediaTailor sends to your Cloudwatch Logs account. For example, if your playback configuration has 1000 sessions and percentEnabled is set to 60, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the debug log mode .

        Valid values: 0 - 100

    • ManifestProcessingRules (dict) --

      The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

      • AdMarkerPassthrough (dict) --

        For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest.

        No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.

        • Enabled (boolean) --

          Enables ad marker passthrough for your configuration.

    • Name (string) --

      The identifier for the playback configuration.

    • PersonalizationThresholdSeconds (integer) --

      Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to ad replacement in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see Ad Behavior in AWS Elemental MediaTailor .

    • PlaybackConfigurationArn (string) --

      The Amazon Resource Name (ARN) for the playback configuration.

    • PlaybackEndpointPrefix (string) --

      The URL that the player accesses to get a manifest from AWS Elemental MediaTailor. This session will use server-side reporting.

    • SessionInitializationEndpointPrefix (string) --

      The URL that the player uses to initialize a session that uses client-side reporting.

    • SlateAdUrl (string) --

      The URL for a high-quality video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.

    • Tags (dict) --

      The tags assigned to the playback configuration.

      • (string) --
        • (string) --
    • TranscodeProfileName (string) --

      The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.

    • VideoContentSourceUrl (string) --

      The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.

start_channel(**kwargs)

Starts a specific channel.

See also: AWS API Documentation

Request Syntax

response = client.start_channel(
    ChannelName='string'
)
Parameters
ChannelName (string) --

[REQUIRED]

The identifier for the channel you are working on.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Success.

stop_channel(**kwargs)

Stops a specific channel.

See also: AWS API Documentation

Request Syntax

response = client.stop_channel(
    ChannelName='string'
)
Parameters
ChannelName (string) --

[REQUIRED]

The identifier for the channel you are working on.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Success.

tag_resource(**kwargs)

Adds tags to the specified playback configuration resource. You can specify one or more tags to add.

See also: AWS API Documentation

Request Syntax

response = client.tag_resource(
    ResourceArn='string',
    Tags={
        'string': 'string'
    }
)
Parameters
  • ResourceArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) for the playback configuration. You can get this from the response to any playback configuration request.

  • Tags (dict) --

    [REQUIRED]

    A comma-separated list of tag key:value pairs.

    • (string) --
      • (string) --
Returns

None

Exceptions

  • MediaTailor.Client.exceptions.BadRequestException
untag_resource(**kwargs)

Removes tags from the specified playback configuration resource. You can specify one or more tags to remove.

See also: AWS API Documentation

Request Syntax

response = client.untag_resource(
    ResourceArn='string',
    TagKeys=[
        'string',
    ]
)
Parameters
  • ResourceArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) for the playback configuration. You can get this from the response to any playback configuration request.

  • TagKeys (list) --

    [REQUIRED]

    A comma-separated list of the tag keys to remove from the playback configuration.

    • (string) --
Returns

None

Exceptions

  • MediaTailor.Client.exceptions.BadRequestException
update_channel(**kwargs)

Updates an existing channel.

See also: AWS API Documentation

Request Syntax

response = client.update_channel(
    ChannelName='string',
    Outputs=[
        {
            'DashPlaylistSettings': {
                'ManifestWindowSeconds': 123,
                'MinBufferTimeSeconds': 123,
                'MinUpdatePeriodSeconds': 123,
                'SuggestedPresentationDelaySeconds': 123
            },
            'HlsPlaylistSettings': {
                'ManifestWindowSeconds': 123
            },
            'ManifestName': 'string',
            'SourceGroup': 'string'
        },
    ]
)
Parameters
  • ChannelName (string) --

    [REQUIRED]

    The identifier for the channel you are working on.

  • Outputs (list) --

    [REQUIRED]

    The channel's output properties.

    • (dict) --

      The output configuration for this channel.

      • DashPlaylistSettings (dict) --

        DASH manifest configuration parameters.

        • ManifestWindowSeconds (integer) --

          The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

        • MinBufferTimeSeconds (integer) --

          Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: 2 seconds. Maximum value: 60 seconds.

        • MinUpdatePeriodSeconds (integer) --

          Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

        • SuggestedPresentationDelaySeconds (integer) --

          Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

      • HlsPlaylistSettings (dict) --

        HLS playlist configuration parameters.

        • ManifestWindowSeconds (integer) --

          The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

      • ManifestName (string) -- [REQUIRED]

        The name of the manifest for the channel. The name appears in the PlaybackUrl.

      • SourceGroup (string) -- [REQUIRED]

        A string used to match which HttpPackageConfiguration is used for each VodSource.

Return type

dict

Returns

Response Syntax

{
    'Arn': 'string',
    'ChannelName': 'string',
    'ChannelState': 'RUNNING'|'STOPPED',
    'CreationTime': datetime(2015, 1, 1),
    'FillerSlate': {
        'SourceLocationName': 'string',
        'VodSourceName': 'string'
    },
    'LastModifiedTime': datetime(2015, 1, 1),
    'Outputs': [
        {
            'DashPlaylistSettings': {
                'ManifestWindowSeconds': 123,
                'MinBufferTimeSeconds': 123,
                'MinUpdatePeriodSeconds': 123,
                'SuggestedPresentationDelaySeconds': 123
            },
            'HlsPlaylistSettings': {
                'ManifestWindowSeconds': 123
            },
            'ManifestName': 'string',
            'PlaybackUrl': 'string',
            'SourceGroup': 'string'
        },
    ],
    'PlaybackMode': 'string',
    'Tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --

    Success.

    • Arn (string) --

      The ARN of the channel.

    • ChannelName (string) --

      The name of the channel.

    • ChannelState (string) --

      Indicates whether the channel is in a running state or not.

    • CreationTime (datetime) --

      The timestamp of when the channel was created.

    • FillerSlate (dict) --

      Contains information about the slate used to fill gaps between programs in the schedule.

      • SourceLocationName (string) --

        The name of the source location where the slate VOD source is stored.

      • VodSourceName (string) --

        The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

    • LastModifiedTime (datetime) --

      The timestamp of when the channel was last modified.

    • Outputs (list) --

      The channel's output properties.

      • (dict) --

        This response includes only the "property" : "type" property.

        • DashPlaylistSettings (dict) --

          DASH manifest configuration settings.

          • ManifestWindowSeconds (integer) --

            The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

          • MinBufferTimeSeconds (integer) --

            Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: 2 seconds. Maximum value: 60 seconds.

          • MinUpdatePeriodSeconds (integer) --

            Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

          • SuggestedPresentationDelaySeconds (integer) --

            Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

        • HlsPlaylistSettings (dict) --

          HLS manifest configuration settings.

          • ManifestWindowSeconds (integer) --

            The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

        • ManifestName (string) --

          The name of the manifest for the channel that will appear in the channel output's playback URL.

        • PlaybackUrl (string) --

          The URL used for playback by content players.

        • SourceGroup (string) --

          A string used to associate a package configuration source group with a channel output.

    • PlaybackMode (string) --

      The channel's playback mode.

    • Tags (dict) --

      The tags assigned to the channel.

      • (string) --
        • (string) --

update_source_location(**kwargs)

Updates a source location on a specific channel.

See also: AWS API Documentation

Request Syntax

response = client.update_source_location(
    AccessConfiguration={
        'AccessType': 'S3_SIGV4'|'SECRETS_MANAGER_ACCESS_TOKEN',
        'SecretsManagerAccessTokenConfiguration': {
            'HeaderName': 'string',
            'SecretArn': 'string',
            'SecretStringKey': 'string'
        }
    },
    DefaultSegmentDeliveryConfiguration={
        'BaseUrl': 'string'
    },
    HttpConfiguration={
        'BaseUrl': 'string'
    },
    SourceLocationName='string'
)
Parameters
  • AccessConfiguration (dict) --

    Access configuration parameters. Configures the type of authentication used to access content from your 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:

      • You must allow MediaTailor to access your S3 bucket by granting mediatailor.amazonaws.com principal access in IAM. For information about configuring access in IAM, see Access management in the IAM User Guide.
      • The mediatailor.amazonaws.com service principal must have permissions to read all top level manifests referenced by the VodSource packaging configurations.
      • The caller of the API must have s3:GetObject IAM permissions to read all top level manifests referenced by your MediaTailor VodSource packaging configurations.
    • 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.

  • DefaultSegmentDeliveryConfiguration (dict) --

    The optional configuration for the host server that serves segments.

    • 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) --

    [REQUIRED]

    The HTTP configuration for the source location.

    • BaseUrl (string) -- [REQUIRED]

      The base URL for the source location host server. This string must include the protocol, such as https:// .

  • SourceLocationName (string) --

    [REQUIRED]

    The identifier for the source location you are working on.

Return type

dict

Returns

Response Syntax

{
    '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),
    'SourceLocationName': 'string',
    'Tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --

    Success.

    • 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:

        • You must allow MediaTailor to access your S3 bucket by granting mediatailor.amazonaws.com principal access in IAM. For information about configuring access in IAM, see Access management in the IAM User Guide.
        • The mediatailor.amazonaws.com service principal must have permissions to read all top level manifests referenced by the VodSource packaging configurations.
        • The caller of the API must have s3:GetObject IAM permissions to read all top level manifests referenced by your MediaTailor VodSource packaging configurations.
      • 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 source location.

    • CreationTime (datetime) --

      The timestamp that indicates when the source location was created.

    • DefaultSegmentDeliveryConfiguration (dict) --

      The default segment delivery configuration settings.

      • 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 package configuration settings 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.

    • SourceLocationName (string) --

      The name of the source location.

    • Tags (dict) --

      The tags assigned to the source location.

      • (string) --
        • (string) --

update_vod_source(**kwargs)

Updates a specific VOD source in a specific source location.

See also: AWS API Documentation

Request Syntax

response = client.update_vod_source(
    HttpPackageConfigurations=[
        {
            'Path': 'string',
            'SourceGroup': 'string',
            'Type': 'DASH'|'HLS'
        },
    ],
    SourceLocationName='string',
    VodSourceName='string'
)
Parameters
  • HttpPackageConfigurations (list) --

    [REQUIRED]

    An array of HTTP package configurations for the VOD source on this account.

    • (dict) --

      The HTTP package configuration properties for the requested VOD source.

      • Path (string) -- [REQUIRED]

        The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.

      • SourceGroup (string) -- [REQUIRED]

        The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.

      • Type (string) -- [REQUIRED]

        The streaming protocol for this package configuration. Supported values are HLS and DASH.

  • SourceLocationName (string) --

    [REQUIRED]

    The identifier for the source location you are working on.

  • VodSourceName (string) --

    [REQUIRED]

    The identifier for the VOD source you are working on.

Return type

dict

Returns

Response Syntax

{
    'Arn': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'HttpPackageConfigurations': [
        {
            'Path': 'string',
            'SourceGroup': 'string',
            'Type': 'DASH'|'HLS'
        },
    ],
    'LastModifiedTime': datetime(2015, 1, 1),
    'SourceLocationName': 'string',
    'Tags': {
        'string': 'string'
    },
    'VodSourceName': 'string'
}

Response Structure

  • (dict) --

    Success.

    • Arn (string) --

      The ARN of the VOD source.

    • CreationTime (datetime) --

      The timestamp that indicates when the VOD source was created.

    • HttpPackageConfigurations (list) --

      The HTTP package configurations.

      • (dict) --

        The HTTP package configuration properties for the requested VOD source.

        • Path (string) --

          The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.

        • SourceGroup (string) --

          The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.

        • Type (string) --

          The streaming protocol for this package configuration. Supported values are HLS and DASH.

    • LastModifiedTime (datetime) --

      The ARN for the VOD source.

    • SourceLocationName (string) --

      The name of the source location associated with the VOD source.

    • Tags (dict) --

      The tags assigned to the VOD source.

      • (string) --
        • (string) --
    • VodSourceName (string) --

      The name of the VOD source.

Paginators

The available paginators are:

class MediaTailor.Paginator.GetChannelSchedule
paginator = client.get_paginator('get_channel_schedule')
paginate(**kwargs)

Creates an iterator that will paginate through responses from MediaTailor.Client.get_channel_schedule().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ChannelName='string',
    DurationMinutes='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • ChannelName (string) --

    [REQUIRED]

    The identifier for the channel you are working on.

  • DurationMinutes (string) -- The schedule duration in minutes. The maximum duration is 4320 minutes (three days).
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'ApproximateDurationSeconds': 123,
            'ApproximateStartTime': datetime(2015, 1, 1),
            'Arn': 'string',
            'ChannelName': 'string',
            'ProgramName': 'string',
            'ScheduleAdBreaks': [
                {
                    'ApproximateDurationSeconds': 123,
                    'ApproximateStartTime': datetime(2015, 1, 1),
                    'SourceLocationName': 'string',
                    'VodSourceName': 'string'
                },
            ],
            'ScheduleEntryType': 'PROGRAM'|'FILLER_SLATE',
            'SourceLocationName': 'string',
            'VodSourceName': 'string'
        },
    ],

}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      An array of schedule entries for the channel.

      • (dict) --

        The properties for a schedule.

        • ApproximateDurationSeconds (integer) --

          The approximate duration of this program, in seconds.

        • ApproximateStartTime (datetime) --

          The approximate time that the program will start playing.

        • Arn (string) --

          The ARN of the program.

        • ChannelName (string) --

          The name of the channel that uses this schedule.

        • ProgramName (string) --

          The name of the program.

        • ScheduleAdBreaks (list) --

          The schedule's ad break properties.

          • (dict) --

            The schedule's ad break properties.

            • ApproximateDurationSeconds (integer) --

              The approximate duration of the ad break, in seconds.

            • ApproximateStartTime (datetime) --

              The approximate time that the ad will start playing.

            • SourceLocationName (string) --

              The name of the source location containing the VOD source used for the ad break.

            • VodSourceName (string) --

              The name of the VOD source used for the ad break.

        • ScheduleEntryType (string) --

          The type of schedule entry.

          Valid values: PROGRAM or FILLER_SLATE.

        • SourceLocationName (string) --

          The name of the source location.

        • VodSourceName (string) --

          The name of the VOD source.

class MediaTailor.Paginator.ListAlerts
paginator = client.get_paginator('list_alerts')
paginate(**kwargs)

Creates an iterator that will paginate through responses from MediaTailor.Client.list_alerts().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ResourceArn='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • ResourceArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the resource.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'AlertCode': 'string',
            'AlertMessage': 'string',
            'LastModifiedTime': datetime(2015, 1, 1),
            'RelatedResourceArns': [
                'string',
            ],
            'ResourceArn': 'string'
        },
    ],

}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      An array of alerts that are associated with this resource.

      • (dict) --

        Alert configuration parameters.

        • AlertCode (string) --

          The code for the alert. For example, NOT_PROCESSED.

        • AlertMessage (string) --

          If an alert is generated for a resource, an explanation of the reason for the alert.

        • LastModifiedTime (datetime) --

          The timestamp when the alert was last modified.

        • RelatedResourceArns (list) --

          The Amazon Resource Names (ARNs) related to this alert.

          • (string) --
        • ResourceArn (string) --

          The Amazon Resource Name (ARN) of the resource.

class MediaTailor.Paginator.ListChannels
paginator = client.get_paginator('list_channels')
paginate(**kwargs)

Creates an iterator that will paginate through responses from MediaTailor.Client.list_channels().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'Items': [
        {
            'Arn': 'string',
            'ChannelName': 'string',
            'ChannelState': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'FillerSlate': {
                'SourceLocationName': 'string',
                'VodSourceName': 'string'
            },
            'LastModifiedTime': datetime(2015, 1, 1),
            'Outputs': [
                {
                    'DashPlaylistSettings': {
                        'ManifestWindowSeconds': 123,
                        'MinBufferTimeSeconds': 123,
                        'MinUpdatePeriodSeconds': 123,
                        'SuggestedPresentationDelaySeconds': 123
                    },
                    'HlsPlaylistSettings': {
                        'ManifestWindowSeconds': 123
                    },
                    'ManifestName': 'string',
                    'PlaybackUrl': 'string',
                    'SourceGroup': 'string'
                },
            ],
            'PlaybackMode': 'string',
            'Tags': {
                'string': 'string'
            }
        },
    ],

}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      An array of channels that are associated with this account.

      • (dict) --

        The configuration parameters for a channel.

        • Arn (string) --

          The ARN of the channel.

        • ChannelName (string) --

          The name of the channel.

        • ChannelState (string) --

          Returns the state whether the channel is running or not.

        • CreationTime (datetime) --

          The timestamp of when the channel was created.

        • FillerSlate (dict) --

          Contains information about the slate used to fill gaps between programs in the schedule. You must configure FillerSlate if your channel uses an LINEAR PlaybackMode.

          • SourceLocationName (string) --

            The name of the source location where the slate VOD source is stored.

          • VodSourceName (string) --

            The slate VOD source name. The VOD source must already exist in a source location before it can be used for slate.

        • LastModifiedTime (datetime) --

          The timestamp of when the channel was last modified.

        • Outputs (list) --

          The channel's output properties.

          • (dict) --

            This response includes only the "property" : "type" property.

            • DashPlaylistSettings (dict) --

              DASH manifest configuration settings.

              • ManifestWindowSeconds (integer) --

                The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

              • MinBufferTimeSeconds (integer) --

                Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: 2 seconds. Maximum value: 60 seconds.

              • MinUpdatePeriodSeconds (integer) --

                Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

              • SuggestedPresentationDelaySeconds (integer) --

                Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: 2 seconds. Maximum value: 60 seconds.

            • HlsPlaylistSettings (dict) --

              HLS manifest configuration settings.

              • ManifestWindowSeconds (integer) --

                The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.

            • ManifestName (string) --

              The name of the manifest for the channel that will appear in the channel output's playback URL.

            • PlaybackUrl (string) --

              The URL used for playback by content players.

            • SourceGroup (string) --

              A string used to associate a package configuration source group with a channel output.

        • PlaybackMode (string) --

          The type of playback mode for this channel.

          LINEAR - Programs play back-to-back only once.

          LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.

        • Tags (dict) --

          The tags to assign to the channel.

          • (string) --
            • (string) --
class MediaTailor.Paginator.ListPlaybackConfigurations
paginator = client.get_paginator('list_playback_configurations')
paginate(**kwargs)

Creates an iterator that will paginate through responses from MediaTailor.Client.list_playback_configurations().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'Items': [
        {
            'AdDecisionServerUrl': 'string',
            'AvailSuppression': {
                'Mode': 'OFF'|'BEHIND_LIVE_EDGE',
                'Value': 'string'
            },
            'Bumper': {
                'EndUrl': 'string',
                'StartUrl': 'string'
            },
            'CdnConfiguration': {
                'AdSegmentUrlPrefix': 'string',
                'ContentSegmentUrlPrefix': 'string'
            },
            'ConfigurationAliases': {
                'string': {
                    'string': 'string'
                }
            },
            'DashConfiguration': {
                'ManifestEndpointPrefix': 'string',
                'MpdLocation': 'string',
                'OriginManifestType': 'SINGLE_PERIOD'|'MULTI_PERIOD'
            },
            'HlsConfiguration': {
                'ManifestEndpointPrefix': 'string'
            },
            'LivePreRollConfiguration': {
                'AdDecisionServerUrl': 'string',
                'MaxDurationSeconds': 123
            },
            'LogConfiguration': {
                'PercentEnabled': 123
            },
            'ManifestProcessingRules': {
                'AdMarkerPassthrough': {
                    'Enabled': True|False
                }
            },
            'Name': 'string',
            'PersonalizationThresholdSeconds': 123,
            'PlaybackConfigurationArn': 'string',
            'PlaybackEndpointPrefix': 'string',
            'SessionInitializationEndpointPrefix': 'string',
            'SlateAdUrl': 'string',
            'Tags': {
                'string': 'string'
            },
            'TranscodeProfileName': 'string',
            'VideoContentSourceUrl': 'string'
        },
    ],

}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.

      • (dict) --

        Creates a playback configuration. For information about MediaTailor configurations, see Working with configurations in AWS Elemental MediaTailor .

        • AdDecisionServerUrl (string) --

          The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.

        • AvailSuppression (dict) --

          The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see Ad Suppression .

          • Mode (string) --

            Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window.

          • Value (string) --

            A live edge offset time in HH:MM:SS. MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. If Value is set to 00:00:00, it is in sync with the live edge, and MediaTailor won't fill any ad breaks on or behind the live edge. If you set a Value time, MediaTailor won't fill any ad breaks on or behind this time in the manifest lookback window. For example, if you set 00:45:00, then MediaTailor will fill ad breaks that occur within 45 minutes behind the live edge, but won't fill ad breaks on or behind 45 minutes behind the live edge.

        • Bumper (dict) --

          The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see Bumpers .

          • EndUrl (string) --

            The URL for the end bumper asset.

          • StartUrl (string) --

            The URL for the start bumper asset.

        • CdnConfiguration (dict) --

          The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.

          • AdSegmentUrlPrefix (string) --

            A non-default content delivery network (CDN) to serve ad segments. By default, AWS Elemental MediaTailor uses Amazon CloudFront with default cache settings as its CDN for ad segments. To set up an alternate CDN, create a rule in your CDN for the origin ads.mediatailor.<region>.amazonaws.com. Then specify the rule's name in this AdSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for ad segments.

          • ContentSegmentUrlPrefix (string) --

            A content delivery network (CDN) to cache content segments, so that content requests don’t always have to go to the origin server. First, create a rule in your CDN for the content segment origin server. Then specify the rule's name in this ContentSegmentUrlPrefix. When AWS Elemental MediaTailor serves a manifest, it reports your CDN as the source for content segments.

        • ConfigurationAliases (dict) --

          The player parameters and aliases used as dynamic variables during session initialization. For more information, see Domain Variables .

          • (string) --

            The dynamic variable that has aliases.

            • (dict) --

              Map of aliases to the value to be used at request time.

              • (string) --
                • (string) --
        • DashConfiguration (dict) --

          The configuration for a DASH source.

          • ManifestEndpointPrefix (string) --

            The URL generated by MediaTailor to initiate a playback session. The session uses server-side reporting. This setting is ignored in PUT operations.

          • MpdLocation (string) --

            The setting that controls whether MediaTailor includes the Location tag in DASH manifests. MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT. The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.

          • OriginManifestType (string) --

            The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests. If your origin server produces single-period manifests, set this to SINGLE_PERIOD. The default setting is MULTI_PERIOD. For multi-period manifests, omit this setting or set it to MULTI_PERIOD.

        • HlsConfiguration (dict) --

          The configuration for HLS content.

          • ManifestEndpointPrefix (string) --

            The URL that is used to initiate a playback session for devices that support Apple HLS. The session uses server-side reporting.

        • LivePreRollConfiguration (dict) --

          The configuration for pre-roll ad insertion.

          • AdDecisionServerUrl (string) --

            The URL for the ad decision server (ADS) for pre-roll ads. This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.

          • MaxDurationSeconds (integer) -- The maximum allowed duration for the pre-roll ad avail. AWS Elemental MediaTailor won't play pre-roll ads to exceed this duration, regardless of the total duration of ads that the ADS returns.
        • LogConfiguration (dict) --

          The Amazon CloudWatch log settings for a playback configuration.

          • PercentEnabled (integer) --

            The percentage of session logs that MediaTailor sends to your Cloudwatch Logs account. For example, if your playback configuration has 1000 sessions and percentEnabled is set to 60, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the debug log mode .

            Valid values: 0 - 100

        • ManifestProcessingRules (dict) --

          The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

          • AdMarkerPassthrough (dict) --

            For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest.

            No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.

            • Enabled (boolean) --

              Enables ad marker passthrough for your configuration.

        • Name (string) --

          The identifier for the playback configuration.

        • PersonalizationThresholdSeconds (integer) --

          Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to ad replacement in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see Ad Behavior in AWS Elemental MediaTailor .

        • PlaybackConfigurationArn (string) --

          The Amazon Resource Name (ARN) for the playback configuration.

        • PlaybackEndpointPrefix (string) --

          The URL that the player accesses to get a manifest from AWS Elemental MediaTailor.

        • SessionInitializationEndpointPrefix (string) --

          The URL that the player uses to initialize a session that uses client-side reporting.

        • SlateAdUrl (string) --

          The URL for a video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.

        • Tags (dict) --

          The tags to assign to the playback configuration.

          • (string) --
            • (string) --
        • TranscodeProfileName (string) --

          The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.

        • VideoContentSourceUrl (string) --

          The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.

class MediaTailor.Paginator.ListPrefetchSchedules
paginator = client.get_paginator('list_prefetch_schedules')
paginate(**kwargs)

Creates an iterator that will paginate through responses from MediaTailor.Client.list_prefetch_schedules().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PlaybackConfigurationName='string',
    StreamId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • PlaybackConfigurationName (string) --

    [REQUIRED]

    The name of the playback configuration.

  • StreamId (string) -- An optional filtering parameter whereby MediaTailor filters the prefetch schedules to include only specific streams.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'Arn': 'string',
            'Consumption': {
                'AvailMatchingCriteria': [
                    {
                        'DynamicVariable': 'string',
                        'Operator': 'EQUALS'
                    },
                ],
                'EndTime': datetime(2015, 1, 1),
                'StartTime': datetime(2015, 1, 1)
            },
            'Name': 'string',
            'PlaybackConfigurationName': 'string',
            'Retrieval': {
                'DynamicVariables': {
                    'string': 'string'
                },
                'EndTime': datetime(2015, 1, 1),
                'StartTime': datetime(2015, 1, 1)
            },
            'StreamId': 'string'
        },
    ],

}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      Lists the prefetch schedules. An empty Items list doesn't mean there aren't more items to fetch, just that that page was empty.

      • (dict) --

        A complex type that contains prefetch schedule information.

        • Arn (string) --

          The Amazon Resource Name (ARN) of the prefetch schedule.

        • Consumption (dict) --

          Consumption settings determine how, and when, MediaTailor places the prefetched ads into ad breaks. Ad consumption occurs within a span of time that you define, called a consumption window . You can designate which ad breaks that MediaTailor fills with prefetch ads by setting avail matching criteria.

          • AvailMatchingCriteria (list) --

            If you only want MediaTailor to insert prefetched ads into avails (ad breaks) that match specific dynamic variables, such as scte.event_id, set the avail matching criteria.

            • (dict) --

              MediaTailor only places (consumes) prefetched ads if the ad break meets the criteria defined by the dynamic variables. This gives you granular control over which ad break to place the prefetched ads into.

              As an example, let's say that you set DynamicVariable to scte.event_id and Operator to EQUALS, and your playback configuration has an ADS URL of https://my.ads.server.com/path?&podId=[scte.avail_num]&event=[scte.event_id]&duration=[session.avail_duration_secs]. And the prefetch request to the ADS contains these values https://my.ads.server.com/path?&podId=3&event=my-awesome-event&duration=30. MediaTailor will only insert the prefetched ads into the ad break if has a SCTE marker with an event id of my-awesome-event, since it must match the event id that MediaTailor uses to query the ADS.

              You can specify up to five AvailMatchingCriteria. If you specify multiple AvailMatchingCriteria, MediaTailor combines them to match using a logical AND. You can model logical OR combinations by creating multiple prefetch schedules.

              • DynamicVariable (string) --

                The dynamic variable(s) that MediaTailor should use as avail matching criteria. MediaTailor only places the prefetched ads into the avail if the avail matches the criteria defined by the dynamic variable. For information about dynamic variables, see Using dynamic ad variables in the MediaTailor User Guide .

                You can include up to 100 dynamic variables.

              • Operator (string) --

                For the DynamicVariable specified in AvailMatchingCriteria, the Operator that is used for the comparison.

          • EndTime (datetime) --

            The time when MediaTailor no longer considers the prefetched ads for use in an ad break. MediaTailor automatically deletes prefetch schedules no less than seven days after the end time. If you'd like to manually delete the prefetch schedule, you can call DeletePrefetchSchedule.

          • StartTime (datetime) --

            The time when prefetched ads are considered for use in an ad break. If you don't specify StartTime, the prefetched ads are available after MediaTailor retrives them from the ad decision server.

        • Name (string) --

          The name of the prefetch schedule. The name must be unique among all prefetch schedules that are associated with the specified playback configuration.

        • PlaybackConfigurationName (string) --

          The name of the playback configuration to create the prefetch schedule for.

        • Retrieval (dict) --

          A complex type that contains settings for prefetch retrieval from the ad decision server (ADS).

          • DynamicVariables (dict) --

            The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS).

            You intially configure dynamic variables for the ADS URL when you set up your playback configuration. When you specify DynamicVariables for prefetch retrieval, MediaTailor includes the dynamic variables in the request to the ADS.

            • (string) --
              • (string) --
          • EndTime (datetime) --

            The time when prefetch retrieval ends for the ad break. Prefetching will be attempted for manifest requests that occur at or before this time.

          • StartTime (datetime) --

            The time when prefetch retrievals can start for this break. Ad prefetching will be attempted for manifest requests that occur at or after this time. Defaults to the current time. If not specified, the prefetch retrieval starts as soon as possible.

        • StreamId (string) --

          An optional stream identifier that you can specify in order to prefetch for multiple streams that use the same playback configuration.

class MediaTailor.Paginator.ListSourceLocations
paginator = client.get_paginator('list_source_locations')
paginate(**kwargs)

Creates an iterator that will paginate through responses from MediaTailor.Client.list_source_locations().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
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),
            'SourceLocationName': 'string',
            'Tags': {
                'string': 'string'
            }
        },
    ],

}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      An array of source locations.

      • (dict) --

        This response includes only the "type" : "object" property.

        • 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:

            • You must allow MediaTailor to access your S3 bucket by granting mediatailor.amazonaws.com principal access in IAM. For information about configuring access in IAM, see Access management in the IAM User Guide.
            • The mediatailor.amazonaws.com service principal must have permissions to read all top level manifests referenced by the VodSource packaging configurations.
            • The caller of the API must have s3:GetObject IAM permissions to read all top level manifests referenced by your MediaTailor VodSource packaging configurations.
          • 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.

        • SourceLocationName (string) --

          The name of the source location.

        • Tags (dict) --

          The tags assigned to the source location.

          • (string) --
            • (string) --
class MediaTailor.Paginator.ListVodSources
paginator = client.get_paginator('list_vod_sources')
paginate(**kwargs)

Creates an iterator that will paginate through responses from MediaTailor.Client.list_vod_sources().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    SourceLocationName='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • SourceLocationName (string) --

    [REQUIRED]

    The identifier for the source location you are working on.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Items': [
        {
            'Arn': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'HttpPackageConfigurations': [
                {
                    'Path': 'string',
                    'SourceGroup': 'string',
                    'Type': 'DASH'|'HLS'
                },
            ],
            'LastModifiedTime': datetime(2015, 1, 1),
            'SourceLocationName': 'string',
            'Tags': {
                'string': 'string'
            },
            'VodSourceName': 'string'
        },
    ],

}

Response Structure

  • (dict) --

    Success.

    • Items (list) --

      Lists the VOD sources.

      • (dict) --

        VOD source configuration parameters.

        • Arn (string) --

          The ARN for the VOD source.

        • CreationTime (datetime) --

          The timestamp that indicates when the VOD source was created.

        • HttpPackageConfigurations (list) --

          The HTTP package configurations for the VOD source.

          • (dict) --

            The HTTP package configuration properties for the requested VOD source.

            • Path (string) --

              The relative path to the URL for this VOD source. This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.

            • SourceGroup (string) --

              The name of the source group. This has to match one of the Channel::Outputs::SourceGroup.

            • Type (string) --

              The streaming protocol for this package configuration. Supported values are HLS and DASH.

        • LastModifiedTime (datetime) --

          The timestamp that indicates when the VOD source was last modified.

        • SourceLocationName (string) --

          The name of the source location that the VOD source is associated with.

        • Tags (dict) --

          The tags assigned to the VOD source.

          • (string) --
            • (string) --
        • VodSourceName (string) --

          The name of the VOD source.