Interface CfnBridge.BridgeNetworkOutputProperty

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

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

A network output is delivered to 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.*;
 BridgeNetworkOutputProperty bridgeNetworkOutputProperty = BridgeNetworkOutputProperty.builder()
         .ipAddress("ipAddress")
         .name("name")
         .networkName("networkName")
         .port(123)
         .protocol("protocol")
         .ttl(123)
         .build();
 

See Also: