pub struct Builder { /* private fields */ }Expand description
A builder for BatchApplyUpdateActionOutput.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn processed_update_actions(self, input: ProcessedUpdateAction) -> Self
pub fn processed_update_actions(self, input: ProcessedUpdateAction) -> Self
Appends an item to processed_update_actions.
To override the contents of this collection use set_processed_update_actions.
Update actions that have been processed successfully
sourcepub fn set_processed_update_actions(
self,
input: Option<Vec<ProcessedUpdateAction>>
) -> Self
pub fn set_processed_update_actions(
self,
input: Option<Vec<ProcessedUpdateAction>>
) -> Self
Update actions that have been processed successfully
sourcepub fn unprocessed_update_actions(self, input: UnprocessedUpdateAction) -> Self
pub fn unprocessed_update_actions(self, input: UnprocessedUpdateAction) -> Self
Appends an item to unprocessed_update_actions.
To override the contents of this collection use set_unprocessed_update_actions.
Update actions that haven't been processed successfully
sourcepub fn set_unprocessed_update_actions(
self,
input: Option<Vec<UnprocessedUpdateAction>>
) -> Self
pub fn set_unprocessed_update_actions(
self,
input: Option<Vec<UnprocessedUpdateAction>>
) -> Self
Update actions that haven't been processed successfully
sourcepub fn build(self) -> BatchApplyUpdateActionOutput
pub fn build(self) -> BatchApplyUpdateActionOutput
Consumes the builder and constructs a BatchApplyUpdateActionOutput.
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