Struct aws_sdk_elasticsearch::model::UpgradeHistory [−][src]
#[non_exhaustive]pub struct UpgradeHistory {
pub upgrade_name: Option<String>,
pub start_timestamp: Option<DateTime>,
pub upgrade_status: Option<UpgradeStatus>,
pub steps_list: Option<Vec<UpgradeStepItem>>,
}
Expand description
History of the last 10 Upgrades and Upgrade Eligibility Checks.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.upgrade_name: Option<String>
A string that describes the update briefly
start_timestamp: Option<DateTime>
UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.
upgrade_status: Option<UpgradeStatus>
The overall status of the update. The status can take one of the following values:
- In Progress
- Succeeded
- Succeeded with Issues
- Failed
steps_list: Option<Vec<UpgradeStepItem>>
A list of
s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check. UpgradeStepItem
Implementations
A string that describes the update briefly
UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.
The overall status of the update. The status can take one of the following values:
- In Progress
- Succeeded
- Succeeded with Issues
- Failed
A list of
s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check. UpgradeStepItem
Creates a new builder-style object to manufacture UpgradeHistory
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more