Struct aws_sdk_mq::operation::list_configurations::builders::ListConfigurationsOutputBuilder
source · #[non_exhaustive]pub struct ListConfigurationsOutputBuilder { /* private fields */ }Expand description
A builder for ListConfigurationsOutput.
Implementations§
source§impl ListConfigurationsOutputBuilder
impl ListConfigurationsOutputBuilder
sourcepub fn configurations(self, input: Configuration) -> Self
pub fn configurations(self, input: Configuration) -> Self
Appends an item to configurations.
To override the contents of this collection use set_configurations.
The list of all revisions for the specified configuration.
sourcepub fn set_configurations(self, input: Option<Vec<Configuration>>) -> Self
pub fn set_configurations(self, input: Option<Vec<Configuration>>) -> Self
The list of all revisions for the specified configuration.
sourcepub fn get_configurations(&self) -> &Option<Vec<Configuration>>
pub fn get_configurations(&self) -> &Option<Vec<Configuration>>
The list of all revisions for the specified configuration.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of configurations that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of configurations that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of configurations that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.
sourcepub fn build(self) -> ListConfigurationsOutput
pub fn build(self) -> ListConfigurationsOutput
Consumes the builder and constructs a ListConfigurationsOutput.
Trait Implementations§
source§impl Clone for ListConfigurationsOutputBuilder
impl Clone for ListConfigurationsOutputBuilder
source§fn clone(&self) -> ListConfigurationsOutputBuilder
fn clone(&self) -> ListConfigurationsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListConfigurationsOutputBuilder
impl Default for ListConfigurationsOutputBuilder
source§fn default() -> ListConfigurationsOutputBuilder
fn default() -> ListConfigurationsOutputBuilder
source§impl PartialEq for ListConfigurationsOutputBuilder
impl PartialEq for ListConfigurationsOutputBuilder
source§fn eq(&self, other: &ListConfigurationsOutputBuilder) -> bool
fn eq(&self, other: &ListConfigurationsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListConfigurationsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListConfigurationsOutputBuilder
impl RefUnwindSafe for ListConfigurationsOutputBuilder
impl Send for ListConfigurationsOutputBuilder
impl Sync for ListConfigurationsOutputBuilder
impl Unpin for ListConfigurationsOutputBuilder
impl UnwindSafe for ListConfigurationsOutputBuilder
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