public static interface CfnNodegroup.UpdateConfigProperty
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.legacy.*; UpdateConfigProperty updateConfigProperty = UpdateConfigProperty.builder() .maxUnavailable(123) .maxUnavailablePercentage(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnNodegroup.UpdateConfigProperty.Builder
A builder for
CfnNodegroup.UpdateConfigProperty |
static class |
CfnNodegroup.UpdateConfigProperty.Jsii$Proxy
An implementation for
CfnNodegroup.UpdateConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnNodegroup.UpdateConfigProperty.Builder |
builder() |
default java.lang.Number |
getMaxUnavailable()
The maximum number of nodes unavailable at once during a version update.
|
default java.lang.Number |
getMaxUnavailablePercentage()
The maximum percentage of nodes unavailable during a version update.
|
default java.lang.Number getMaxUnavailable()
Nodes will be updated in parallel. This value or maxUnavailablePercentage
is required to have a value.The maximum number is 100.
default java.lang.Number getMaxUnavailablePercentage()
This percentage of nodes will be updated in parallel, up to 100 nodes at once. This value or maxUnavailable
is required to have a value.
static CfnNodegroup.UpdateConfigProperty.Builder builder()