Interface CfnCluster.ClusterNetworkSettingsProperty

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

@Stability(Stable) public static interface CfnCluster.ClusterNetworkSettingsProperty extends software.amazon.jsii.JsiiSerializable
On premises settings which will have the interface network mappings and default Output logical interface.

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.medialive.*;
 ClusterNetworkSettingsProperty clusterNetworkSettingsProperty = ClusterNetworkSettingsProperty.builder()
         .defaultRoute("defaultRoute")
         .interfaceMappings(List.of(InterfaceMappingProperty.builder()
                 .logicalInterfaceName("logicalInterfaceName")
                 .networkId("networkId")
                 .build()))
         .build();
 

See Also: