Struct rusoto_polly::ListLexiconsOutput[][src]

pub struct ListLexiconsOutput {
    pub lexicons: Option<Vec<LexiconDescription>>,
    pub next_token: Option<String>,
}

Fields

A list of lexicon names and attributes.

The pagination token to use in the next request to continue the listing of lexicons. NextToken is returned only if the response is truncated.

Trait Implementations

impl Default for ListLexiconsOutput
[src]

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

impl Debug for ListLexiconsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListLexiconsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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