SdiSourceReference

class aws_cdk.aws_medialive.SdiSourceReference(*, sdi_source_arn, sdi_source_id)

Bases: object

A reference to a SdiSource resource.

Parameters:
  • sdi_source_arn (str) – The ARN of the SdiSource resource.

  • sdi_source_id (str) – The Id of the SdiSource resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_medialive as medialive

sdi_source_reference = medialive.SdiSourceReference(
    sdi_source_arn="sdiSourceArn",
    sdi_source_id="sdiSourceId"
)

Attributes

sdi_source_arn

The ARN of the SdiSource resource.

sdi_source_id

The Id of the SdiSource resource.