Struct rusoto_efs::MountTargetDescription[][src]

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

Provides a description of a mount target.

Fields

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

Address at which the file system may be mounted via the mount target.

Lifecycle state of the mount target.

System-assigned mount target ID.

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

AWS account ID that owns the resource.

ID of the mount target's subnet.

Trait Implementations

impl Default for MountTargetDescription
[src]

Returns the "default value" for a type. Read more

impl Debug for MountTargetDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for MountTargetDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MountTargetDescription
[src]

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

This method tests for !=.

Auto Trait Implementations