BridgeSourceReference
- class aws_cdk.interfaces.aws_mediaconnect.BridgeSourceReference(*, bridge_arn, bridge_source_name)
Bases:
objectA reference to a BridgeSource resource.
- Parameters:
bridge_arn (
str) – The BridgeArn of the BridgeSource resource.bridge_source_name (
str) – The Name of the BridgeSource 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_mediaconnect as interfaces_aws_mediaconnect bridge_source_reference = interfaces_aws_mediaconnect.BridgeSourceReference( bridge_arn="bridgeArn", bridge_source_name="bridgeSourceName" )
Attributes
- bridge_arn
The BridgeArn of the BridgeSource resource.
- bridge_source_name
The Name of the BridgeSource resource.