Struct aws_sdk_eks::input::UpdateNodegroupConfigInput
source · [−]#[non_exhaustive]pub struct UpdateNodegroupConfigInput {
pub cluster_name: Option<String>,
pub nodegroup_name: Option<String>,
pub labels: Option<UpdateLabelsPayload>,
pub taints: Option<UpdateTaintsPayload>,
pub scaling_config: Option<NodegroupScalingConfig>,
pub update_config: Option<NodegroupUpdateConfig>,
pub client_request_token: Option<String>,
}
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.cluster_name: Option<String>
The name of the Amazon EKS cluster that the managed node group resides in.
nodegroup_name: Option<String>
The name of the managed node group to update.
labels: Option<UpdateLabelsPayload>
The Kubernetes labels to be applied to the nodes in the node group after the update.
taints: Option<UpdateTaintsPayload>
The Kubernetes taints to be applied to the nodes in the node group after the update. For more information, see Node taints on managed node groups.
scaling_config: Option<NodegroupScalingConfig>
The scaling configuration details for the Auto Scaling group after the update.
update_config: Option<NodegroupUpdateConfig>
The node group update configuration.
client_request_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Implementations
sourceimpl UpdateNodegroupConfigInput
impl UpdateNodegroupConfigInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateNodegroupConfig, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateNodegroupConfig, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateNodegroupConfig
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateNodegroupConfigInput
sourceimpl UpdateNodegroupConfigInput
impl UpdateNodegroupConfigInput
sourcepub fn cluster_name(&self) -> Option<&str>
pub fn cluster_name(&self) -> Option<&str>
The name of the Amazon EKS cluster that the managed node group resides in.
sourcepub fn nodegroup_name(&self) -> Option<&str>
pub fn nodegroup_name(&self) -> Option<&str>
The name of the managed node group to update.
sourcepub fn labels(&self) -> Option<&UpdateLabelsPayload>
pub fn labels(&self) -> Option<&UpdateLabelsPayload>
The Kubernetes labels to be applied to the nodes in the node group after the update.
sourcepub fn taints(&self) -> Option<&UpdateTaintsPayload>
pub fn taints(&self) -> Option<&UpdateTaintsPayload>
The Kubernetes taints to be applied to the nodes in the node group after the update. For more information, see Node taints on managed node groups.
sourcepub fn scaling_config(&self) -> Option<&NodegroupScalingConfig>
pub fn scaling_config(&self) -> Option<&NodegroupScalingConfig>
The scaling configuration details for the Auto Scaling group after the update.
sourcepub fn update_config(&self) -> Option<&NodegroupUpdateConfig>
pub fn update_config(&self) -> Option<&NodegroupUpdateConfig>
The node group update configuration.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Trait Implementations
sourceimpl Clone for UpdateNodegroupConfigInput
impl Clone for UpdateNodegroupConfigInput
sourcefn clone(&self) -> UpdateNodegroupConfigInput
fn clone(&self) -> UpdateNodegroupConfigInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateNodegroupConfigInput
impl Debug for UpdateNodegroupConfigInput
sourceimpl PartialEq<UpdateNodegroupConfigInput> for UpdateNodegroupConfigInput
impl PartialEq<UpdateNodegroupConfigInput> for UpdateNodegroupConfigInput
sourcefn eq(&self, other: &UpdateNodegroupConfigInput) -> bool
fn eq(&self, other: &UpdateNodegroupConfigInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateNodegroupConfigInput) -> bool
fn ne(&self, other: &UpdateNodegroupConfigInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateNodegroupConfigInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateNodegroupConfigInput
impl Send for UpdateNodegroupConfigInput
impl Sync for UpdateNodegroupConfigInput
impl Unpin for UpdateNodegroupConfigInput
impl UnwindSafe for UpdateNodegroupConfigInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more