interface MediaStreamAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnFlowPropsMixin.MediaStreamAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnFlowPropsMixin_MediaStreamAttributesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowPropsMixin.MediaStreamAttributesProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnFlowPropsMixin.MediaStreamAttributesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » 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 { aws_mediaconnect as mediaconnect } from '@aws-cdk/cfn-property-mixins';
const mediaStreamAttributesProperty: mediaconnect.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