1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeServiceUpdates`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`service_update_name(impl ::std::convert::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): <p>The unique ID of the service update to describe.</p>
    ///   - [`cluster_names(Vec<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): <p>The list of cluster names to identify service updates to apply</p>
    ///   - [`status(Vec<ServiceUpdateStatus>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::status) / [`set_status(Option<Vec<ServiceUpdateStatus>>)`](crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::set_status): <p>The status(es) of the service updates to filter on</p>
    ///   - [`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): <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>
    ///   - [`next_token(impl ::std::convert::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): <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>
    /// - On success, responds with [`DescribeServiceUpdatesOutput`](crate::operation::describe_service_updates::DescribeServiceUpdatesOutput) with field(s):
    ///   - [`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>
    ///   - [`service_updates(Option<Vec<ServiceUpdate>>)`](crate::operation::describe_service_updates::DescribeServiceUpdatesOutput::service_updates): <p>A list of service updates</p>
    /// - On failure, responds with [`SdkError<DescribeServiceUpdatesError>`](crate::operation::describe_service_updates::DescribeServiceUpdatesError)
    pub fn describe_service_updates(
        &self,
    ) -> crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder
    {
        crate::operation::describe_service_updates::builders::DescribeServiceUpdatesFluentBuilder::new(self.handle.clone())
    }
}