Struct rusoto_storagegateway::ListFileSharesInput[][src]

pub struct ListFileSharesInput {
    pub gateway_arn: Option<String>,
    pub limit: Option<i64>,
    pub marker: Option<String>,
}

ListFileShareInput

Fields

The Amazon resource Name (ARN) of the gateway whose file shares you want to list. If this field is not present, all file shares under your account are listed.

The maximum number of file shares to return in the response. The value must be an integer with a value greater than zero. Optional.

Opaque pagination token returned from a previous ListFileShares operation. If present, Marker specifies where to continue the list from after a previous call to ListFileShares. Optional.

Trait Implementations

impl Default for ListFileSharesInput
[src]

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

impl Debug for ListFileSharesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListFileSharesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListFileSharesInput
[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