Smpte2110SdpLocation

class aws_cdk.aws_medialive_alpha.Smpte2110SdpLocation(*, sdp_url, media_index=None)

Bases: object

(experimental) A reference to an SDP file that describes a SMPTE 2110 stream to ingest.

Parameters:
  • sdp_url (str) – (experimental) The URL of the SDP file.

  • media_index (Union[int, float, None]) – (experimental) The index of the media stream within the SDP to ingest. Use when the SDP describes more than one stream of that media type. Default: - service default

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

smpte2110_sdp_location = medialive_alpha.Smpte2110SdpLocation(
    sdp_url="sdpUrl",

    # the properties below are optional
    media_index=123
)

Attributes

media_index

(experimental) The index of the media stream within the SDP to ingest.

Use when the SDP describes more than one stream of that media type.

Default:
  • service default

Stability:

experimental

sdp_url

(experimental) The URL of the SDP file.

Stability:

experimental