aws_sdk_elasticache/client/batch_apply_update_action.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`BatchApplyUpdateAction`](crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`replication_group_ids(impl Into<String>)`](crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder::replication_group_ids) / [`set_replication_group_ids(Option<Vec::<String>>)`](crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder::set_replication_group_ids):<br>required: **false**<br><p>The replication group IDs</p><br>
7 /// - [`cache_cluster_ids(impl Into<String>)`](crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder::cache_cluster_ids) / [`set_cache_cluster_ids(Option<Vec::<String>>)`](crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder::set_cache_cluster_ids):<br>required: **false**<br><p>The cache cluster IDs</p><br>
8 /// - [`service_update_name(impl Into<String>)`](crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder::service_update_name) / [`set_service_update_name(Option<String>)`](crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder::set_service_update_name):<br>required: **true**<br><p>The unique ID of the service update</p><br>
9 /// - On success, responds with [`BatchApplyUpdateActionOutput`](crate::operation::batch_apply_update_action::BatchApplyUpdateActionOutput) with field(s):
10 /// - [`processed_update_actions(Option<Vec::<ProcessedUpdateAction>>)`](crate::operation::batch_apply_update_action::BatchApplyUpdateActionOutput::processed_update_actions): <p>Update actions that have been processed successfully</p>
11 /// - [`unprocessed_update_actions(Option<Vec::<UnprocessedUpdateAction>>)`](crate::operation::batch_apply_update_action::BatchApplyUpdateActionOutput::unprocessed_update_actions): <p>Update actions that haven't been processed successfully</p>
12 /// - On failure, responds with [`SdkError<BatchApplyUpdateActionError>`](crate::operation::batch_apply_update_action::BatchApplyUpdateActionError)
13 pub fn batch_apply_update_action(&self) -> crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder {
14 crate::operation::batch_apply_update_action::builders::BatchApplyUpdateActionFluentBuilder::new(self.handle.clone())
15 }
16}