Struct aws_sdk_eks::input::UpdateNodegroupConfigInput
source · #[non_exhaustive]pub struct UpdateNodegroupConfigInput { /* private fields */ }
Implementations§
source§impl UpdateNodegroupConfigInput
impl UpdateNodegroupConfigInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateNodegroupConfig, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateNodegroupConfig, AwsResponseRetryClassifier>, 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
.
source§impl 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§
source§impl Clone for UpdateNodegroupConfigInput
impl Clone for UpdateNodegroupConfigInput
source§fn clone(&self) -> UpdateNodegroupConfigInput
fn clone(&self) -> UpdateNodegroupConfigInput
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 UpdateNodegroupConfigInput
impl Debug for UpdateNodegroupConfigInput
source§impl PartialEq<UpdateNodegroupConfigInput> for UpdateNodegroupConfigInput
impl PartialEq<UpdateNodegroupConfigInput> for UpdateNodegroupConfigInput
source§fn 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 ==
.