AWS Elemental MediaPackage VOD

2019/11/25 - AWS Elemental MediaPackage VOD - 3 updated api methods

Changes  Adds a domain name to PackagingGroups, representing the fully qualified domain name for Assets created in the group.

CreatePackagingGroup (updated) Link ¶
Changes (response)
{'DomainName': 'string'}

Creates a new MediaPackage VOD PackagingGroup resource.

See also: AWS API Documentation

Request Syntax

client.create_packaging_group(
    Id='string'
)
type Id

string

param Id

[REQUIRED] The ID of the PackagingGroup.

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'DomainName': 'string',
    'Id': 'string'
}

Response Structure

  • (dict) -- The new MediaPackage VOD PackagingGroup resource.

    • Arn (string) -- The ARN of the PackagingGroup.

    • DomainName (string) -- The fully qualified domain name for Assets in the PackagingGroup.

    • Id (string) -- The ID of the PackagingGroup.

DescribePackagingGroup (updated) Link ¶
Changes (response)
{'DomainName': 'string'}

Returns a description of a MediaPackage VOD PackagingGroup resource.

See also: AWS API Documentation

Request Syntax

client.describe_packaging_group(
    Id='string'
)
type Id

string

param Id

[REQUIRED] The ID of a MediaPackage VOD PackagingGroup resource.

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'DomainName': 'string',
    'Id': 'string'
}

Response Structure

  • (dict) -- A MediaPackage VOD PackagingGroup resource.

    • Arn (string) -- The ARN of the PackagingGroup.

    • DomainName (string) -- The fully qualified domain name for Assets in the PackagingGroup.

    • Id (string) -- The ID of the PackagingGroup.

ListPackagingGroups (updated) Link ¶
Changes (response)
{'PackagingGroups': {'DomainName': 'string'}}

Returns a collection of MediaPackage VOD PackagingGroup resources.

See also: AWS API Documentation

Request Syntax

client.list_packaging_groups(
    MaxResults=123,
    NextToken='string'
)
type MaxResults

integer

param MaxResults

Upper bound on number of records to return.

type NextToken

string

param NextToken

A token used to resume pagination from the end of a previous request.

rtype

dict

returns

Response Syntax

{
    'NextToken': 'string',
    'PackagingGroups': [
        {
            'Arn': 'string',
            'DomainName': 'string',
            'Id': 'string'
        },
    ]
}

Response Structure

  • (dict) -- A collection of MediaPackage VOD PackagingGroup resources.

    • NextToken (string) -- A token that can be used to resume pagination from the end of the collection.

    • PackagingGroups (list) -- A list of MediaPackage VOD PackagingGroup resources.

      • (dict) -- A MediaPackage VOD PackagingGroup resource.

        • Arn (string) -- The ARN of the PackagingGroup.

        • DomainName (string) -- The fully qualified domain name for Assets in the PackagingGroup.

        • Id (string) -- The ID of the PackagingGroup.