interface StreamConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnMediaPipelineKinesisVideoStreamPool.StreamConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnMediaPipelineKinesisVideoStreamPool_StreamConfigurationProperty |
Java | software.amazon.awscdk.services.chime.CfnMediaPipelineKinesisVideoStreamPool.StreamConfigurationProperty |
Python | aws_cdk.aws_chime.CfnMediaPipelineKinesisVideoStreamPool.StreamConfigurationProperty |
TypeScript | aws-cdk-lib » aws_chime » CfnMediaPipelineKinesisVideoStreamPool » StreamConfigurationProperty |
The configuration settings for the Kinesis video stream.
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 streamConfigurationProperty: chime.CfnMediaPipelineKinesisVideoStreamPool.StreamConfigurationProperty = {
region: 'region',
// the properties below are optional
dataRetentionInHours: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| region | string | The AWS Region of the video stream. |
| data | number | The amount of time that data is retained, in hours. |
region
Type:
string
The AWS Region of the video stream.
dataRetentionInHours?
Type:
number
(optional)
The amount of time that data is retained, in hours.

.NET
Go
Java
Python
TypeScript