Struct aws_sdk_fsx::input::DescribeFileSystemsInput [−][src]
#[non_exhaustive]pub struct DescribeFileSystemsInput {
pub file_system_ids: Option<Vec<String>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Expand description
The request object for DescribeFileSystems operation.
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.file_system_ids: Option<Vec<String>>IDs of the file systems whose descriptions you want to retrieve (String).
max_results: Option<i32>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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeFileSystems, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeFileSystems, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeFileSystems>
Creates a new builder-style object to manufacture DescribeFileSystemsInput
IDs of the file systems whose descriptions you want to retrieve (String).
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.
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
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for DescribeFileSystemsInput
impl Send for DescribeFileSystemsInput
impl Sync for DescribeFileSystemsInput
impl Unpin for DescribeFileSystemsInput
impl UnwindSafe for DescribeFileSystemsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more