Struct aws_sdk_kafka::operation::list_cluster_operations_v2::builders::ListClusterOperationsV2OutputBuilder
source · #[non_exhaustive]pub struct ListClusterOperationsV2OutputBuilder { /* private fields */ }Expand description
A builder for ListClusterOperationsV2Output.
Implementations§
source§impl ListClusterOperationsV2OutputBuilder
impl ListClusterOperationsV2OutputBuilder
sourcepub fn cluster_operation_info_list(
self,
input: ClusterOperationV2Summary,
) -> Self
pub fn cluster_operation_info_list( self, input: ClusterOperationV2Summary, ) -> Self
Appends an item to cluster_operation_info_list.
To override the contents of this collection use set_cluster_operation_info_list.
An array of cluster operation information objects.
sourcepub fn set_cluster_operation_info_list(
self,
input: Option<Vec<ClusterOperationV2Summary>>,
) -> Self
pub fn set_cluster_operation_info_list( self, input: Option<Vec<ClusterOperationV2Summary>>, ) -> Self
An array of cluster operation information objects.
sourcepub fn get_cluster_operation_info_list(
&self,
) -> &Option<Vec<ClusterOperationV2Summary>>
pub fn get_cluster_operation_info_list( &self, ) -> &Option<Vec<ClusterOperationV2Summary>>
An array of cluster operation information objects.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response of ListClusterOperationsV2 is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListClusterOperationsV2.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response of ListClusterOperationsV2 is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListClusterOperationsV2.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response of ListClusterOperationsV2 is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListClusterOperationsV2.
sourcepub fn build(self) -> ListClusterOperationsV2Output
pub fn build(self) -> ListClusterOperationsV2Output
Consumes the builder and constructs a ListClusterOperationsV2Output.
Trait Implementations§
source§impl Clone for ListClusterOperationsV2OutputBuilder
impl Clone for ListClusterOperationsV2OutputBuilder
source§fn clone(&self) -> ListClusterOperationsV2OutputBuilder
fn clone(&self) -> ListClusterOperationsV2OutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListClusterOperationsV2OutputBuilder
impl Default for ListClusterOperationsV2OutputBuilder
source§fn default() -> ListClusterOperationsV2OutputBuilder
fn default() -> ListClusterOperationsV2OutputBuilder
source§impl PartialEq for ListClusterOperationsV2OutputBuilder
impl PartialEq for ListClusterOperationsV2OutputBuilder
source§fn eq(&self, other: &ListClusterOperationsV2OutputBuilder) -> bool
fn eq(&self, other: &ListClusterOperationsV2OutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListClusterOperationsV2OutputBuilder
Auto Trait Implementations§
impl Freeze for ListClusterOperationsV2OutputBuilder
impl RefUnwindSafe for ListClusterOperationsV2OutputBuilder
impl Send for ListClusterOperationsV2OutputBuilder
impl Sync for ListClusterOperationsV2OutputBuilder
impl Unpin for ListClusterOperationsV2OutputBuilder
impl UnwindSafe for ListClusterOperationsV2OutputBuilder
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