interface CaptionLanguageMapping
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.CaptionLanguageMapping |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#CaptionLanguageMapping |
Java | software.amazon.awscdk.services.medialive.alpha.CaptionLanguageMapping |
Python | aws_cdk.aws_medialive_alpha.CaptionLanguageMapping |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป CaptionLanguageMapping |
Maps a captions channel to an ISO 693-2 language code.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const captionLanguageMapping: medialive_alpha.CaptionLanguageMapping = {
captionChannel: 123,
languageCode: 'languageCode',
languageDescription: 'languageDescription',
};
Properties
| Name | Type | Description |
|---|---|---|
| caption | number | The closed caption channel number (1-4). |
| language | string | A three-character ISO 639-2 language code. |
| language | string | The textual description of the language. |
captionChannel
Type:
number
The closed caption channel number (1-4).
languageCode
Type:
string
A three-character ISO 639-2 language code.
languageDescription
Type:
string
The textual description of the language.

.NET
Go
Java
Python
TypeScript (