Struct aws_sdk_eks::model::Update
source · [−]#[non_exhaustive]pub struct Update {
pub id: Option<String>,
pub status: Option<UpdateStatus>,
pub type: Option<UpdateType>,
pub params: Option<Vec<UpdateParam>>,
pub created_at: Option<DateTime>,
pub errors: Option<Vec<ErrorDetail>>,
}
Expand description
An object representing an asynchronous update.
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.id: Option<String>
A UUID that is used to track the update.
status: Option<UpdateStatus>
The current status of the update.
type: Option<UpdateType>
The type of the update.
params: Option<Vec<UpdateParam>>
A key-value map that contains the parameters associated with the update.
created_at: Option<DateTime>
The Unix epoch timestamp in seconds for when the update was created.
errors: Option<Vec<ErrorDetail>>
Any errors associated with a Failed
update.
Implementations
The current status of the update.
The type of the update.
A key-value map that contains the parameters associated with the update.
The Unix epoch timestamp in seconds for when the update was created.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Update
impl UnwindSafe for Update
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more