Class: Aws::Polly::Types::Lexicon

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-polly/types.rb

Overview

Provides lexicon name and lexicon content in string format. For more information, see [Pronunciation Lexicon Specification (PLS) Version 1.0].

[1]: www.w3.org/TR/pronunciation-lexicon/

Instance Attribute Summary collapse

Instance Attribute Details

#contentString

Lexicon content in string format. The content of a lexicon must be in PLS format.

Returns:

  • (String)


179
180
181
182
183
# File 'lib/aws-sdk-polly/types.rb', line 179

class Lexicon < Struct.new(
  :content,
  :name)
  include Aws::Structure
end

#nameString

Name of the lexicon.

Returns:

  • (String)


179
180
181
182
183
# File 'lib/aws-sdk-polly/types.rb', line 179

class Lexicon < Struct.new(
  :content,
  :name)
  include Aws::Structure
end