interface CfnMediaPipelineKinesisVideoStreamPoolMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnMediaPipelineKinesisVideoStreamPoolMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnMediaPipelineKinesisVideoStreamPoolMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnMediaPipelineKinesisVideoStreamPoolMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnMediaPipelineKinesisVideoStreamPoolMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnMediaPipelineKinesisVideoStreamPoolMixinProps |
Properties for CfnMediaPipelineKinesisVideoStreamPoolPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_chime as chime } from '@aws-cdk/cfn-property-mixins';
const cfnMediaPipelineKinesisVideoStreamPoolMixinProps: chime.CfnMediaPipelineKinesisVideoStreamPoolMixinProps = {
poolName: 'poolName',
streamConfiguration: {
dataRetentionInHours: 123,
region: 'region',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The name of the Kinesis Video Stream Pool. |
| stream | IResolvable | Stream | The configuration settings for the Kinesis video stream. |
| tags? | Tags[] | The tags associated with the Kinesis Video Stream Pool. |
poolName?
Type:
string
(optional)
The name of the Kinesis Video Stream Pool.
streamConfiguration?
Type:
IResolvable | Stream
(optional)
The configuration settings for the Kinesis video stream.
tags?
Type:
Tags[]
(optional)
The tags associated with the Kinesis Video Stream Pool.

.NET
Go
Java
Python
TypeScript