Interface CfnChannel.CaptionLanguageMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.CaptionLanguageMappingProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.CaptionLanguageMappingProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.medialive.*;
 CaptionLanguageMappingProperty captionLanguageMappingProperty = CaptionLanguageMappingProperty.builder()
         .captionChannel(123)
         .languageCode("languageCode")
         .languageDescription("languageDescription")
         .build();