pub struct Update {
pub id: Option<String>,
pub status: Option<String>,
pub type: Option<String>,
pub errors: Vec<ErrorDetail>,
}Expand description
An object representing an asynchronous update.
AWS API: eks.v1.Update
Reference: https://docs.aws.amazon.com/eks/latest/APIReference//Update
§Coverage
4 of 6 fields included. Omitted fields:
params— not selected in manifestcreatedAt— not selected in manifest
Fields§
§id: Option<String>A UUID that is used to track the update.
status: Option<String>The current status of the update.
type: Option<String>The type of the update.
errors: Vec<ErrorDetail>Any errors associated with a Failed update.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Update
impl<'de> Deserialize<'de> for Update
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Update
impl RefUnwindSafe for Update
impl Send for Update
impl Sync for Update
impl Unpin for Update
impl UnsafeUnpin for Update
impl UnwindSafe for Update
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