Struct aws_sdk_eks::model::NodegroupUpdateConfig
source · #[non_exhaustive]pub struct NodegroupUpdateConfig { /* private fields */ }
Expand description
The node group update configuration.
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() -> Builder
pub fn builder() -> Builder
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NodegroupUpdateConfig
impl Debug for NodegroupUpdateConfig
source§impl PartialEq<NodegroupUpdateConfig> for NodegroupUpdateConfig
impl PartialEq<NodegroupUpdateConfig> for NodegroupUpdateConfig
source§fn eq(&self, other: &NodegroupUpdateConfig) -> bool
fn eq(&self, other: &NodegroupUpdateConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.