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 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 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 created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The Unix epoch timestamp in seconds for when the update was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The Unix epoch timestamp in seconds for when the update was created.
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.
Trait Implementations§
source§impl Clone for UpdateBuilder
impl Clone for UpdateBuilder
source§fn clone(&self) -> UpdateBuilder
fn clone(&self) -> UpdateBuilder
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 UpdateBuilder
impl Debug for UpdateBuilder
source§impl Default for UpdateBuilder
impl Default for UpdateBuilder
source§fn default() -> UpdateBuilder
fn default() -> UpdateBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateBuilder> for UpdateBuilder
impl PartialEq<UpdateBuilder> for UpdateBuilder
source§fn eq(&self, other: &UpdateBuilder) -> bool
fn eq(&self, other: &UpdateBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.