aws_sdk_elasticache/client/
batch_stop_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 [`BatchStopUpdateAction`](crate::operation::batch_stop_update_action::builders::BatchStopUpdateActionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`replication_group_ids(impl Into<String>)`](crate::operation::batch_stop_update_action::builders::BatchStopUpdateActionFluentBuilder::replication_group_ids) / [`set_replication_group_ids(Option<Vec::<String>>)`](crate::operation::batch_stop_update_action::builders::BatchStopUpdateActionFluentBuilder::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_stop_update_action::builders::BatchStopUpdateActionFluentBuilder::cache_cluster_ids) / [`set_cache_cluster_ids(Option<Vec::<String>>)`](crate::operation::batch_stop_update_action::builders::BatchStopUpdateActionFluentBuilder::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_stop_update_action::builders::BatchStopUpdateActionFluentBuilder::service_update_name) / [`set_service_update_name(Option<String>)`](crate::operation::batch_stop_update_action::builders::BatchStopUpdateActionFluentBuilder::set_service_update_name):<br>required: **true**<br><p>The unique ID of the service update</p><br>
9    /// - On success, responds with [`BatchStopUpdateActionOutput`](crate::operation::batch_stop_update_action::BatchStopUpdateActionOutput) with field(s):
10    ///   - [`processed_update_actions(Option<Vec::<ProcessedUpdateAction>>)`](crate::operation::batch_stop_update_action::BatchStopUpdateActionOutput::processed_update_actions): <p>Update actions that have been processed successfully</p>
11    ///   - [`unprocessed_update_actions(Option<Vec::<UnprocessedUpdateAction>>)`](crate::operation::batch_stop_update_action::BatchStopUpdateActionOutput::unprocessed_update_actions): <p>Update actions that haven't been processed successfully</p>
12    /// - On failure, responds with [`SdkError<BatchStopUpdateActionError>`](crate::operation::batch_stop_update_action::BatchStopUpdateActionError)
13    pub fn batch_stop_update_action(&self) -> crate::operation::batch_stop_update_action::builders::BatchStopUpdateActionFluentBuilder {
14        crate::operation::batch_stop_update_action::builders::BatchStopUpdateActionFluentBuilder::new(self.handle.clone())
15    }
16}