#[non_exhaustive]pub struct AwsEfsAccessPointDetails { /* private fields */ }
Expand description
Provides information about an Amazon EFS access point.
Implementations
sourceimpl 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.
sourceimpl AwsEfsAccessPointDetails
impl AwsEfsAccessPointDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsEfsAccessPointDetails
.
Trait Implementations
sourceimpl Clone for AwsEfsAccessPointDetails
impl Clone for AwsEfsAccessPointDetails
sourcefn clone(&self) -> AwsEfsAccessPointDetails
fn clone(&self) -> AwsEfsAccessPointDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AwsEfsAccessPointDetails
impl Debug for AwsEfsAccessPointDetails
sourceimpl PartialEq<AwsEfsAccessPointDetails> for AwsEfsAccessPointDetails
impl PartialEq<AwsEfsAccessPointDetails> for AwsEfsAccessPointDetails
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &AwsEfsAccessPointDetails) -> bool
fn ne(&self, other: &AwsEfsAccessPointDetails) -> bool
This method tests for !=
.
impl StructuralPartialEq for AwsEfsAccessPointDetails
Auto Trait Implementations
impl RefUnwindSafe for AwsEfsAccessPointDetails
impl Send for AwsEfsAccessPointDetails
impl Sync for AwsEfsAccessPointDetails
impl Unpin for AwsEfsAccessPointDetails
impl UnwindSafe for AwsEfsAccessPointDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more