pub struct UpdateNodegroupConfigRequest {
pub client_request_token: Option<String>,
pub cluster_name: String,
pub labels: Option<UpdateLabelsPayload>,
pub nodegroup_name: String,
pub scaling_config: Option<NodegroupScalingConfig>,
}Fields§
§client_request_token: Option<String>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
cluster_name: StringThe name of the Amazon EKS cluster that the managed node group resides in.
labels: Option<UpdateLabelsPayload>The Kubernetes labels to be applied to the nodes in the node group after the update.
nodegroup_name: StringThe name of the managed node group to update.
scaling_config: Option<NodegroupScalingConfig>The scaling configuration details for the Auto Scaling group after the update.
Trait Implementations§
Source§impl Clone for UpdateNodegroupConfigRequest
impl Clone for UpdateNodegroupConfigRequest
Source§fn clone(&self) -> UpdateNodegroupConfigRequest
fn clone(&self) -> UpdateNodegroupConfigRequest
Returns a duplicate 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 UpdateNodegroupConfigRequest
impl Debug for UpdateNodegroupConfigRequest
Source§impl Default for UpdateNodegroupConfigRequest
impl Default for UpdateNodegroupConfigRequest
Source§fn default() -> UpdateNodegroupConfigRequest
fn default() -> UpdateNodegroupConfigRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateNodegroupConfigRequest
impl PartialEq for UpdateNodegroupConfigRequest
Source§fn eq(&self, other: &UpdateNodegroupConfigRequest) -> bool
fn eq(&self, other: &UpdateNodegroupConfigRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateNodegroupConfigRequest
Auto Trait Implementations§
impl Freeze for UpdateNodegroupConfigRequest
impl RefUnwindSafe for UpdateNodegroupConfigRequest
impl Send for UpdateNodegroupConfigRequest
impl Sync for UpdateNodegroupConfigRequest
impl Unpin for UpdateNodegroupConfigRequest
impl UnwindSafe for UpdateNodegroupConfigRequest
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
Mutably borrows from an owned value. Read more