Interface CfnBridgeSource.BridgeFlowSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBridgeSource.BridgeFlowSourceProperty.Jsii$Proxy
Enclosing class:
CfnBridgeSource

@Stability(Stable) public static interface CfnBridgeSource.BridgeFlowSourceProperty extends software.amazon.jsii.JsiiSerializable
The source of the bridge.

A flow source originates in MediaConnect as an existing cloud flow.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.mediaconnect.*;
 BridgeFlowSourceProperty bridgeFlowSourceProperty = BridgeFlowSourceProperty.builder()
         .flowArn("flowArn")
         // the properties below are optional
         .flowVpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
                 .vpcInterfaceName("vpcInterfaceName")
                 .build())
         .build();
 

See Also: