Interface CfnFlowSource.GatewayBridgeSourceProperty

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

@Stability(Stable) public static interface CfnFlowSource.GatewayBridgeSourceProperty extends software.amazon.jsii.JsiiSerializable
The source configuration for cloud flows receiving a stream from a bridge.

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.*;
 GatewayBridgeSourceProperty gatewayBridgeSourceProperty = GatewayBridgeSourceProperty.builder()
         .bridgeArn("bridgeArn")
         // the properties below are optional
         .vpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
                 .vpcInterfaceName("vpcInterfaceName")
                 .build())
         .build();
 

See Also: