Struct aws_sdk_elasticsearch::operation::cancel_domain_config_change::builders::CancelDomainConfigChangeInputBuilder
source · #[non_exhaustive]pub struct CancelDomainConfigChangeInputBuilder { /* private fields */ }
Expand description
A builder for CancelDomainConfigChangeInput
.
Implementations§
source§impl CancelDomainConfigChangeInputBuilder
impl CancelDomainConfigChangeInputBuilder
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
Name of the OpenSearch Service domain configuration request to cancel.
This field is required.sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
Name of the OpenSearch Service domain configuration request to cancel.
sourcepub fn get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
Name of the OpenSearch Service domain configuration request to cancel.
sourcepub fn dry_run(self, input: bool) -> Self
pub fn dry_run(self, input: bool) -> Self
When set to True, returns the list of change IDs and properties that will be cancelled without actually cancelling the change.
sourcepub fn set_dry_run(self, input: Option<bool>) -> Self
pub fn set_dry_run(self, input: Option<bool>) -> Self
When set to True, returns the list of change IDs and properties that will be cancelled without actually cancelling the change.
sourcepub fn get_dry_run(&self) -> &Option<bool>
pub fn get_dry_run(&self) -> &Option<bool>
When set to True, returns the list of change IDs and properties that will be cancelled without actually cancelling the change.
sourcepub fn build(self) -> Result<CancelDomainConfigChangeInput, BuildError>
pub fn build(self) -> Result<CancelDomainConfigChangeInput, BuildError>
Consumes the builder and constructs a CancelDomainConfigChangeInput
.
source§impl CancelDomainConfigChangeInputBuilder
impl CancelDomainConfigChangeInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CancelDomainConfigChangeOutput, SdkError<CancelDomainConfigChangeError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CancelDomainConfigChangeOutput, SdkError<CancelDomainConfigChangeError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CancelDomainConfigChangeInputBuilder
impl Clone for CancelDomainConfigChangeInputBuilder
source§fn clone(&self) -> CancelDomainConfigChangeInputBuilder
fn clone(&self) -> CancelDomainConfigChangeInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CancelDomainConfigChangeInputBuilder
impl Default for CancelDomainConfigChangeInputBuilder
source§fn default() -> CancelDomainConfigChangeInputBuilder
fn default() -> CancelDomainConfigChangeInputBuilder
source§impl PartialEq for CancelDomainConfigChangeInputBuilder
impl PartialEq for CancelDomainConfigChangeInputBuilder
source§fn eq(&self, other: &CancelDomainConfigChangeInputBuilder) -> bool
fn eq(&self, other: &CancelDomainConfigChangeInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CancelDomainConfigChangeInputBuilder
Auto Trait Implementations§
impl Freeze for CancelDomainConfigChangeInputBuilder
impl RefUnwindSafe for CancelDomainConfigChangeInputBuilder
impl Send for CancelDomainConfigChangeInputBuilder
impl Sync for CancelDomainConfigChangeInputBuilder
impl Unpin for CancelDomainConfigChangeInputBuilder
impl UnwindSafe for CancelDomainConfigChangeInputBuilder
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
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)
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>
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>
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 more