Struct rusoto_efs::DescribeFileSystemsRequest[][src]

pub struct DescribeFileSystemsRequest {
    pub creation_token: Option<String>,
    pub file_system_id: Option<String>,
    pub marker: Option<String>,
    pub max_items: Option<i64>,
}

Fields

(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.

(Optional) ID of the file system whose description you want to retrieve (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.

(Optional) Specifies the 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 EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

Trait Implementations

impl Default for DescribeFileSystemsRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeFileSystemsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeFileSystemsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeFileSystemsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations