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/

Constant Summary collapse

SENSITIVE =
[:name]

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)


335
336
337
338
339
340
# File 'lib/aws-sdk-polly/types.rb', line 335

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

#nameString

Name of the lexicon.

Returns:

  • (String)


335
336
337
338
339
340
# File 'lib/aws-sdk-polly/types.rb', line 335

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