MediaStreamAncillaryData
- class aws_cdk.aws_mediaconnect_alpha.MediaStreamAncillaryData(*, media_stream_id, media_stream_name, description=None)
Bases:
MediaStreamBase(experimental) A media stream represents one component of your content, such as video, audio, or ancillary data.
After you add a media stream to your flow, you can associate it with sources and outputs that use the ST 2110 JPEG XS or CDI protocol.
- Parameters:
media_stream_id (
Union[int,float]) – (experimental) A unique identifier for the media stream.media_stream_name (
str) – (experimental) A name that helps you distinguish one media stream from another.description (
Optional[str]) – (experimental) A description that can help you quickly identify what your media stream is used for. Default: - no description
- 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 media_stream_ancillary_data = mediaconnect_alpha.MediaStreamAncillaryData( media_stream_id=123, media_stream_name="mediaStreamName", # the properties below are optional description="description" )
Attributes
- description
(experimental) A description that can help you quickly identify what your media stream is used for.
- Default:
no description
- Stability:
experimental
- media_stream_id
(experimental) A unique identifier for the media stream.
- Stability:
experimental
- media_stream_name
(experimental) A name that helps you distinguish one media stream from another.
- Stability:
experimental