Struct aws_sdk_eks::operation::describe_update::DescribeUpdateInput
source · #[non_exhaustive]pub struct DescribeUpdateInput {
pub name: Option<String>,
pub update_id: Option<String>,
pub nodegroup_name: Option<String>,
pub addon_name: Option<String>,
}Expand description
Describes an update request.
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.name: Option<String>The name of the Amazon EKS cluster associated with the update.
update_id: Option<String>The ID of the update to describe.
nodegroup_name: Option<String>The name of the Amazon EKS node group associated with the update. This parameter is required if the update is a node group update.
addon_name: Option<String>The name of the add-on. The name must match one of the names returned by ListAddons . This parameter is required if the update is an add-on update.
Implementations§
source§impl DescribeUpdateInput
impl DescribeUpdateInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the Amazon EKS cluster associated with the update.
sourcepub fn nodegroup_name(&self) -> Option<&str>
pub fn nodegroup_name(&self) -> Option<&str>
The name of the Amazon EKS node group associated with the update. This parameter is required if the update is a node group update.
sourcepub fn addon_name(&self) -> Option<&str>
pub fn addon_name(&self) -> Option<&str>
The name of the add-on. The name must match one of the names returned by ListAddons . This parameter is required if the update is an add-on update.
source§impl DescribeUpdateInput
impl DescribeUpdateInput
sourcepub fn builder() -> DescribeUpdateInputBuilder
pub fn builder() -> DescribeUpdateInputBuilder
Creates a new builder-style object to manufacture DescribeUpdateInput.
Trait Implementations§
source§impl Clone for DescribeUpdateInput
impl Clone for DescribeUpdateInput
source§fn clone(&self) -> DescribeUpdateInput
fn clone(&self) -> DescribeUpdateInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeUpdateInput
impl Debug for DescribeUpdateInput
source§impl PartialEq for DescribeUpdateInput
impl PartialEq for DescribeUpdateInput
source§fn eq(&self, other: &DescribeUpdateInput) -> bool
fn eq(&self, other: &DescribeUpdateInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeUpdateInput
Auto Trait Implementations§
impl Freeze for DescribeUpdateInput
impl RefUnwindSafe for DescribeUpdateInput
impl Send for DescribeUpdateInput
impl Sync for DescribeUpdateInput
impl Unpin for DescribeUpdateInput
impl UnwindSafe for DescribeUpdateInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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