Interface CfnCluster.ServiceNodePortRangeProperty

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

@Stability(Stable) public static interface CfnCluster.ServiceNodePortRangeProperty extends software.amazon.jsii.JsiiSerializable
The port range for Kubernetes NodePort services.

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_v2.*;
 ServiceNodePortRangeProperty serviceNodePortRangeProperty = ServiceNodePortRangeProperty.builder()
         .maxPort(123)
         .minPort(123)
         .build();
 

See Also: