Struct aws_sdk_elasticsearch::operation::describe_domain_auto_tunes::builders::DescribeDomainAutoTunesInputBuilder
source · #[non_exhaustive]pub struct DescribeDomainAutoTunesInputBuilder { /* private fields */ }
Expand description
A builder for DescribeDomainAutoTunesInput
.
Implementations§
source§impl DescribeDomainAutoTunesInputBuilder
impl DescribeDomainAutoTunesInputBuilder
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
Specifies the domain name for which you want Auto-Tune action details.
This field is required.sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
Specifies the domain name for which you want Auto-Tune action details.
sourcepub fn get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
Specifies the domain name for which you want Auto-Tune action details.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Set this value to limit the number of results returned. If not specified, defaults to 100.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Set this value to limit the number of results returned. If not specified, defaults to 100.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
Set this value to limit the number of results returned. If not specified, defaults to 100.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
sourcepub fn build(self) -> Result<DescribeDomainAutoTunesInput, BuildError>
pub fn build(self) -> Result<DescribeDomainAutoTunesInput, BuildError>
Consumes the builder and constructs a DescribeDomainAutoTunesInput
.
source§impl DescribeDomainAutoTunesInputBuilder
impl DescribeDomainAutoTunesInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeDomainAutoTunesOutput, SdkError<DescribeDomainAutoTunesError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeDomainAutoTunesOutput, SdkError<DescribeDomainAutoTunesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeDomainAutoTunesInputBuilder
impl Clone for DescribeDomainAutoTunesInputBuilder
source§fn clone(&self) -> DescribeDomainAutoTunesInputBuilder
fn clone(&self) -> DescribeDomainAutoTunesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeDomainAutoTunesInputBuilder
impl Default for DescribeDomainAutoTunesInputBuilder
source§fn default() -> DescribeDomainAutoTunesInputBuilder
fn default() -> DescribeDomainAutoTunesInputBuilder
source§impl PartialEq for DescribeDomainAutoTunesInputBuilder
impl PartialEq for DescribeDomainAutoTunesInputBuilder
source§fn eq(&self, other: &DescribeDomainAutoTunesInputBuilder) -> bool
fn eq(&self, other: &DescribeDomainAutoTunesInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeDomainAutoTunesInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeDomainAutoTunesInputBuilder
impl RefUnwindSafe for DescribeDomainAutoTunesInputBuilder
impl Send for DescribeDomainAutoTunesInputBuilder
impl Sync for DescribeDomainAutoTunesInputBuilder
impl Unpin for DescribeDomainAutoTunesInputBuilder
impl UnwindSafe for DescribeDomainAutoTunesInputBuilder
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