aws_sdk_storagegateway/client/
describe_file_system_associations.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 [`DescribeFileSystemAssociations`](crate::operation::describe_file_system_associations::builders::DescribeFileSystemAssociationsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`file_system_association_arn_list(impl Into<String>)`](crate::operation::describe_file_system_associations::builders::DescribeFileSystemAssociationsFluentBuilder::file_system_association_arn_list) / [`set_file_system_association_arn_list(Option<Vec::<String>>)`](crate::operation::describe_file_system_associations::builders::DescribeFileSystemAssociationsFluentBuilder::set_file_system_association_arn_list):<br>required: **true**<br><p>An array containing the Amazon Resource Name (ARN) of each file system association to be described.</p><br>
7    /// - On success, responds with [`DescribeFileSystemAssociationsOutput`](crate::operation::describe_file_system_associations::DescribeFileSystemAssociationsOutput) with field(s):
8    ///   - [`file_system_association_info_list(Option<Vec::<FileSystemAssociationInfo>>)`](crate::operation::describe_file_system_associations::DescribeFileSystemAssociationsOutput::file_system_association_info_list): <p>An array containing the <code>FileSystemAssociationInfo</code> data type of each file system association to be described.</p>
9    /// - On failure, responds with [`SdkError<DescribeFileSystemAssociationsError>`](crate::operation::describe_file_system_associations::DescribeFileSystemAssociationsError)
10    pub fn describe_file_system_associations(
11        &self,
12    ) -> crate::operation::describe_file_system_associations::builders::DescribeFileSystemAssociationsFluentBuilder {
13        crate::operation::describe_file_system_associations::builders::DescribeFileSystemAssociationsFluentBuilder::new(self.handle.clone())
14    }
15}