pub struct Builder { /* private fields */ }Expand description
A builder for BatchUpdateClusterOutput.
Implementations
sourceimpl Builder
impl Builder
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 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 build(self) -> BatchUpdateClusterOutput
pub fn build(self) -> BatchUpdateClusterOutput
Consumes the builder and constructs a BatchUpdateClusterOutput.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more