Class: Aws::Polly::Types::PutLexiconInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Polly::Types::PutLexiconInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-polly/types.rb
Overview
Note:
When making an API call, you may pass PutLexiconInput data as a hash:
{
name: "LexiconName", # required
content: "LexiconContent", # required
}
Constant Summary collapse
- SENSITIVE =
[:content]
Instance Attribute Summary collapse
-
#content ⇒ String
Content of the PLS lexicon as string data.
-
#name ⇒ String
Name of the lexicon.
Instance Attribute Details
#content ⇒ String
Content of the PLS lexicon as string data.
595 596 597 598 599 600 |
# File 'lib/aws-sdk-polly/types.rb', line 595 class PutLexiconInput < Struct.new( :name, :content) SENSITIVE = [:content] include Aws::Structure end |
#name ⇒ String
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.
595 596 597 598 599 600 |
# File 'lib/aws-sdk-polly/types.rb', line 595 class PutLexiconInput < Struct.new( :name, :content) SENSITIVE = [:content] include Aws::Structure end |