[−][src]Struct rusoto_efs::FileSystemDescription
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_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.
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 PartialEq<FileSystemDescription> for FileSystemDescription
[src]
fn eq(&self, other: &FileSystemDescription) -> bool
[src]
fn ne(&self, other: &FileSystemDescription) -> bool
[src]
impl Default for FileSystemDescription
[src]
fn default() -> FileSystemDescription
[src]
impl Clone for FileSystemDescription
[src]
fn clone(&self) -> FileSystemDescription
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for FileSystemDescription
[src]
impl<'de> Deserialize<'de> for FileSystemDescription
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for FileSystemDescription
impl Sync for FileSystemDescription
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self