Struct aws_sdk_elasticsearch::model::UpgradeHistory
source · [−]#[non_exhaustive]pub struct UpgradeHistory {
pub upgrade_name: Option<String>,
pub start_timestamp: Option<DateTime>,
pub upgrade_status: Option<UpgradeStatus>,
pub steps_list: Option<Vec<UpgradeStepItem>>,
}
Expand description
History of the last 10 Upgrades and Upgrade Eligibility Checks.
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.upgrade_name: Option<String>
A string that describes the update briefly
start_timestamp: Option<DateTime>
UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.
upgrade_status: Option<UpgradeStatus>
The overall status of the update. The status can take one of the following values:
- In Progress
- Succeeded
- Succeeded with Issues
- Failed
steps_list: Option<Vec<UpgradeStepItem>>
A list of
s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check. UpgradeStepItem
Implementations
sourceimpl UpgradeHistory
impl UpgradeHistory
sourcepub fn upgrade_name(&self) -> Option<&str>
pub fn upgrade_name(&self) -> Option<&str>
A string that describes the update briefly
sourcepub fn start_timestamp(&self) -> Option<&DateTime>
pub fn start_timestamp(&self) -> Option<&DateTime>
UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.
sourcepub fn upgrade_status(&self) -> Option<&UpgradeStatus>
pub fn upgrade_status(&self) -> Option<&UpgradeStatus>
The overall status of the update. The status can take one of the following values:
- In Progress
- Succeeded
- Succeeded with Issues
- Failed
sourcepub fn steps_list(&self) -> Option<&[UpgradeStepItem]>
pub fn steps_list(&self) -> Option<&[UpgradeStepItem]>
A list of
s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check. UpgradeStepItem
sourceimpl UpgradeHistory
impl UpgradeHistory
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpgradeHistory
Trait Implementations
sourceimpl Clone for UpgradeHistory
impl Clone for UpgradeHistory
sourcefn clone(&self) -> UpgradeHistory
fn clone(&self) -> UpgradeHistory
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpgradeHistory
impl Debug for UpgradeHistory
sourceimpl PartialEq<UpgradeHistory> for UpgradeHistory
impl PartialEq<UpgradeHistory> for UpgradeHistory
sourcefn eq(&self, other: &UpgradeHistory) -> bool
fn eq(&self, other: &UpgradeHistory) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpgradeHistory) -> bool
fn ne(&self, other: &UpgradeHistory) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpgradeHistory
Auto Trait Implementations
impl RefUnwindSafe for UpgradeHistory
impl Send for UpgradeHistory
impl Sync for UpgradeHistory
impl Unpin for UpgradeHistory
impl UnwindSafe for UpgradeHistory
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