LiveSourceReference

class aws_cdk.aws_mediatailor.LiveSourceReference(*, live_source_arn, live_source_name, source_location_name)

Bases: object

A reference to a LiveSource resource.

Parameters:
  • live_source_arn (str) – The ARN of the LiveSource resource.

  • live_source_name (str) – The LiveSourceName of the LiveSource resource.

  • source_location_name (str) – The SourceLocationName of the LiveSource 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_mediatailor as mediatailor

live_source_reference = mediatailor.LiveSourceReference(
    live_source_arn="liveSourceArn",
    live_source_name="liveSourceName",
    source_location_name="sourceLocationName"
)

Attributes

live_source_arn

The ARN of the LiveSource resource.

live_source_name

The LiveSourceName of the LiveSource resource.

source_location_name

The SourceLocationName of the LiveSource resource.