#[non_exhaustive]pub struct AwsEfsAccessPointDetails {
pub access_point_id: Option<String>,
pub arn: Option<String>,
pub client_token: Option<String>,
pub file_system_id: Option<String>,
pub posix_user: Option<AwsEfsAccessPointPosixUserDetails>,
pub root_directory: Option<AwsEfsAccessPointRootDirectoryDetails>,
}
Expand description
Provides information about an Amazon EFS access point.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.access_point_id: Option<String>
The ID of the Amazon EFS access point.
arn: Option<String>
The Amazon Resource Name (ARN) of the Amazon EFS access point.
client_token: Option<String>
The opaque string specified in the request to ensure idempotent creation.
file_system_id: Option<String>
The ID of the Amazon EFS file system that the access point applies to.
posix_user: 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.
root_directory: 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.
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() -> AwsEfsAccessPointDetailsBuilder
pub fn builder() -> AwsEfsAccessPointDetailsBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsEfsAccessPointDetails
impl Debug for AwsEfsAccessPointDetails
source§impl PartialEq for AwsEfsAccessPointDetails
impl PartialEq for AwsEfsAccessPointDetails
source§fn eq(&self, other: &AwsEfsAccessPointDetails) -> bool
fn eq(&self, other: &AwsEfsAccessPointDetails) -> bool
self
and other
values to be equal, and is used
by ==
.