Struct rusoto_iot::ListRoleAliasesRequest[][src]

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

Fields

Return the list of role aliases in ascending alphabetical order.

A marker used to get the next set of results.

The maximum number of results to return at one time.

Trait Implementations

impl Default for ListRoleAliasesRequest
[src]

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

impl Debug for ListRoleAliasesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListRoleAliasesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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