Struct aws_sdk_memorydb::operation::batch_update_cluster::builders::BatchUpdateClusterOutputBuilder
source · #[non_exhaustive]pub struct BatchUpdateClusterOutputBuilder { /* private fields */ }
Expand description
A builder for BatchUpdateClusterOutput
.
Implementations§
source§impl BatchUpdateClusterOutputBuilder
impl BatchUpdateClusterOutputBuilder
sourcepub fn processed_clusters(self, input: Cluster) -> Self
pub fn processed_clusters(self, input: Cluster) -> Self
Appends an item to processed_clusters
.
To override the contents of this collection use set_processed_clusters
.
The list of clusters that have been updated.
sourcepub fn set_processed_clusters(self, input: Option<Vec<Cluster>>) -> Self
pub fn set_processed_clusters(self, input: Option<Vec<Cluster>>) -> Self
The list of clusters that have been updated.
sourcepub fn get_processed_clusters(&self) -> &Option<Vec<Cluster>>
pub fn get_processed_clusters(&self) -> &Option<Vec<Cluster>>
The list of clusters that have been updated.
sourcepub fn unprocessed_clusters(self, input: UnprocessedCluster) -> Self
pub fn unprocessed_clusters(self, input: UnprocessedCluster) -> Self
Appends an item to unprocessed_clusters
.
To override the contents of this collection use set_unprocessed_clusters
.
The list of clusters where updates have not been applied.
sourcepub fn set_unprocessed_clusters(
self,
input: Option<Vec<UnprocessedCluster>>
) -> Self
pub fn set_unprocessed_clusters( self, input: Option<Vec<UnprocessedCluster>> ) -> Self
The list of clusters where updates have not been applied.
sourcepub fn get_unprocessed_clusters(&self) -> &Option<Vec<UnprocessedCluster>>
pub fn get_unprocessed_clusters(&self) -> &Option<Vec<UnprocessedCluster>>
The list of clusters where updates have not been applied.
sourcepub fn build(self) -> BatchUpdateClusterOutput
pub fn build(self) -> BatchUpdateClusterOutput
Consumes the builder and constructs a BatchUpdateClusterOutput
.
Trait Implementations§
source§impl Clone for BatchUpdateClusterOutputBuilder
impl Clone for BatchUpdateClusterOutputBuilder
source§fn clone(&self) -> BatchUpdateClusterOutputBuilder
fn clone(&self) -> BatchUpdateClusterOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for BatchUpdateClusterOutputBuilder
impl Default for BatchUpdateClusterOutputBuilder
source§fn default() -> BatchUpdateClusterOutputBuilder
fn default() -> BatchUpdateClusterOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchUpdateClusterOutputBuilder
impl PartialEq for BatchUpdateClusterOutputBuilder
source§fn eq(&self, other: &BatchUpdateClusterOutputBuilder) -> bool
fn eq(&self, other: &BatchUpdateClusterOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchUpdateClusterOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchUpdateClusterOutputBuilder
impl RefUnwindSafe for BatchUpdateClusterOutputBuilder
impl Send for BatchUpdateClusterOutputBuilder
impl Sync for BatchUpdateClusterOutputBuilder
impl Unpin for BatchUpdateClusterOutputBuilder
impl UnwindSafe for BatchUpdateClusterOutputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.