logo
pub struct Backup {
Show 14 fields pub backup_id: String, pub creation_time: f64, pub directory_information: Option<ActiveDirectoryBackupAttributes>, pub failure_details: Option<BackupFailureDetails>, pub file_system: FileSystem, pub kms_key_id: Option<String>, pub lifecycle: String, pub owner_id: Option<String>, pub progress_percent: Option<i64>, pub resource_arn: Option<String>, pub source_backup_id: Option<String>, pub source_backup_region: Option<String>, pub tags: Option<Vec<Tag>>, pub type_: String,
}
Expand description

A backup of an Amazon FSx file system.

Fields

backup_id: String

The ID of the backup.

creation_time: f64

The time when a particular backup was created.

directory_information: Option<ActiveDirectoryBackupAttributes>

The configuration of the self-managed Microsoft Active Directory (AD) to which the Windows File Server instance is joined.

failure_details: Option<BackupFailureDetails>

Details explaining any failures that occur when creating a backup.

file_system: FileSystem

Metadata of the file system associated with the backup. This metadata is persisted even if the file system is deleted.

kms_key_id: Option<String>

The ID of the AWS Key Management Service (AWS KMS) key used to encrypt the backup of the Amazon FSx file system's data at rest.

lifecycle: String

The lifecycle status of the backup.

  • AVAILABLE - The backup is fully available.

  • PENDING - For user-initiated backups on Lustre file systems only; Amazon FSx has not started creating the backup.

  • CREATING - Amazon FSx is creating the backup.

  • TRANSFERRING - For user-initiated backups on Lustre file systems only; Amazon FSx is transferring the backup to S3.

  • COPYING - Amazon FSx is copying the backup.

  • DELETED - Amazon FSx deleted the backup and it is no longer available.

  • FAILED - Amazon FSx could not complete the backup.

owner_id: Option<String>progress_percent: Option<i64>resource_arn: Option<String>

The Amazon Resource Name (ARN) for the backup resource.

source_backup_id: Option<String>source_backup_region: Option<String>

The source Region of the backup. Specifies the Region from where this backup is copied.

tags: Option<Vec<Tag>>

Tags associated with a particular file system.

type_: String

The type of the file system backup.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more