interface CfnMediaPipelineKinesisVideoStreamPoolProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnMediaPipelineKinesisVideoStreamPoolProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnMediaPipelineKinesisVideoStreamPoolProps |
Java | software.amazon.awscdk.services.chime.CfnMediaPipelineKinesisVideoStreamPoolProps |
Python | aws_cdk.aws_chime.CfnMediaPipelineKinesisVideoStreamPoolProps |
TypeScript | aws-cdk-lib » aws_chime » CfnMediaPipelineKinesisVideoStreamPoolProps |
Properties for defining a CfnMediaPipelineKinesisVideoStreamPool.
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-lib';
const cfnMediaPipelineKinesisVideoStreamPoolProps: chime.CfnMediaPipelineKinesisVideoStreamPoolProps = {
poolName: 'poolName',
streamConfiguration: {
region: 'region',
// the properties below are optional
dataRetentionInHours: 123,
},
// the properties below are optional
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
The name of the Kinesis Video Stream Pool.
streamConfiguration
Type:
IResolvable | Stream
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