logo
pub struct FileSystemDescription {
Show 17 fields pub availability_zone_id: Option<String>, pub availability_zone_name: Option<String>, pub creation_time: f64, pub creation_token: String, pub encrypted: Option<bool>, pub file_system_arn: Option<String>, pub file_system_id: String, pub kms_key_id: Option<String>, pub life_cycle_state: String, pub name: Option<String>, pub number_of_mount_targets: i64, pub owner_id: String, pub performance_mode: String, pub provisioned_throughput_in_mibps: Option<f64>, pub size_in_bytes: FileSystemSize, pub tags: Vec<Tag>, pub throughput_mode: Option<String>,
}
Expand description

A description of the file system.

Fields

availability_zone_id: Option<String>

The unique and consistent identifier of the Availability Zone in which the file system's One Zone storage classes exist. For example, use1-az1 is an Availability Zone ID for the us-east-1 AWS Region, and it has the same location in every AWS account.

availability_zone_name: Option<String>

Describes the AWS Availability Zone in which the file system is located, and is valid only for file systems using One Zone storage classes. For more information, see Using EFS storage classes in the Amazon EFS User Guide.

creation_time: f64

The time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

creation_token: String

The opaque string specified in the request.

encrypted: Option<bool>

A Boolean value that, if true, indicates that the file system is encrypted.

file_system_arn: Option<String>

The Amazon Resource Name (ARN) for the EFS file system, in the format arn:aws:elasticfilesystem:region:account-id:file-system/file-system-id . Example with sample data: arn:aws:elasticfilesystem:us-west-2:1111333322228888:file-system/fs-01234567

file_system_id: String

The ID of the file system, assigned by Amazon EFS.

kms_key_id: Option<String>

The ID of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the encrypted file system.

life_cycle_state: String

The lifecycle phase of the file system.

name: Option<String>

You can add tags to a file system, including a Name tag. For more information, see CreateFileSystem. If the file system has a Name tag, Amazon EFS returns the value in this field.

number_of_mount_targets: i64

The current number of mount targets that the file system has. For more information, see CreateMountTarget.

owner_id: String

The AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

performance_mode: String

The performance mode of the file system.

provisioned_throughput_in_mibps: Option<f64>

The amount of provisioned throughput, measured in MiB/s, for the file system. Valid for file systems using ThroughputMode set to provisioned.

size_in_bytes: FileSystemSize

The latest known metered size (in bytes) of data stored in the file system, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. The SizeInBytes value doesn't represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, SizeInBytes represents actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size that the file system was at any point in time.

tags: Vec<Tag>

The tags associated with the file system, presented as an array of Tag objects.

throughput_mode: Option<String>

Displays the file system's throughput mode. For more information, see Throughput modes in the Amazon EFS User Guide.

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