#[non_exhaustive]pub struct GetUpgradeStatusOutput { /* private fields */ }
Expand description
Container for response returned by
operation. GetUpgradeStatus
Implementations
sourceimpl GetUpgradeStatusOutput
impl GetUpgradeStatusOutput
sourcepub fn upgrade_step(&self) -> Option<&UpgradeStep>
pub fn upgrade_step(&self) -> Option<&UpgradeStep>
Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:
- PreUpgradeCheck
- Snapshot
- Upgrade
sourcepub fn step_status(&self) -> Option<&UpgradeStatus>
pub fn step_status(&self) -> Option<&UpgradeStatus>
One of 4 statuses that a step can go through returned as part of the
object. The status can take one of the following values: GetUpgradeStatusResponse
- In Progress
- Succeeded
- Succeeded with Issues
- Failed
sourcepub fn upgrade_name(&self) -> Option<&str>
pub fn upgrade_name(&self) -> Option<&str>
A string that describes the update briefly
sourceimpl GetUpgradeStatusOutput
impl GetUpgradeStatusOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetUpgradeStatusOutput
.
Trait Implementations
sourceimpl Clone for GetUpgradeStatusOutput
impl Clone for GetUpgradeStatusOutput
sourcefn clone(&self) -> GetUpgradeStatusOutput
fn clone(&self) -> GetUpgradeStatusOutput
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 GetUpgradeStatusOutput
impl Debug for GetUpgradeStatusOutput
sourceimpl PartialEq<GetUpgradeStatusOutput> for GetUpgradeStatusOutput
impl PartialEq<GetUpgradeStatusOutput> for GetUpgradeStatusOutput
sourcefn eq(&self, other: &GetUpgradeStatusOutput) -> bool
fn eq(&self, other: &GetUpgradeStatusOutput) -> bool
impl StructuralPartialEq for GetUpgradeStatusOutput
Auto Trait Implementations
impl RefUnwindSafe for GetUpgradeStatusOutput
impl Send for GetUpgradeStatusOutput
impl Sync for GetUpgradeStatusOutput
impl Unpin for GetUpgradeStatusOutput
impl UnwindSafe for GetUpgradeStatusOutput
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