Struct aws_sdk_eks::types::builders::NodegroupUpdateConfigBuilder
source · #[non_exhaustive]pub struct NodegroupUpdateConfigBuilder { /* private fields */ }
Expand description
A builder for NodegroupUpdateConfig
.
Implementations§
source§impl NodegroupUpdateConfigBuilder
impl NodegroupUpdateConfigBuilder
The maximum number of nodes unavailable at once during a version update. Nodes are updated in parallel. This value or maxUnavailablePercentage
is required to have a value.The maximum number is 100.
The maximum number of nodes unavailable at once during a version update. Nodes are updated in parallel. This value or maxUnavailablePercentage
is required to have a value.The maximum number is 100.
The maximum number of nodes unavailable at once during a version update. Nodes are 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 are updated in parallel, up to 100 nodes at once. This value or maxUnavailable
is required to have a value.
The maximum percentage of nodes unavailable during a version update. This percentage of nodes are updated in parallel, up to 100 nodes at once. This value or maxUnavailable
is required to have a value.
The maximum percentage of nodes unavailable during a version update. This percentage of nodes are updated in parallel, up to 100 nodes at once. This value or maxUnavailable
is required to have a value.
sourcepub fn build(self) -> NodegroupUpdateConfig
pub fn build(self) -> NodegroupUpdateConfig
Consumes the builder and constructs a NodegroupUpdateConfig
.
Trait Implementations§
source§impl Clone for NodegroupUpdateConfigBuilder
impl Clone for NodegroupUpdateConfigBuilder
source§fn clone(&self) -> NodegroupUpdateConfigBuilder
fn clone(&self) -> NodegroupUpdateConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NodegroupUpdateConfigBuilder
impl Debug for NodegroupUpdateConfigBuilder
source§impl Default for NodegroupUpdateConfigBuilder
impl Default for NodegroupUpdateConfigBuilder
source§fn default() -> NodegroupUpdateConfigBuilder
fn default() -> NodegroupUpdateConfigBuilder
source§impl PartialEq for NodegroupUpdateConfigBuilder
impl PartialEq for NodegroupUpdateConfigBuilder
source§fn eq(&self, other: &NodegroupUpdateConfigBuilder) -> bool
fn eq(&self, other: &NodegroupUpdateConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NodegroupUpdateConfigBuilder
Auto Trait Implementations§
impl Freeze for NodegroupUpdateConfigBuilder
impl RefUnwindSafe for NodegroupUpdateConfigBuilder
impl Send for NodegroupUpdateConfigBuilder
impl Sync for NodegroupUpdateConfigBuilder
impl Unpin for NodegroupUpdateConfigBuilder
impl UnwindSafe for NodegroupUpdateConfigBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more