aws_sdk_elasticache/client/
describe_update_actions.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 [`DescribeUpdateActions`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`service_update_name(impl Into<String>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::service_update_name) / [`set_service_update_name(Option<String>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_service_update_name):<br>required: **false**<br><p>The unique ID of the service update</p><br>
8    ///   - [`replication_group_ids(impl Into<String>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::replication_group_ids) / [`set_replication_group_ids(Option<Vec::<String>>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_replication_group_ids):<br>required: **false**<br><p>The replication group IDs</p><br>
9    ///   - [`cache_cluster_ids(impl Into<String>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::cache_cluster_ids) / [`set_cache_cluster_ids(Option<Vec::<String>>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_cache_cluster_ids):<br>required: **false**<br><p>The cache cluster IDs</p><br>
10    ///   - [`engine(impl Into<String>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::engine) / [`set_engine(Option<String>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_engine):<br>required: **false**<br><p>The Elasticache engine to which the update applies. Either Valkey, Redis OSS or Memcached.</p><br>
11    ///   - [`service_update_status(ServiceUpdateStatus)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::service_update_status) / [`set_service_update_status(Option<Vec::<ServiceUpdateStatus>>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_service_update_status):<br>required: **false**<br><p>The status of the service update</p><br>
12    ///   - [`service_update_time_range(TimeRangeFilter)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::service_update_time_range) / [`set_service_update_time_range(Option<TimeRangeFilter>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_service_update_time_range):<br>required: **false**<br><p>The range of time specified to search for service updates that are in available status</p><br>
13    ///   - [`update_action_status(UpdateActionStatus)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::update_action_status) / [`set_update_action_status(Option<Vec::<UpdateActionStatus>>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_update_action_status):<br>required: **false**<br><p>The status of the update action.</p><br>
14    ///   - [`show_node_level_update_status(bool)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::show_node_level_update_status) / [`set_show_node_level_update_status(Option<bool>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_show_node_level_update_status):<br>required: **false**<br><p>Dictates whether to include node level update status in the response</p><br>
15    ///   - [`max_records(i32)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of records to include in the response</p><br>
16    ///   - [`marker(impl Into<String>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::set_marker):<br>required: **false**<br><p>An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p><br>
17    /// - On success, responds with [`DescribeUpdateActionsOutput`](crate::operation::describe_update_actions::DescribeUpdateActionsOutput) with field(s):
18    ///   - [`marker(Option<String>)`](crate::operation::describe_update_actions::DescribeUpdateActionsOutput::marker): <p>An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
19    ///   - [`update_actions(Option<Vec::<UpdateAction>>)`](crate::operation::describe_update_actions::DescribeUpdateActionsOutput::update_actions): <p>Returns a list of update actions</p>
20    /// - On failure, responds with [`SdkError<DescribeUpdateActionsError>`](crate::operation::describe_update_actions::DescribeUpdateActionsError)
21    pub fn describe_update_actions(&self) -> crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder {
22        crate::operation::describe_update_actions::builders::DescribeUpdateActionsFluentBuilder::new(self.handle.clone())
23    }
24}