SourceLocationReference
- class aws_cdk.interfaces.aws_mediatailor.SourceLocationReference(*, source_location_arn, source_location_name)
Bases:
objectA reference to a SourceLocation resource.
- Parameters:
source_location_arn (
str) – The ARN of the SourceLocation resource.source_location_name (
str) – The SourceLocationName of the SourceLocation 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_aws_mediatailor source_location_reference = interfaces_aws_mediatailor.SourceLocationReference( source_location_arn="sourceLocationArn", source_location_name="sourceLocationName" )
Attributes
- source_location_arn
The ARN of the SourceLocation resource.
- source_location_name
The SourceLocationName of the SourceLocation resource.