LiveSourceReference
- class aws_cdk.interfaces.aws_mediatailor.LiveSourceReference(*, live_source_arn, live_source_name, source_location_name)
Bases:
objectA 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.interfaces import aws_mediatailor as interfaces_mediatailor live_source_reference = interfaces_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.