@Stability(value=Stable)
public static interface CfnNodegroup.UpdateConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
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 Number |
getMaxUnavailable()
The maximum number of nodes unavailable at once during a version update.
|
default Number |
getMaxUnavailablePercentage()
The maximum percentage of nodes unavailable during a version update.
|
@Stability(value=Stable) @Nullable default Number getMaxUnavailable()
Nodes will be updated in parallel. This value or maxUnavailablePercentage is required to have a value.The maximum number is 100.
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) static CfnNodegroup.UpdateConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.