ChimeSDKMediaPipelines / Client / create_media_pipeline_kinesis_video_stream_pool

create_media_pipeline_kinesis_video_stream_pool#

ChimeSDKMediaPipelines.Client.create_media_pipeline_kinesis_video_stream_pool(**kwargs)#

Creates an Kinesis video stream pool for the media pipeline.

See also: AWS API Documentation

Request Syntax

response = client.create_media_pipeline_kinesis_video_stream_pool(
    StreamConfiguration={
        'Region': 'string',
        'DataRetentionInHours': 123
    },
    PoolName='string',
    ClientRequestToken='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters:
  • StreamConfiguration (dict) –

    [REQUIRED]

    The configuration settings for the video stream.

    • Region (string) – [REQUIRED]

      The Amazon Web Services Region of the video stream.

    • DataRetentionInHours (integer) –

      The amount of time that data is retained.

  • PoolName (string) –

    [REQUIRED]

    The name of the video stream pool.

  • ClientRequestToken (string) –

    The token assigned to the client making the request.

    This field is autopopulated if not provided.

  • Tags (list) –

    The tags assigned to the video stream pool.

    • (dict) –

      A key/value pair that grants users access to meeting resources.

      • Key (string) – [REQUIRED]

        The key half of a tag.

      • Value (string) – [REQUIRED]

        The value half of a tag.

Return type:

dict

Returns:

Response Syntax

{
    'KinesisVideoStreamPoolConfiguration': {
        'PoolArn': 'string',
        'PoolName': 'string',
        'PoolId': 'string',
        'PoolStatus': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING'|'FAILED',
        'PoolSize': 123,
        'StreamConfiguration': {
            'Region': 'string',
            'DataRetentionInHours': 123
        },
        'CreatedTimestamp': datetime(2015, 1, 1),
        'UpdatedTimestamp': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) –

    • KinesisVideoStreamPoolConfiguration (dict) –

      The configuration for the Kinesis video stream pool.

      • PoolArn (string) –

        The ARN of the video stream pool configuration.

      • PoolName (string) –

        The name of the video stream pool configuration.

      • PoolId (string) –

        The ID of the video stream pool in the configuration.

      • PoolStatus (string) –

        The status of the video stream pool in the configuration.

      • PoolSize (integer) –

        The size of the video stream pool in the configuration.

      • StreamConfiguration (dict) –

        The Kinesis video stream pool configuration object.

        • Region (string) –

          The Amazon Web Services Region of the video stream.

        • DataRetentionInHours (integer) –

          The amount of time that data is retained.

      • CreatedTimestamp (datetime) –

        The time at which the configuration was created.

      • UpdatedTimestamp (datetime) –

        The time at which the configuration was updated.

Exceptions