SdiSourceProps

class aws_cdk.aws_medialive_alpha.SdiSourceProps(*, type, mode=None, sdi_source_name=None, tags=None)

Bases: object

(experimental) Properties for creating an SDI Source.

Parameters:
  • type (SdiType) – (experimental) Type of SDI input.

  • mode (Optional[SdiMode]) – (experimental) SDI Mode, only applicable for QUAD type. Default: - no mode

  • sdi_source_name (Optional[str]) – (experimental) The name of the SDI source. Default: - auto-generated name

  • tags (Optional[Mapping[str, str]]) – (experimental) Tags to add to the SDI source. Default: - no tagging

Stability:

experimental

ExampleMetadata:

infused

Example:

# stack: Stack

sdi = medialive.SdiSource(stack, "Sdi",
    sdi_source_name="camera-1",
    type=medialive.SdiType.SINGLE
)

Attributes

mode

(experimental) SDI Mode, only applicable for QUAD type.

Default:
  • no mode

Stability:

experimental

sdi_source_name

(experimental) The name of the SDI source.

Default:
  • auto-generated name

Stability:

experimental

tags

(experimental) Tags to add to the SDI source.

Default:
  • no tagging

Stability:

experimental

type

(experimental) Type of SDI input.

Stability:

experimental