aws_sdk_elasticache/client/
describe_service_updates.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 [`DescribeServiceUpdates`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`service_update_name(impl Into<String>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::service_update_name) / [`set_service_update_name(Option<String>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::set_service_update_name):<br>required: **false**<br><p>The unique ID of the service update</p><br>
8    ///   - [`service_update_status(ServiceUpdateStatus)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::service_update_status) / [`set_service_update_status(Option<Vec::<ServiceUpdateStatus>>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::set_service_update_status):<br>required: **false**<br><p>The status of the service update</p><br>
9    ///   - [`max_records(i32)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of records to include in the response</p><br>
10    ///   - [`marker(impl Into<String>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::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>
11    /// - On success, responds with [`DescribeServiceUpdatesOutput`](crate::operation::describe_service_updates::DescribeServiceUpdatesOutput) with field(s):
12    ///   - [`marker(Option<String>)`](crate::operation::describe_service_updates::DescribeServiceUpdatesOutput::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>
13    ///   - [`service_updates(Option<Vec::<ServiceUpdate>>)`](crate::operation::describe_service_updates::DescribeServiceUpdatesOutput::service_updates): <p>A list of service updates</p>
14    /// - On failure, responds with [`SdkError<DescribeServiceUpdatesError>`](crate::operation::describe_service_updates::DescribeServiceUpdatesError)
15    pub fn describe_service_updates(&self) -> crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder {
16        crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::new(self.handle.clone())
17    }
18}