BridgeOutputReference
- class aws_cdk.aws_mediaconnect.BridgeOutputReference(*, bridge_arn, bridge_output_name)
Bases:
object
A 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 import aws_mediaconnect as mediaconnect bridge_output_reference = 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.