aws-sdk-s3files 1.5.0

AWS SDK for Amazon S3 Files
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetFileSystem`](crate::operation::get_file_system::builders::GetFileSystemFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`file_system_id(impl Into<String>)`](crate::operation::get_file_system::builders::GetFileSystemFluentBuilder::file_system_id) / [`set_file_system_id(Option<String>)`](crate::operation::get_file_system::builders::GetFileSystemFluentBuilder::set_file_system_id):<br>required: **true**<br><p>The ID or Amazon Resource Name (ARN) of the S3 File System to retrieve information for.</p><br>
    /// - On success, responds with [`GetFileSystemOutput`](crate::operation::get_file_system::GetFileSystemOutput) with field(s):
    ///   - [`creation_time(Option<DateTime>)`](crate::operation::get_file_system::GetFileSystemOutput::creation_time): <p>The time when the file system was created.</p>
    ///   - [`file_system_arn(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::file_system_arn): <p>The Amazon Resource Name (ARN) of the file system.</p>
    ///   - [`file_system_id(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::file_system_id): <p>The ID of the file system.</p>
    ///   - [`bucket(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::bucket): <p>The Amazon Resource Name (ARN) of the S3 bucket.</p>
    ///   - [`prefix(String)`](crate::operation::get_file_system::GetFileSystemOutput::prefix): <p>The prefix in the S3 bucket that the file system provides access to.</p>
    ///   - [`client_token(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::client_token): <p>The client token used for idempotency when the file system was created.</p>
    ///   - [`kms_key_id(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::kms_key_id): <p>The Amazon Resource Name (ARN) of the Amazon Web Services KMS key used for encryption.</p>
    ///   - [`status(Option<LifeCycleState>)`](crate::operation::get_file_system::GetFileSystemOutput::status): <p>The current status of the file system.</p>
    ///   - [`status_message(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::status_message): <p>Additional information about the file system status.</p>
    ///   - [`role_arn(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::role_arn): <p>The Amazon Resource Name (ARN) of the IAM role used for S3 access.</p>
    ///   - [`owner_id(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::owner_id): <p>The Amazon Web Services account ID of the file system owner.</p>
    ///   - [`tags(Option<Vec::<Tag>>)`](crate::operation::get_file_system::GetFileSystemOutput::tags): <p>The tags associated with the file system.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_file_system::GetFileSystemOutput::name): <p>The name of the file system.</p>
    /// - On failure, responds with [`SdkError<GetFileSystemError>`](crate::operation::get_file_system::GetFileSystemError)
    pub fn get_file_system(&self) -> crate::operation::get_file_system::builders::GetFileSystemFluentBuilder {
        crate::operation::get_file_system::builders::GetFileSystemFluentBuilder::new(self.handle.clone())
    }
}