MediaStreamBase

class aws_cdk.aws_mediaconnect_alpha.MediaStreamBase(*, media_stream_id, media_stream_name, description=None)

Bases: object

(experimental) Base configuration for Media Stream.

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_base = mediaconnect_alpha.MediaStreamBase(
    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