logo
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>>,
}
Expand description

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more