Table of Contents

Class PutLexiconRequest

Namespace
Amazon.Polly.Model
Assembly
AWSSDK.Polly.dll

Container for the parameters to the PutLexicon operation. Stores a pronunciation lexicon in an AWS Region. If a lexicon with the same name already exists in the region, it is overwritten by the new lexicon. Lexicon operations have eventual consistency, therefore, it might take some time before the lexicon is available to the SynthesizeSpeech operation.

For more information, see Managing Lexicons.

public class PutLexiconRequest : AmazonPollyRequest
Inheritance
PutLexiconRequest

Constructors

PutLexiconRequest()

public PutLexiconRequest()

Properties

Content

Gets and sets the property Content.

Content of the PLS lexicon as string data.

public string Content { get; set; }

Property Value

string

Name

Gets and sets the property Name.

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.

public string Name { get; set; }

Property Value

string