pub struct DescribeFileSystemsRequest {
pub creation_token: Option<String>,
pub file_system_id: Option<String>,
pub marker: Option<String>,
pub max_items: Option<i64>,
}Expand description
Fields§
§creation_token: Option<String>(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.
file_system_id: Option<String>(Optional) ID of the file system whose description you want to retrieve (String).
marker: Option<String>(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.
max_items: Option<i64>(Optional) Specifies the maximum number of file systems to return in the response (integer). This number is automatically set to 100. The response is paginated at 100 per page if you have more than 100 file systems.
Trait Implementations§
Source§impl Clone for DescribeFileSystemsRequest
impl Clone for DescribeFileSystemsRequest
Source§fn clone(&self) -> DescribeFileSystemsRequest
fn clone(&self) -> DescribeFileSystemsRequest
Returns a duplicate 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 DescribeFileSystemsRequest
impl Debug for DescribeFileSystemsRequest
Source§impl Default for DescribeFileSystemsRequest
impl Default for DescribeFileSystemsRequest
Source§fn default() -> DescribeFileSystemsRequest
fn default() -> DescribeFileSystemsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeFileSystemsRequest
Auto Trait Implementations§
impl Freeze for DescribeFileSystemsRequest
impl RefUnwindSafe for DescribeFileSystemsRequest
impl Send for DescribeFileSystemsRequest
impl Sync for DescribeFileSystemsRequest
impl Unpin for DescribeFileSystemsRequest
impl UnwindSafe for DescribeFileSystemsRequest
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