Struct aws_sdk_eks::types::NodegroupUpdateConfig
source · #[non_exhaustive]pub struct NodegroupUpdateConfig {
pub max_unavailable: Option<i32>,
pub max_unavailable_percentage: Option<i32>,
}
Expand description
The node group update configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.The maximum number of nodes unavailable at once during a version update. Nodes will be updated in parallel. This value or maxUnavailablePercentage
is required to have a value.The maximum number is 100.
The maximum percentage of nodes unavailable during a version update. 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.
Implementations§
source§impl NodegroupUpdateConfig
impl NodegroupUpdateConfig
The maximum number of nodes unavailable at once during a version update. Nodes will be updated in parallel. This value or maxUnavailablePercentage
is required to have a value.The maximum number is 100.
The maximum percentage of nodes unavailable during a version update. 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.
source§impl NodegroupUpdateConfig
impl NodegroupUpdateConfig
sourcepub fn builder() -> NodegroupUpdateConfigBuilder
pub fn builder() -> NodegroupUpdateConfigBuilder
Creates a new builder-style object to manufacture NodegroupUpdateConfig
.
Trait Implementations§
source§impl Clone for NodegroupUpdateConfig
impl Clone for NodegroupUpdateConfig
source§fn clone(&self) -> NodegroupUpdateConfig
fn clone(&self) -> NodegroupUpdateConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NodegroupUpdateConfig
impl Debug for NodegroupUpdateConfig
source§impl PartialEq for NodegroupUpdateConfig
impl PartialEq for NodegroupUpdateConfig
source§fn eq(&self, other: &NodegroupUpdateConfig) -> bool
fn eq(&self, other: &NodegroupUpdateConfig) -> bool
self
and other
values to be equal, and is used
by ==
.