[][src]Struct rusoto_es::UpgradeHistory

pub struct UpgradeHistory {
    pub start_timestamp: Option<f64>,
    pub steps_list: Option<Vec<UpgradeStepItem>>,
    pub upgrade_name: Option<String>,
    pub upgrade_status: Option<String>,
}

History of the last 10 Upgrades and Upgrade Eligibility Checks.

Fields

start_timestamp: Option<f64>

UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.

steps_list: Option<Vec<UpgradeStepItem>>

A list of UpgradeStepItem s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check.

upgrade_name: Option<String>

A string that describes the update briefly

upgrade_status: Option<String>

The overall status of the update. The status can take one of the following values:

  • In Progress
  • Succeeded
  • Succeeded with Issues
  • Failed

Trait Implementations

impl Clone for UpgradeHistory[src]

impl Debug for UpgradeHistory[src]

impl Default for UpgradeHistory[src]

impl<'de> Deserialize<'de> for UpgradeHistory[src]

impl PartialEq<UpgradeHistory> for UpgradeHistory[src]

impl StructuralPartialEq for UpgradeHistory[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.