Interface CfnBridge.BridgeNetworkSourceProperty

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

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

A network source originates at your premises.

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.*;
 BridgeNetworkSourceProperty bridgeNetworkSourceProperty = BridgeNetworkSourceProperty.builder()
         .multicastIp("multicastIp")
         .name("name")
         .networkName("networkName")
         .port(123)
         .protocol("protocol")
         // the properties below are optional
         .multicastSourceSettings(MulticastSourceSettingsProperty.builder()
                 .multicastSourceIp("multicastSourceIp")
                 .build())
         .build();
 

See Also: