[][src]Struct rusoto_efs::MountTargetDescription

pub struct MountTargetDescription {
    pub availability_zone_id: Option<String>,
    pub availability_zone_name: Option<String>,
    pub file_system_id: String,
    pub ip_address: Option<String>,
    pub life_cycle_state: String,
    pub mount_target_id: String,
    pub network_interface_id: Option<String>,
    pub owner_id: Option<String>,
    pub subnet_id: String,
    pub vpc_id: Option<String>,
}

Provides a description of a mount target.

Fields

availability_zone_id: Option<String>

The unique and consistent identifier of the Availability Zone (AZ) that the mount target resides in. For example, use1-az1 is an AZ ID for the us-east-1 Region and it has the same location in every AWS account.

availability_zone_name: Option<String>

The name of the Availability Zone (AZ) that the mount target resides in. AZs are independently mapped to names for each AWS account. For example, the Availability Zone us-east-1a for your AWS account might not be the same location as us-east-1a for another AWS account.

file_system_id: String

The ID of the file system for which the mount target is intended.

ip_address: Option<String>

Address at which the file system can be mounted by using the mount target.

life_cycle_state: String

Lifecycle state of the mount target.

mount_target_id: String

System-assigned mount target ID.

network_interface_id: Option<String>

The ID of the network interface that Amazon EFS created when it created the mount target.

owner_id: Option<String>

AWS account ID that owns the resource.

subnet_id: String

The ID of the mount target's subnet.

vpc_id: Option<String>

The Virtual Private Cloud (VPC) ID that the mount target is configured in.

Trait Implementations

impl Clone for MountTargetDescription[src]

impl Debug for MountTargetDescription[src]

impl Default for MountTargetDescription[src]

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

impl PartialEq<MountTargetDescription> for MountTargetDescription[src]

impl StructuralPartialEq for MountTargetDescription[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.