Interface CfnBridgeSource.BridgeNetworkSourceProperty

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

@Stability(Stable) public static interface CfnBridgeSource.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")
         .networkName("networkName")
         .port(123)
         .protocol("protocol")
         .build();
 

See Also: