pub struct EfsClient<'a> { /* private fields */ }Expand description
Client for the Amazon Elastic File System API.
Implementations§
Source§impl<'a> EfsClient<'a>
impl<'a> EfsClient<'a>
Sourcepub async fn describe_file_systems(
&self,
marker: Option<&str>,
) -> Result<DescribeFileSystemsResponse>
pub async fn describe_file_systems( &self, marker: Option<&str>, ) -> Result<DescribeFileSystemsResponse>
Return the first page of EFS file system descriptions.
Pass marker from a previous response to paginate.
Sourcepub async fn list_all_file_systems(&self) -> Result<Vec<FileSystemDescription>>
pub async fn list_all_file_systems(&self) -> Result<Vec<FileSystemDescription>>
Return all EFS file systems in the current region, following pagination.
CIS 3.3.1: every file system should have Encrypted == true.
Auto Trait Implementations§
impl<'a> Freeze for EfsClient<'a>
impl<'a> !RefUnwindSafe for EfsClient<'a>
impl<'a> Send for EfsClient<'a>
impl<'a> Sync for EfsClient<'a>
impl<'a> Unpin for EfsClient<'a>
impl<'a> UnsafeUnpin for EfsClient<'a>
impl<'a> !UnwindSafe for EfsClient<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more