Struct aws_sdk_opensearch::operation::describe_dry_run_progress::DescribeDryRunProgressOutput
source · #[non_exhaustive]pub struct DescribeDryRunProgressOutput {
pub dry_run_progress_status: Option<DryRunProgressStatus>,
pub dry_run_config: Option<DomainStatus>,
pub dry_run_results: Option<DryRunResults>,
/* private fields */
}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_progress_status: Option<DryRunProgressStatus>The current status of the dry run, including any validation errors.
dry_run_config: Option<DomainStatus>Details about the changes you're planning to make on the domain.
dry_run_results: Option<DryRunResults>The results of the dry run.
Implementations§
source§impl DescribeDryRunProgressOutput
impl DescribeDryRunProgressOutput
sourcepub fn dry_run_progress_status(&self) -> Option<&DryRunProgressStatus>
pub fn dry_run_progress_status(&self) -> Option<&DryRunProgressStatus>
The current status of the dry run, including any validation errors.
sourcepub fn dry_run_config(&self) -> Option<&DomainStatus>
pub fn dry_run_config(&self) -> Option<&DomainStatus>
Details about the changes you're planning to make on the domain.
sourcepub fn dry_run_results(&self) -> Option<&DryRunResults>
pub fn dry_run_results(&self) -> Option<&DryRunResults>
The results of the dry run.
source§impl DescribeDryRunProgressOutput
impl DescribeDryRunProgressOutput
sourcepub fn builder() -> DescribeDryRunProgressOutputBuilder
pub fn builder() -> DescribeDryRunProgressOutputBuilder
Creates a new builder-style object to manufacture DescribeDryRunProgressOutput.
Trait Implementations§
source§impl Clone for DescribeDryRunProgressOutput
impl Clone for DescribeDryRunProgressOutput
source§fn clone(&self) -> DescribeDryRunProgressOutput
fn clone(&self) -> DescribeDryRunProgressOutput
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 DescribeDryRunProgressOutput
impl Debug for DescribeDryRunProgressOutput
source§impl PartialEq for DescribeDryRunProgressOutput
impl PartialEq for DescribeDryRunProgressOutput
source§fn eq(&self, other: &DescribeDryRunProgressOutput) -> bool
fn eq(&self, other: &DescribeDryRunProgressOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeDryRunProgressOutput
impl RequestId for DescribeDryRunProgressOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DescribeDryRunProgressOutput
Auto Trait Implementations§
impl Freeze for DescribeDryRunProgressOutput
impl RefUnwindSafe for DescribeDryRunProgressOutput
impl Send for DescribeDryRunProgressOutput
impl Sync for DescribeDryRunProgressOutput
impl Unpin for DescribeDryRunProgressOutput
impl UnwindSafe for DescribeDryRunProgressOutput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.