Struct aws_sdk_kafka::operation::list_cluster_operations::builders::ListClusterOperationsOutputBuilder
source · #[non_exhaustive]pub struct ListClusterOperationsOutputBuilder { /* private fields */ }
Expand description
A builder for ListClusterOperationsOutput
.
Implementations§
source§impl ListClusterOperationsOutputBuilder
impl ListClusterOperationsOutputBuilder
sourcepub fn cluster_operation_info_list(self, input: ClusterOperationInfo) -> Self
pub fn cluster_operation_info_list(self, input: ClusterOperationInfo) -> 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<ClusterOperationInfo>>,
) -> Self
pub fn set_cluster_operation_info_list( self, input: Option<Vec<ClusterOperationInfo>>, ) -> Self
An array of cluster operation information objects.
sourcepub fn get_cluster_operation_info_list(
&self,
) -> &Option<Vec<ClusterOperationInfo>>
pub fn get_cluster_operation_info_list( &self, ) -> &Option<Vec<ClusterOperationInfo>>
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 ListClusterOperations is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClusterOperations.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response of ListClusterOperations is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClusterOperations.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response of ListClusterOperations is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClusterOperations.
sourcepub fn build(self) -> ListClusterOperationsOutput
pub fn build(self) -> ListClusterOperationsOutput
Consumes the builder and constructs a ListClusterOperationsOutput
.
Trait Implementations§
source§impl Clone for ListClusterOperationsOutputBuilder
impl Clone for ListClusterOperationsOutputBuilder
source§fn clone(&self) -> ListClusterOperationsOutputBuilder
fn clone(&self) -> ListClusterOperationsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListClusterOperationsOutputBuilder
impl Default for ListClusterOperationsOutputBuilder
source§fn default() -> ListClusterOperationsOutputBuilder
fn default() -> ListClusterOperationsOutputBuilder
source§impl PartialEq for ListClusterOperationsOutputBuilder
impl PartialEq for ListClusterOperationsOutputBuilder
source§fn eq(&self, other: &ListClusterOperationsOutputBuilder) -> bool
fn eq(&self, other: &ListClusterOperationsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListClusterOperationsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListClusterOperationsOutputBuilder
impl RefUnwindSafe for ListClusterOperationsOutputBuilder
impl Send for ListClusterOperationsOutputBuilder
impl Sync for ListClusterOperationsOutputBuilder
impl Unpin for ListClusterOperationsOutputBuilder
impl UnwindSafe for ListClusterOperationsOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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