Struct rusoto_polly::PutLexiconInput[][src]

pub struct PutLexiconInput {
    pub content: String,
    pub name: String,
}

Fields

Content of the PLS lexicon as string data.

Name of the lexicon. The name must follow the regular express format [0-9A-Za-z]{1,20}. That is, the name is a case-sensitive alphanumeric string up to 20 characters long.

Trait Implementations

impl Default for PutLexiconInput
[src]

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

impl Debug for PutLexiconInput
[src]

Formats the value using the given formatter. Read more

impl Clone for PutLexiconInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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