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 [`GetAccessPoint`](crate::operation::get_access_point::builders::GetAccessPointFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`access_point_id(impl Into<String>)`](crate::operation::get_access_point::builders::GetAccessPointFluentBuilder::access_point_id) / [`set_access_point_id(Option<String>)`](crate::operation::get_access_point::builders::GetAccessPointFluentBuilder::set_access_point_id):<br>required: **true**<br><p>The ID or Amazon Resource Name (ARN) of the access point to retrieve information for.</p><br>
    /// - On success, responds with [`GetAccessPointOutput`](crate::operation::get_access_point::GetAccessPointOutput) with field(s):
    ///   - [`access_point_arn(String)`](crate::operation::get_access_point::GetAccessPointOutput::access_point_arn): <p>The ARN of the access point.</p>
    ///   - [`access_point_id(String)`](crate::operation::get_access_point::GetAccessPointOutput::access_point_id): <p>The ID of the access point.</p>
    ///   - [`client_token(String)`](crate::operation::get_access_point::GetAccessPointOutput::client_token): <p>The client token used for idempotency when the access point was created.</p>
    ///   - [`file_system_id(String)`](crate::operation::get_access_point::GetAccessPointOutput::file_system_id): <p>The ID of the S3 File System.</p>
    ///   - [`status(LifeCycleState)`](crate::operation::get_access_point::GetAccessPointOutput::status): <p>The current status of the access point.</p>
    ///   - [`owner_id(String)`](crate::operation::get_access_point::GetAccessPointOutput::owner_id): <p>The Amazon Web Services account ID of the access point owner.</p>
    ///   - [`posix_user(Option<PosixUser>)`](crate::operation::get_access_point::GetAccessPointOutput::posix_user): <p>The POSIX identity configured for this access point.</p>
    ///   - [`root_directory(Option<RootDirectory>)`](crate::operation::get_access_point::GetAccessPointOutput::root_directory): <p>The root directory configuration for this access point.</p>
    ///   - [`tags(Option<Vec::<Tag>>)`](crate::operation::get_access_point::GetAccessPointOutput::tags): <p>The tags associated with the access point.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_access_point::GetAccessPointOutput::name): <p>The name of the access point.</p>
    /// - On failure, responds with [`SdkError<GetAccessPointError>`](crate::operation::get_access_point::GetAccessPointError)
    pub fn get_access_point(&self) -> crate::operation::get_access_point::builders::GetAccessPointFluentBuilder {
        crate::operation::get_access_point::builders::GetAccessPointFluentBuilder::new(self.handle.clone())
    }
}