pub struct DescribeFileSystemsRequest {
pub file_system_ids: Option<Vec<String>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Expand description
The request object for DescribeFileSystems operation.
Fields§
§file_system_ids: Option<Vec<String>>IDs of the file systems whose descriptions you want to retrieve (String).
max_results: Option<i64>Maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the MaxResults parameter specified in the request and the service's internal maximum number of items per page.
next_token: Option<String>Opaque pagination token returned from a previous DescribeFileSystems operation (String). If a token present, the action continues the list from where the returning call left off.
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