[][src]Struct rusoto_efs::FileSystemDescription

pub struct FileSystemDescription {
    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>,
}

A description of the file system.

Fields

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 throughput, measured in MiB/s, that you want to provision for a file system. Valid values are 1-1024. Required if ThroughputMode is set to provisioned. The limit on throughput is 1024 MiB/s. You can get these limits increased by contacting AWS Support. For more information, see Amazon EFS Limits That You Can Increase in the Amazon EFS User Guide.

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>

The throughput mode for a file system. There are two throughput modes to choose from for your file system: bursting and provisioned. If you set ThroughputMode to provisioned, you must also set a value for ProvisionedThroughPutInMibps. You can decrease your file system's throughput in Provisioned Throughput mode or change between the throughput modes as long as it’s been more than 24 hours since the last decrease or throughput mode change.

Trait Implementations

impl Clone for FileSystemDescription[src]

impl Debug for FileSystemDescription[src]

impl Default for FileSystemDescription[src]

impl<'de> Deserialize<'de> for FileSystemDescription[src]

impl PartialEq<FileSystemDescription> for FileSystemDescription[src]

impl StructuralPartialEq for FileSystemDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.