Interface CfnClusterPropsMixin.NetworkingProperty

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

@Stability(Stable) public static interface CfnClusterPropsMixin.NetworkingProperty extends software.amazon.jsii.JsiiSerializable
The networking configuration for the cluster's control plane.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.pcs.*;
 NetworkingProperty networkingProperty = NetworkingProperty.builder()
         .networkType("networkType")
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .build();
 

See Also: