aws_sdk_memorydb/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 to describe.</p><br>
8 /// - [`cluster_names(impl Into<String>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::cluster_names) / [`set_cluster_names(Option<Vec::<String>>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::set_cluster_names):<br>required: **false**<br><p>The list of cluster names to identify service updates to apply.</p><br>
9 /// - [`status(ServiceUpdateStatus)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::status) / [`set_status(Option<Vec::<ServiceUpdateStatus>>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::set_status):<br>required: **false**<br><p>The status(es) of the service updates to filter on.</p><br>
10 /// - [`max_results(i32)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.</p><br>
11 /// - [`next_token(impl Into<String>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::set_next_token):<br>required: **false**<br><p>An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.</p><br>
12 /// - On success, responds with [`DescribeServiceUpdatesOutput`](crate::operation::describe_service_updates::DescribeServiceUpdatesOutput) with field(s):
13 /// - [`next_token(Option<String>)`](crate::operation::describe_service_updates::DescribeServiceUpdatesOutput::next_token): <p>An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.</p>
14 /// - [`service_updates(Option<Vec::<ServiceUpdate>>)`](crate::operation::describe_service_updates::DescribeServiceUpdatesOutput::service_updates): <p>A list of service updates</p>
15 /// - On failure, responds with [`SdkError<DescribeServiceUpdatesError>`](crate::operation::describe_service_updates::DescribeServiceUpdatesError)
16 pub fn describe_service_updates(&self) -> crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder {
17 crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::new(self.handle.clone())
18 }
19}