Interface CfnCluster.KubernetesNetworkConfigProperty

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

@Stability(Stable) public static interface CfnCluster.KubernetesNetworkConfigProperty extends software.amazon.jsii.JsiiSerializable
The Kubernetes network configuration for the cluster.

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.eks.*;
 KubernetesNetworkConfigProperty kubernetesNetworkConfigProperty = KubernetesNetworkConfigProperty.builder()
         .ipFamily("ipFamily")
         .serviceIpv4Cidr("serviceIpv4Cidr")
         .serviceIpv6Cidr("serviceIpv6Cidr")
         .build();
 

See Also: