[][src]Struct rusoto_efs::AccessPointDescription

pub struct AccessPointDescription {
    pub access_point_arn: Option<String>,
    pub access_point_id: Option<String>,
    pub client_token: Option<String>,
    pub file_system_id: Option<String>,
    pub life_cycle_state: Option<String>,
    pub name: Option<String>,
    pub owner_id: Option<String>,
    pub posix_user: Option<PosixUser>,
    pub root_directory: Option<RootDirectory>,
    pub tags: Option<Vec<Tag>>,
}

Provides a description of an EFS file system access point.

Fields

access_point_arn: Option<String>

The unique Amazon Resource Name (ARN) associated with the access point.

access_point_id: Option<String>

The ID of the access point, assigned by Amazon EFS.

client_token: Option<String>

The opaque string specified in the request to ensure idempotent creation.

file_system_id: Option<String>

The ID of the EFS file system that the access point applies to.

life_cycle_state: Option<String>

Identifies the lifecycle phase of the access point.

name: Option<String>

The name of the access point. This is the value of the Name tag.

owner_id: Option<String>

Identified the AWS account that owns the access point resource.

posix_user: Option<PosixUser>

The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.

root_directory: Option<RootDirectory>

The directory on the Amazon EFS file system that the access point exposes as the root directory to NFS clients using the access point.

tags: Option<Vec<Tag>>

The tags associated with the access point, presented as an array of Tag objects.

Trait Implementations

impl Clone for AccessPointDescription[src]

impl Debug for AccessPointDescription[src]

impl Default for AccessPointDescription[src]

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

impl PartialEq<AccessPointDescription> for AccessPointDescription[src]

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