Struct aws_sdk_elasticsearch::model::UpgradeHistory
source · [−]#[non_exhaustive]pub struct UpgradeHistory { /* private fields */ }
Expand description
History of the last 10 Upgrades and Upgrade Eligibility Checks.
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 moresourceimpl 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
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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