Struct aws_sdk_opensearch::operation::describe_dry_run_progress::DescribeDryRunProgressInput
source · #[non_exhaustive]pub struct DescribeDryRunProgressInput {
pub domain_name: Option<String>,
pub dry_run_id: Option<String>,
pub load_dry_run_config: Option<bool>,
}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.domain_name: Option<String>The name of the domain.
dry_run_id: Option<String>The unique identifier of the dry run.
load_dry_run_config: Option<bool>Whether to include the configuration of the dry run in the response. The configuration specifies the updates that you're planning to make on the domain.
Implementations§
source§impl DescribeDryRunProgressInput
impl DescribeDryRunProgressInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The name of the domain.
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 load_dry_run_config(&self) -> Option<bool>
pub fn load_dry_run_config(&self) -> Option<bool>
Whether to include the configuration of the dry run in the response. The configuration specifies the updates that you're planning to make on the domain.
source§impl DescribeDryRunProgressInput
impl DescribeDryRunProgressInput
sourcepub fn builder() -> DescribeDryRunProgressInputBuilder
pub fn builder() -> DescribeDryRunProgressInputBuilder
Creates a new builder-style object to manufacture DescribeDryRunProgressInput.
Trait Implementations§
source§impl Clone for DescribeDryRunProgressInput
impl Clone for DescribeDryRunProgressInput
source§fn clone(&self) -> DescribeDryRunProgressInput
fn clone(&self) -> DescribeDryRunProgressInput
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 DescribeDryRunProgressInput
impl Debug for DescribeDryRunProgressInput
source§impl PartialEq for DescribeDryRunProgressInput
impl PartialEq for DescribeDryRunProgressInput
source§fn eq(&self, other: &DescribeDryRunProgressInput) -> bool
fn eq(&self, other: &DescribeDryRunProgressInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeDryRunProgressInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeDryRunProgressInput
impl Send for DescribeDryRunProgressInput
impl Sync for DescribeDryRunProgressInput
impl Unpin for DescribeDryRunProgressInput
impl UnwindSafe for DescribeDryRunProgressInput
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.