Struct rusoto_iot::ListAuthorizersRequest[][src]

pub struct ListAuthorizersRequest {
    pub ascending_order: Option<bool>,
    pub marker: Option<String>,
    pub page_size: Option<i64>,
    pub status: Option<String>,
}

Fields

Return the list of authorizers in ascending alphabetical order.

A marker used to get the next set of results.

The maximum number of results to return at one time.

The status of the list authorizers request.

Trait Implementations

impl Default for ListAuthorizersRequest
[src]

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

impl Debug for ListAuthorizersRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListAuthorizersRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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