Struct aws_sdk_eks::types::builders::UpdateBuilder
source · #[non_exhaustive]pub struct UpdateBuilder { /* private fields */ }
Expand description
A builder for Update
.
Implementations§
source§impl UpdateBuilder
impl UpdateBuilder
sourcepub fn status(self, input: UpdateStatus) -> Self
pub fn status(self, input: UpdateStatus) -> Self
The current status of the update.
sourcepub fn set_status(self, input: Option<UpdateStatus>) -> Self
pub fn set_status(self, input: Option<UpdateStatus>) -> Self
The current status of the update.
sourcepub fn get_status(&self) -> &Option<UpdateStatus>
pub fn get_status(&self) -> &Option<UpdateStatus>
The current status of the update.
sourcepub fn type(self, input: UpdateType) -> Self
pub fn type(self, input: UpdateType) -> Self
The type of the update.
sourcepub fn set_type(self, input: Option<UpdateType>) -> Self
pub fn set_type(self, input: Option<UpdateType>) -> Self
The type of the update.
sourcepub fn get_type(&self) -> &Option<UpdateType>
pub fn get_type(&self) -> &Option<UpdateType>
The type of the update.
sourcepub fn params(self, input: UpdateParam) -> Self
pub fn params(self, input: UpdateParam) -> Self
Appends an item to params
.
To override the contents of this collection use set_params
.
A key-value map that contains the parameters associated with the update.
sourcepub fn set_params(self, input: Option<Vec<UpdateParam>>) -> Self
pub fn set_params(self, input: Option<Vec<UpdateParam>>) -> Self
A key-value map that contains the parameters associated with the update.
sourcepub fn get_params(&self) -> &Option<Vec<UpdateParam>>
pub fn get_params(&self) -> &Option<Vec<UpdateParam>>
A key-value map that contains the parameters associated with the update.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The Unix epoch timestamp at object creation.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The Unix epoch timestamp at object creation.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The Unix epoch timestamp at object creation.
sourcepub fn errors(self, input: ErrorDetail) -> Self
pub fn errors(self, input: ErrorDetail) -> Self
Appends an item to errors
.
To override the contents of this collection use set_errors
.
Any errors associated with a Failed
update.
sourcepub fn set_errors(self, input: Option<Vec<ErrorDetail>>) -> Self
pub fn set_errors(self, input: Option<Vec<ErrorDetail>>) -> Self
Any errors associated with a Failed
update.
sourcepub fn get_errors(&self) -> &Option<Vec<ErrorDetail>>
pub fn get_errors(&self) -> &Option<Vec<ErrorDetail>>
Any errors associated with a Failed
update.
Trait Implementations§
source§impl Clone for UpdateBuilder
impl Clone for UpdateBuilder
source§fn clone(&self) -> UpdateBuilder
fn clone(&self) -> UpdateBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateBuilder
impl Debug for UpdateBuilder
source§impl Default for UpdateBuilder
impl Default for UpdateBuilder
source§fn default() -> UpdateBuilder
fn default() -> UpdateBuilder
source§impl PartialEq for UpdateBuilder
impl PartialEq for UpdateBuilder
source§fn eq(&self, other: &UpdateBuilder) -> bool
fn eq(&self, other: &UpdateBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateBuilder
Auto Trait Implementations§
impl Freeze for UpdateBuilder
impl RefUnwindSafe for UpdateBuilder
impl Send for UpdateBuilder
impl Sync for UpdateBuilder
impl Unpin for UpdateBuilder
impl UnwindSafe for UpdateBuilder
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