[][src]Struct rusoto_es::UpgradeStepItem

pub struct UpgradeStepItem {
    pub issues: Option<Vec<String>>,
    pub progress_percent: Option<f64>,
    pub upgrade_step: Option<String>,
    pub upgrade_step_status: Option<String>,
}

Represents a single step of the Upgrade or Upgrade Eligibility Check workflow.

Fields

issues: Option<Vec<String>>

A list of strings containing detailed information about the errors encountered in a particular step.

progress_percent: Option<f64>

The Floating point value representing progress percentage of a particular step.

upgrade_step: Option<String>

Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:

  • PreUpgradeCheck
  • Snapshot
  • Upgrade

upgrade_step_status: Option<String>

The status of a particular step during an upgrade. The status can take one of the following values:

  • In Progress
  • Succeeded
  • Succeeded with Issues
  • Failed

Trait Implementations

impl Clone for UpgradeStepItem[src]

impl Debug for UpgradeStepItem[src]

impl Default for UpgradeStepItem[src]

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

impl PartialEq<UpgradeStepItem> for UpgradeStepItem[src]

impl StructuralPartialEq for UpgradeStepItem[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.