#[non_exhaustive]pub struct ListClustersOutputBuilder { /* private fields */ }
Expand description
A builder for ListClustersOutput
.
Implementations§
source§impl ListClustersOutputBuilder
impl ListClustersOutputBuilder
sourcepub fn cluster_arns(self, input: impl Into<String>) -> Self
pub fn cluster_arns(self, input: impl Into<String>) -> Self
Appends an item to cluster_arns
.
To override the contents of this collection use set_cluster_arns
.
The list of full Amazon Resource Name (ARN) entries for each cluster that's associated with your account.
sourcepub fn set_cluster_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_cluster_arns(self, input: Option<Vec<String>>) -> Self
The list of full Amazon Resource Name (ARN) entries for each cluster that's associated with your account.
sourcepub fn get_cluster_arns(&self) -> &Option<Vec<String>>
pub fn get_cluster_arns(&self) -> &Option<Vec<String>>
The list of full Amazon Resource Name (ARN) entries for each cluster that's associated with your account.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The nextToken
value to include in a future ListClusters
request. When the results of a ListClusters
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The nextToken
value to include in a future ListClusters
request. When the results of a ListClusters
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The nextToken
value to include in a future ListClusters
request. When the results of a ListClusters
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn build(self) -> ListClustersOutput
pub fn build(self) -> ListClustersOutput
Consumes the builder and constructs a ListClustersOutput
.
Trait Implementations§
source§impl Clone for ListClustersOutputBuilder
impl Clone for ListClustersOutputBuilder
source§fn clone(&self) -> ListClustersOutputBuilder
fn clone(&self) -> ListClustersOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListClustersOutputBuilder
impl Debug for ListClustersOutputBuilder
source§impl Default for ListClustersOutputBuilder
impl Default for ListClustersOutputBuilder
source§fn default() -> ListClustersOutputBuilder
fn default() -> ListClustersOutputBuilder
source§impl PartialEq for ListClustersOutputBuilder
impl PartialEq for ListClustersOutputBuilder
source§fn eq(&self, other: &ListClustersOutputBuilder) -> bool
fn eq(&self, other: &ListClustersOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListClustersOutputBuilder
Auto Trait Implementations§
impl Freeze for ListClustersOutputBuilder
impl RefUnwindSafe for ListClustersOutputBuilder
impl Send for ListClustersOutputBuilder
impl Sync for ListClustersOutputBuilder
impl Unpin for ListClustersOutputBuilder
impl UnwindSafe for ListClustersOutputBuilder
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