MediaLive / Client / list_channel_placement_groups

list_channel_placement_groups#

MediaLive.Client.list_channel_placement_groups(**kwargs)#

Retrieve the list of ChannelPlacementGroups in the specified Cluster.

See also: AWS API Documentation

Request Syntax

response = client.list_channel_placement_groups(
    ClusterId='string',
    MaxResults=123,
    NextToken='string'
)
Parameters:
  • ClusterId (string) – [REQUIRED] The ID of the cluster

  • MaxResults (integer) – The maximum number of items to return.

  • NextToken (string) – The token to retrieve the next page of results.

Return type:

dict

Returns:

Response Syntax

{
    'ChannelPlacementGroups': [
        {
            'Arn': 'string',
            'Channels': [
                'string',
            ],
            'ClusterId': 'string',
            'Id': 'string',
            'Name': 'string',
            'Nodes': [
                'string',
            ],
            'State': 'UNASSIGNED'|'ASSIGNING'|'ASSIGNED'|'DELETING'|'DELETE_FAILED'|'DELETED'|'UNASSIGNING'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) – An array of channel placement groups.

    • ChannelPlacementGroups (list) – An array of ChannelPlacementGroups that exist in the Cluster.

      • (dict) – Contains the response for ListChannelPlacementGroups

        • Arn (string) – The ARN of this ChannelPlacementGroup. It is automatically assigned when the ChannelPlacementGroup is created.

        • Channels (list) – Used in ListChannelPlacementGroupsResult

          • (string) – Placeholder documentation for __string

        • ClusterId (string) – The ID of the Cluster that the Node belongs to.

        • Id (string) – The ID of the ChannelPlacementGroup. Unique in the AWS account. The ID is the resource-id portion of the ARN.

        • Name (string) – The name that you specified for the ChannelPlacementGroup.

        • Nodes (list) – An array with one item, which is the signle Node that is associated with the ChannelPlacementGroup.

          • (string) – Placeholder documentation for __string

        • State (string) – The current state of the ChannelPlacementGroup.

    • NextToken (string) – Token for the next result.

Exceptions

  • MediaLive.Client.exceptions.BadRequestException

  • MediaLive.Client.exceptions.InternalServerErrorException

  • MediaLive.Client.exceptions.ForbiddenException

  • MediaLive.Client.exceptions.BadGatewayException

  • MediaLive.Client.exceptions.GatewayTimeoutException

  • MediaLive.Client.exceptions.TooManyRequestsException