interface CaptionLanguageMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.CaptionLanguageMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_CaptionLanguageMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.CaptionLanguageMappingProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.CaptionLanguageMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » CaptionLanguageMappingProperty |
Maps a captions channel to an ISO 693-2 language code (http://www.loc.gov/standards/iso639-2), with an optional description.
The parent of this entity is HlsGroupSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const captionLanguageMappingProperty: medialive_mixins.CfnChannelPropsMixin.CaptionLanguageMappingProperty = {
captionChannel: 123,
languageCode: 'languageCode',
languageDescription: 'languageDescription',
};
Properties
| Name | Type | Description |
|---|---|---|
| caption | number | The closed caption channel being described by this CaptionLanguageMapping. |
| language | string | A three-character ISO 639-2 language code (see http://www.loc.gov/standards/iso639-2). |
| language | string | The textual description of language. |
captionChannel?
Type:
number
(optional)
The closed caption channel being described by this CaptionLanguageMapping.
Each channel mapping must have a unique channel number (maximum of 4).
languageCode?
Type:
string
(optional)
A three-character ISO 639-2 language code (see http://www.loc.gov/standards/iso639-2).
languageDescription?
Type:
string
(optional)
The textual description of language.

.NET
Go
Java
Python
TypeScript