#[non_exhaustive]pub struct AwsEfsAccessPointDetails { /* private fields */ }
Expand description
Provides information about an Amazon EFS access point.
Implementations§
source§impl AwsEfsAccessPointDetails
impl AwsEfsAccessPointDetails
sourcepub fn access_point_id(&self) -> Option<&str>
pub fn access_point_id(&self) -> Option<&str>
The ID of the Amazon EFS access point.
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon EFS access point.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The opaque string specified in the request to ensure idempotent creation.
sourcepub fn file_system_id(&self) -> Option<&str>
pub fn file_system_id(&self) -> Option<&str>
The ID of the Amazon EFS file system that the access point applies to.
sourcepub fn posix_user(&self) -> Option<&AwsEfsAccessPointPosixUserDetails>
pub fn posix_user(&self) -> Option<&AwsEfsAccessPointPosixUserDetails>
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.
sourcepub fn root_directory(&self) -> Option<&AwsEfsAccessPointRootDirectoryDetails>
pub fn root_directory(&self) -> Option<&AwsEfsAccessPointRootDirectoryDetails>
The directory on the Amazon EFS file system that the access point exposes as the root directory to NFS clients using the access point.
source§impl AwsEfsAccessPointDetails
impl AwsEfsAccessPointDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsEfsAccessPointDetails
.
Trait Implementations§
source§impl Clone for AwsEfsAccessPointDetails
impl Clone for AwsEfsAccessPointDetails
source§fn clone(&self) -> AwsEfsAccessPointDetails
fn clone(&self) -> AwsEfsAccessPointDetails
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AwsEfsAccessPointDetails
impl Debug for AwsEfsAccessPointDetails
source§impl PartialEq<AwsEfsAccessPointDetails> for AwsEfsAccessPointDetails
impl PartialEq<AwsEfsAccessPointDetails> for AwsEfsAccessPointDetails
source§fn eq(&self, other: &AwsEfsAccessPointDetails) -> bool
fn eq(&self, other: &AwsEfsAccessPointDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.