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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-polly/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.

Constant Summary collapse

SENSITIVE =
[:content]

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)


304
305
306
307
308
309
# File 'gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb', line 304

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

#nameString

Name of the lexicon.

Returns:

  • (String)


304
305
306
307
308
309
# File 'gems/aws-sdk-polly/lib/aws-sdk-polly/types.rb', line 304

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