Struct rusoto_kms::ListAliasesResponse [] [src]

pub struct ListAliasesResponse {
    pub aliases: Option<Vec<AliasListEntry>>,
    pub next_marker: Option<String>,
    pub truncated: Option<bool>,
}

Fields

A list of aliases.

When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.

A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.

Trait Implementations

impl Default for ListAliasesResponse
[src]

[src]

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

impl Debug for ListAliasesResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListAliasesResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations