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
sourceimpl Update
impl Update
sourcepub fn status(&self) -> Option<&UpdateStatus>
pub fn status(&self) -> Option<&UpdateStatus>
The current status of the update.
sourcepub fn type(&self) -> Option<&UpdateType>
pub fn type(&self) -> Option<&UpdateType>
The type of the update.
sourcepub fn params(&self) -> Option<&[UpdateParam]>
pub fn params(&self) -> Option<&[UpdateParam]>
A key-value map that contains the parameters associated with the update.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The Unix epoch timestamp in seconds for when the update was created.
Trait Implementations
impl StructuralPartialEq for Update
Auto Trait Implementations
impl RefUnwindSafe for Update
impl Send for Update
impl Sync for Update
impl Unpin for Update
impl UnwindSafe for Update
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more