Struct aws_sdk_opensearch::model::DryRunProgressStatus
source · #[non_exhaustive]pub struct DryRunProgressStatus { /* private fields */ }
Expand description
Information about the progress of a pre-upgrade dry run analysis.
Implementations§
source§impl DryRunProgressStatus
impl DryRunProgressStatus
sourcepub fn dry_run_id(&self) -> Option<&str>
pub fn dry_run_id(&self) -> Option<&str>
The unique identifier of the dry run.
sourcepub fn dry_run_status(&self) -> Option<&str>
pub fn dry_run_status(&self) -> Option<&str>
The current status of the dry run.
sourcepub fn creation_date(&self) -> Option<&str>
pub fn creation_date(&self) -> Option<&str>
The timestamp when the dry run was initiated.
sourcepub fn update_date(&self) -> Option<&str>
pub fn update_date(&self) -> Option<&str>
The timestamp when the dry run was last updated.
sourcepub fn validation_failures(&self) -> Option<&[ValidationFailure]>
pub fn validation_failures(&self) -> Option<&[ValidationFailure]>
Any validation failures that occurred as a result of the dry run.
source§impl DryRunProgressStatus
impl DryRunProgressStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DryRunProgressStatus
.
Trait Implementations§
source§impl Clone for DryRunProgressStatus
impl Clone for DryRunProgressStatus
source§fn clone(&self) -> DryRunProgressStatus
fn clone(&self) -> DryRunProgressStatus
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 DryRunProgressStatus
impl Debug for DryRunProgressStatus
source§impl PartialEq<DryRunProgressStatus> for DryRunProgressStatus
impl PartialEq<DryRunProgressStatus> for DryRunProgressStatus
source§fn eq(&self, other: &DryRunProgressStatus) -> bool
fn eq(&self, other: &DryRunProgressStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.