Class: Aws::Polly::Types::PutLexiconInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Polly::Types::PutLexiconInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-polly/types.rb
Overview
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.
541 542 543 544 545 546 |
# File 'lib/aws-sdk-polly/types.rb', line 541 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.
541 542 543 544 545 546 |
# File 'lib/aws-sdk-polly/types.rb', line 541 class PutLexiconInput < Struct.new( :name, :content) SENSITIVE = [:content] include Aws::Structure end |