BridgeOutputReference
- class aws_cdk.interfaces.aws_mediaconnect.BridgeOutputReference(*, bridge_arn, bridge_output_name)
Bases:
objectA reference to a BridgeOutput resource.
- Parameters:
bridge_arn (
str) – The BridgeArn of the BridgeOutput resource.bridge_output_name (
str) – The Name of the BridgeOutput 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_output_reference = interfaces_aws_mediaconnect.BridgeOutputReference( bridge_arn="bridgeArn", bridge_output_name="bridgeOutputName" )
Attributes
- bridge_arn
The BridgeArn of the BridgeOutput resource.
- bridge_output_name
The Name of the BridgeOutput resource.