MediaStreamSourceConfigurationCdi

class aws_cdk.aws_mediaconnect_alpha.MediaStreamSourceConfigurationCdi(*, encoding, media_stream)

Bases: object

(experimental) Options for Media Stream Source Configuration.

Parameters:
  • encoding (Encoding) – (experimental) The format that was used to encode the data. For ancillary data streams, set the encoding name to smpte291. If the encoding name is smpte291, set the color space to one of the following: BT601, BT709, BT2020, or BT2100. For all other ancillary data streams, set the color space to SDR-NOCOLOR.

  • media_stream (MediaStream) – (experimental) The name of the media stream.

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_mediaconnect_alpha as mediaconnect_alpha

# encoding: mediaconnect_alpha.Encoding
# media_stream: mediaconnect_alpha.MediaStream

media_stream_source_configuration_cdi = mediaconnect_alpha.MediaStreamSourceConfigurationCdi(
    encoding=encoding,
    media_stream=media_stream
)

Attributes

encoding

(experimental) The format that was used to encode the data.

For ancillary data streams, set the encoding name to smpte291. If the encoding name is smpte291, set the color space to one of the following: BT601, BT709, BT2020, or BT2100. For all other ancillary data streams, set the color space to SDR-NOCOLOR.

Stability:

experimental

media_stream

(experimental) The name of the media stream.

Stability:

experimental