1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeFileCaches`](crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`file_cache_ids(impl Into<String>)`](crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder::file_cache_ids) / [`set_file_cache_ids(Option<Vec::<String>>)`](crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder::set_file_cache_ids):<br>required: **false**<br><p>IDs of the caches whose descriptions you want to retrieve (String).</p><br>
    ///   - [`max_results(i32)`](crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of resources to return in the response. This value must be an integer greater than zero.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder::set_next_token):<br>required: **false**<br><p>(Optional) Opaque pagination token returned from a previous operation (String). If present, this token indicates from what point you can continue processing the request, where the previous <code>NextToken</code> value left off.</p><br>
    /// - On success, responds with [`DescribeFileCachesOutput`](crate::operation::describe_file_caches::DescribeFileCachesOutput) with field(s):
    ///   - [`file_caches(Option<Vec::<FileCache>>)`](crate::operation::describe_file_caches::DescribeFileCachesOutput::file_caches): <p>The response object for the <code>DescribeFileCaches</code> operation.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_file_caches::DescribeFileCachesOutput::next_token): <p>(Optional) Opaque pagination token returned from a previous operation (String). If present, this token indicates from what point you can continue processing the request, where the previous <code>NextToken</code> value left off.</p>
    /// - On failure, responds with [`SdkError<DescribeFileCachesError>`](crate::operation::describe_file_caches::DescribeFileCachesError)
    pub fn describe_file_caches(&self) -> crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder {
        crate::operation::describe_file_caches::builders::DescribeFileCachesFluentBuilder::new(self.handle.clone())
    }
}