Struct aws_sdk_opensearch::types::DryRunProgressStatus
source · #[non_exhaustive]pub struct DryRunProgressStatus {
pub dry_run_id: String,
pub dry_run_status: String,
pub creation_date: String,
pub update_date: String,
pub validation_failures: Option<Vec<ValidationFailure>>,
}
Expand description
Information about the progress of a pre-upgrade dry run analysis.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dry_run_id: String
The unique identifier of the dry run.
dry_run_status: String
The current status of the dry run.
creation_date: String
The timestamp when the dry run was initiated.
update_date: String
The timestamp when the dry run was last updated.
validation_failures: Option<Vec<ValidationFailure>>
Any validation failures that occurred as a result of the dry run.
Implementations§
source§impl DryRunProgressStatus
impl DryRunProgressStatus
sourcepub fn dry_run_id(&self) -> &str
pub fn dry_run_id(&self) -> &str
The unique identifier of the dry run.
sourcepub fn dry_run_status(&self) -> &str
pub fn dry_run_status(&self) -> &str
The current status of the dry run.
sourcepub fn creation_date(&self) -> &str
pub fn creation_date(&self) -> &str
The timestamp when the dry run was initiated.
sourcepub fn update_date(&self) -> &str
pub fn update_date(&self) -> &str
The timestamp when the dry run was last updated.
sourcepub fn validation_failures(&self) -> &[ValidationFailure]
pub fn validation_failures(&self) -> &[ValidationFailure]
Any validation failures that occurred as a result of the dry run.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .validation_failures.is_none()
.
source§impl DryRunProgressStatus
impl DryRunProgressStatus
sourcepub fn builder() -> DryRunProgressStatusBuilder
pub fn builder() -> DryRunProgressStatusBuilder
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 for DryRunProgressStatus
impl PartialEq 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 ==
.impl StructuralPartialEq for DryRunProgressStatus
Auto Trait Implementations§
impl Freeze for DryRunProgressStatus
impl RefUnwindSafe for DryRunProgressStatus
impl Send for DryRunProgressStatus
impl Sync for DryRunProgressStatus
impl Unpin for DryRunProgressStatus
impl UnwindSafe for DryRunProgressStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.