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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.ServiceNodePortRangePropertystatic final classAn implementation forCfnCluster.ServiceNodePortRangeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxPort
The maximum port number in the range.- See Also:
-
getMinPort
The minimum port number in the range.- See Also:
-
builder
-