interface MediaStreamAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowPropsMixin.MediaStreamAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowPropsMixin_MediaStreamAttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowPropsMixin.MediaStreamAttributesProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowPropsMixin.MediaStreamAttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnFlowPropsMixin » MediaStreamAttributesProperty |
Attributes that are related to the media stream.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const mediaStreamAttributesProperty: mediaconnect_mixins.CfnFlowPropsMixin.MediaStreamAttributesProperty = {
fmtp: {
channelOrder: 'channelOrder',
colorimetry: 'colorimetry',
exactFramerate: 'exactFramerate',
par: 'par',
range: 'range',
scanMode: 'scanMode',
tcs: 'tcs',
},
lang: 'lang',
};
Properties
| Name | Type | Description |
|---|---|---|
| fmtp? | IResolvable | Fmtp | The settings that you want to use to define the media stream. |
| lang? | string | The audio language, in a format that is recognized by the receiver. |
fmtp?
Type:
IResolvable | Fmtp
(optional)
The settings that you want to use to define the media stream.
lang?
Type:
string
(optional)
The audio language, in a format that is recognized by the receiver.

.NET
Go
Java
Python
TypeScript