CfnMediaPipelineKinesisVideoStreamPoolProps
- class aws_cdk.aws_chime.CfnMediaPipelineKinesisVideoStreamPoolProps(*, pool_name, stream_configuration, tags=None)
Bases:
objectProperties 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:
- 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.
- stream_configuration
The configuration settings for the Kinesis video stream.
- tags
The tags associated with the Kinesis Video Stream Pool.