Struct aws_sdk_elasticsearch::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressInputBuilder
source · #[non_exhaustive]pub struct DescribeDomainChangeProgressInputBuilder { /* private fields */ }
Expand description
A builder for DescribeDomainChangeProgressInput
.
Implementations§
source§impl DescribeDomainChangeProgressInputBuilder
impl DescribeDomainChangeProgressInputBuilder
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
The domain you want to get the progress information about.
This field is required.sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The domain you want to get the progress information about.
sourcepub fn get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
The domain you want to get the progress information about.
sourcepub fn change_id(self, input: impl Into<String>) -> Self
pub fn change_id(self, input: impl Into<String>) -> Self
The specific change ID for which you want to get progress information. This is an optional parameter. If omitted, the service returns information about the most recent configuration change.
sourcepub fn set_change_id(self, input: Option<String>) -> Self
pub fn set_change_id(self, input: Option<String>) -> Self
The specific change ID for which you want to get progress information. This is an optional parameter. If omitted, the service returns information about the most recent configuration change.
sourcepub fn get_change_id(&self) -> &Option<String>
pub fn get_change_id(&self) -> &Option<String>
The specific change ID for which you want to get progress information. This is an optional parameter. If omitted, the service returns information about the most recent configuration change.
sourcepub fn build(self) -> Result<DescribeDomainChangeProgressInput, BuildError>
pub fn build(self) -> Result<DescribeDomainChangeProgressInput, BuildError>
Consumes the builder and constructs a DescribeDomainChangeProgressInput
.
source§impl DescribeDomainChangeProgressInputBuilder
impl DescribeDomainChangeProgressInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeDomainChangeProgressOutput, SdkError<DescribeDomainChangeProgressError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeDomainChangeProgressOutput, SdkError<DescribeDomainChangeProgressError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeDomainChangeProgressInputBuilder
impl Clone for DescribeDomainChangeProgressInputBuilder
source§fn clone(&self) -> DescribeDomainChangeProgressInputBuilder
fn clone(&self) -> DescribeDomainChangeProgressInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeDomainChangeProgressInputBuilder
impl Default for DescribeDomainChangeProgressInputBuilder
source§fn default() -> DescribeDomainChangeProgressInputBuilder
fn default() -> DescribeDomainChangeProgressInputBuilder
source§impl PartialEq for DescribeDomainChangeProgressInputBuilder
impl PartialEq for DescribeDomainChangeProgressInputBuilder
source§fn eq(&self, other: &DescribeDomainChangeProgressInputBuilder) -> bool
fn eq(&self, other: &DescribeDomainChangeProgressInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeDomainChangeProgressInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeDomainChangeProgressInputBuilder
impl RefUnwindSafe for DescribeDomainChangeProgressInputBuilder
impl Send for DescribeDomainChangeProgressInputBuilder
impl Sync for DescribeDomainChangeProgressInputBuilder
impl Unpin for DescribeDomainChangeProgressInputBuilder
impl UnwindSafe for DescribeDomainChangeProgressInputBuilder
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