aws-sdk-backup 1.118.0

AWS SDK for AWS Backup
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeBackupAccessPoint`](crate::operation::describe_backup_access_point::builders::DescribeBackupAccessPointFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`access_point_arn(impl Into<String>)`](crate::operation::describe_backup_access_point::builders::DescribeBackupAccessPointFluentBuilder::access_point_arn) / [`set_access_point_arn(Option<String>)`](crate::operation::describe_backup_access_point::builders::DescribeBackupAccessPointFluentBuilder::set_access_point_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the backup access point to describe.</p><br>
    /// - On success, responds with [`DescribeBackupAccessPointOutput`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput) with field(s):
    ///   - [`access_point_arn(String)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::access_point_arn): <p>The Amazon Resource Name (ARN) that uniquely identifies the backup access point.</p>
    ///   - [`access_point_metadata(Option<HashMap::<String, String>>)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::access_point_metadata): <p>Metadata for the backup access point. After the backup access point reaches the <code>AVAILABLE</code> status, this map contains <code>S3AccessPointArn</code> and <code>S3AccessPointAlias</code>, which you use with standard Amazon S3 read APIs to access the backup data. For continuous recovery points, this map also contains <code>AccessPointInTime</code> (in format <code>2021-11-27T03:30:27Z</code>). The access point provides access to the content present in the backup at that specific time.</p>
    ///   - [`backup_vault_arn(Option<String>)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::backup_vault_arn): <p>The Amazon Resource Name (ARN) of the backup vault that contains the recovery point.</p>
    ///   - [`backup_vault_name(String)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::backup_vault_name): <p>The name of the backup vault that contains the recovery point.</p>
    ///   - [`creation_time(DateTime)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::creation_time): <p>The date and time that the backup access point was created, in Unix format and Coordinated Universal Time (UTC). The value of <code>CreationTime</code> is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
    ///   - [`name(String)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::name): <p>The name of the backup access point.</p>
    ///   - [`recovery_point_arn(String)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::recovery_point_arn): <p>The Amazon Resource Name (ARN) of the recovery point that the backup access point provides access to.</p>
    ///   - [`resource_arn(String)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::resource_arn): <p>The Amazon Resource Name (ARN) of the resource that was backed up, such as an Amazon S3 bucket.</p>
    ///   - [`resource_type(String)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::resource_type): <p>The type of Amazon Web Services resource associated with the recovery point. For example, <code>S3</code> for Amazon Simple Storage Service.</p>
    ///   - [`status(AccessPointStatus)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::status): <p>The current status of the backup access point.</p>
    ///   - [`status_message(Option<String>)`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointOutput::status_message): <p>A message that provides additional detail about the status of the backup access point, such as the reason a creation or deletion attempt failed.</p>
    /// - On failure, responds with [`SdkError<DescribeBackupAccessPointError>`](crate::operation::describe_backup_access_point::DescribeBackupAccessPointError)
    pub fn describe_backup_access_point(&self) -> crate::operation::describe_backup_access_point::builders::DescribeBackupAccessPointFluentBuilder {
        crate::operation::describe_backup_access_point::builders::DescribeBackupAccessPointFluentBuilder::new(self.handle.clone())
    }
}