Struct aws_sdk_elasticsearch::types::UpgradeHistory
source · #[non_exhaustive]pub struct UpgradeHistory { /* private fields */ }
Expand description
History of the last 10 Upgrades and Upgrade Eligibility Checks.
Implementations§
source§impl 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
source§impl UpgradeHistory
impl UpgradeHistory
sourcepub fn builder() -> UpgradeHistoryBuilder
pub fn builder() -> UpgradeHistoryBuilder
Creates a new builder-style object to manufacture UpgradeHistory
.
Trait Implementations§
source§impl Clone for UpgradeHistory
impl Clone for UpgradeHistory
source§fn clone(&self) -> UpgradeHistory
fn clone(&self) -> UpgradeHistory
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpgradeHistory
impl Debug for UpgradeHistory
source§impl PartialEq<UpgradeHistory> for UpgradeHistory
impl PartialEq<UpgradeHistory> for UpgradeHistory
source§fn 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 ==
.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§
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