[][src]Struct rusoto_efs::DescribeFileSystemsRequest

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

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

impl Clone for DescribeFileSystemsRequest[src]

impl Debug for DescribeFileSystemsRequest[src]

impl Default for DescribeFileSystemsRequest[src]

impl PartialEq<DescribeFileSystemsRequest> for DescribeFileSystemsRequest[src]

impl Serialize for DescribeFileSystemsRequest[src]

impl StructuralPartialEq for DescribeFileSystemsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.