Interface CfnBridge.BridgeSourceProperty

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

@Stability(Stable) public static interface CfnBridge.BridgeSourceProperty extends software.amazon.jsii.JsiiSerializable
The bridge's source.

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.*;
 BridgeSourceProperty bridgeSourceProperty = BridgeSourceProperty.builder()
         .flowSource(BridgeFlowSourceProperty.builder()
                 .flowArn("flowArn")
                 .name("name")
                 // the properties below are optional
                 .flowVpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
                         .vpcInterfaceName("vpcInterfaceName")
                         .build())
                 .build())
         .networkSource(BridgeNetworkSourceProperty.builder()
                 .multicastIp("multicastIp")
                 .name("name")
                 .networkName("networkName")
                 .port(123)
                 .protocol("protocol")
                 .build())
         .build();
 

See Also: