CmafCaptionLanguageMapping

class aws_cdk.aws_medialive_alpha.CmafCaptionLanguageMapping(*, caption_channel, language_code)

Bases: object

(experimental) Maps a captions channel to an ISO 639-2 language code for a CMAF Ingest output group.

Unlike CaptionLanguageMapping, the CMAF Ingest variant has no language description.

Parameters:
  • caption_channel (Union[int, float]) – (experimental) The closed caption channel number (1-4).

  • language_code (str) – (experimental) A three-character ISO 639-2 language code.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

cmaf_caption_language_mapping = medialive_alpha.CmafCaptionLanguageMapping(
    caption_channel=123,
    language_code="languageCode"
)

Attributes

caption_channel

(experimental) The closed caption channel number (1-4).

Stability:

experimental

language_code

(experimental) A three-character ISO 639-2 language code.

Stability:

experimental