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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.ClusterNetworkSettingsProperty
static final class
An implementation forCfnCluster.ClusterNetworkSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultRoute
Default value if the customer does not define it in channel Output API.- See Also:
-
getInterfaceMappings
Network mappings for the cluster.- See Also:
-
builder
-