CfnMediaPipelineKinesisVideoStreamPoolProps

class aws_cdk.aws_chime.CfnMediaPipelineKinesisVideoStreamPoolProps(*, pool_name, stream_configuration, tags=None)

Bases: object

Properties for defining a CfnMediaPipelineKinesisVideoStreamPool.

Parameters:
  • pool_name (str) – The name of the Kinesis Video Stream Pool.

  • stream_configuration (Union[IResolvable, StreamConfigurationProperty, Dict[str, Any]]) – The configuration settings for the Kinesis video stream.

  • tags (Optional[Sequence[Union[TagsItemsProperty, Dict[str, Any]]]]) – The tags associated with the Kinesis Video Stream Pool.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-mediapipelinekinesisvideostreampool.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_chime as chime

cfn_media_pipeline_kinesis_video_stream_pool_props = chime.CfnMediaPipelineKinesisVideoStreamPoolProps(
    pool_name="poolName",
    stream_configuration=chime.CfnMediaPipelineKinesisVideoStreamPool.StreamConfigurationProperty(
        region="region",

        # the properties below are optional
        data_retention_in_hours=123
    ),

    # the properties below are optional
    tags=[chime.CfnMediaPipelineKinesisVideoStreamPool.TagsItemsProperty(
        key="key",
        value="value"
    )]
)

Attributes

pool_name

The name of the Kinesis Video Stream Pool.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-mediapipelinekinesisvideostreampool.html#cfn-chime-mediapipelinekinesisvideostreampool-poolname

stream_configuration

The configuration settings for the Kinesis video stream.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-mediapipelinekinesisvideostreampool.html#cfn-chime-mediapipelinekinesisvideostreampool-streamconfiguration

tags

The tags associated with the Kinesis Video Stream Pool.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-mediapipelinekinesisvideostreampool.html#cfn-chime-mediapipelinekinesisvideostreampool-tags