HlsRenditionSelectionOptions

class aws_cdk.aws_medialive_alpha.HlsRenditionSelectionOptions(*, group_id, rendition_name)

Bases: object

(experimental) Options for selecting an HLS audio rendition.

Parameters:
  • group_id (str) – (experimental) The GROUP-ID in the #EXT-X-MEDIA tag of the target HLS audio rendition.

  • rendition_name (str) – (experimental) The NAME in the #EXT-X-MEDIA tag of the target HLS audio rendition.

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

hls_rendition_selection_options = medialive_alpha.HlsRenditionSelectionOptions(
    group_id="groupId",
    rendition_name="renditionName"
)

Attributes

group_id

(experimental) The GROUP-ID in the #EXT-X-MEDIA tag of the target HLS audio rendition.

Stability:

experimental

rendition_name

(experimental) The NAME in the #EXT-X-MEDIA tag of the target HLS audio rendition.

Stability:

experimental