Struct aws_sdk_elasticsearch::operation::describe_domain_auto_tunes::builders::DescribeDomainAutoTunesOutputBuilder
source · #[non_exhaustive]pub struct DescribeDomainAutoTunesOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeDomainAutoTunesOutput
.
Implementations§
source§impl DescribeDomainAutoTunesOutputBuilder
impl DescribeDomainAutoTunesOutputBuilder
sourcepub fn auto_tunes(self, input: AutoTune) -> Self
pub fn auto_tunes(self, input: AutoTune) -> Self
Appends an item to auto_tunes
.
To override the contents of this collection use set_auto_tunes
.
Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.
sourcepub fn set_auto_tunes(self, input: Option<Vec<AutoTune>>) -> Self
pub fn set_auto_tunes(self, input: Option<Vec<AutoTune>>) -> Self
Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.
sourcepub fn get_auto_tunes(&self) -> &Option<Vec<AutoTune>>
pub fn get_auto_tunes(&self) -> &Option<Vec<AutoTune>>
Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Specifies an identifier to allow retrieval of paginated results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Specifies an identifier to allow retrieval of paginated results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Specifies an identifier to allow retrieval of paginated results.
sourcepub fn build(self) -> DescribeDomainAutoTunesOutput
pub fn build(self) -> DescribeDomainAutoTunesOutput
Consumes the builder and constructs a DescribeDomainAutoTunesOutput
.
Trait Implementations§
source§impl Clone for DescribeDomainAutoTunesOutputBuilder
impl Clone for DescribeDomainAutoTunesOutputBuilder
source§fn clone(&self) -> DescribeDomainAutoTunesOutputBuilder
fn clone(&self) -> DescribeDomainAutoTunesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeDomainAutoTunesOutputBuilder
impl Default for DescribeDomainAutoTunesOutputBuilder
source§fn default() -> DescribeDomainAutoTunesOutputBuilder
fn default() -> DescribeDomainAutoTunesOutputBuilder
source§impl PartialEq for DescribeDomainAutoTunesOutputBuilder
impl PartialEq for DescribeDomainAutoTunesOutputBuilder
source§fn eq(&self, other: &DescribeDomainAutoTunesOutputBuilder) -> bool
fn eq(&self, other: &DescribeDomainAutoTunesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeDomainAutoTunesOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeDomainAutoTunesOutputBuilder
impl RefUnwindSafe for DescribeDomainAutoTunesOutputBuilder
impl Send for DescribeDomainAutoTunesOutputBuilder
impl Sync for DescribeDomainAutoTunesOutputBuilder
impl Unpin for DescribeDomainAutoTunesOutputBuilder
impl UnwindSafe for DescribeDomainAutoTunesOutputBuilder
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> 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