#[non_exhaustive]pub struct ListClustersV2OutputBuilder { /* private fields */ }
Expand description
A builder for ListClustersV2Output
.
Implementations§
source§impl ListClustersV2OutputBuilder
impl ListClustersV2OutputBuilder
sourcepub fn cluster_info_list(self, input: Cluster) -> Self
pub fn cluster_info_list(self, input: Cluster) -> Self
Appends an item to cluster_info_list
.
To override the contents of this collection use set_cluster_info_list
.
Information on each of the MSK clusters in the response.
sourcepub fn set_cluster_info_list(self, input: Option<Vec<Cluster>>) -> Self
pub fn set_cluster_info_list(self, input: Option<Vec<Cluster>>) -> Self
Information on each of the MSK clusters in the response.
sourcepub fn get_cluster_info_list(&self) -> &Option<Vec<Cluster>>
pub fn get_cluster_info_list(&self) -> &Option<Vec<Cluster>>
Information on each of the MSK clusters in the response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response. To get another batch of clusters, provide this token in your next request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response. To get another batch of clusters, provide this token in your next request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response. To get another batch of clusters, provide this token in your next request.
sourcepub fn build(self) -> ListClustersV2Output
pub fn build(self) -> ListClustersV2Output
Consumes the builder and constructs a ListClustersV2Output
.
Trait Implementations§
source§impl Clone for ListClustersV2OutputBuilder
impl Clone for ListClustersV2OutputBuilder
source§fn clone(&self) -> ListClustersV2OutputBuilder
fn clone(&self) -> ListClustersV2OutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListClustersV2OutputBuilder
impl Debug for ListClustersV2OutputBuilder
source§impl Default for ListClustersV2OutputBuilder
impl Default for ListClustersV2OutputBuilder
source§fn default() -> ListClustersV2OutputBuilder
fn default() -> ListClustersV2OutputBuilder
source§impl PartialEq for ListClustersV2OutputBuilder
impl PartialEq for ListClustersV2OutputBuilder
source§fn eq(&self, other: &ListClustersV2OutputBuilder) -> bool
fn eq(&self, other: &ListClustersV2OutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListClustersV2OutputBuilder
Auto Trait Implementations§
impl Freeze for ListClustersV2OutputBuilder
impl RefUnwindSafe for ListClustersV2OutputBuilder
impl Send for ListClustersV2OutputBuilder
impl Sync for ListClustersV2OutputBuilder
impl Unpin for ListClustersV2OutputBuilder
impl UnwindSafe for ListClustersV2OutputBuilder
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