Class: Aws::Polly::Types::LexiconAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::Polly::Types::LexiconAttributes
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-polly/types.rb
Overview
Contains metadata describing the lexicon such as the number of lexemes, language code, and so on. For more information, see [Managing Lexicons].
[1]: docs.aws.amazon.com/polly/latest/dg/managing-lexicons.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alphabet ⇒ String
Phonetic alphabet used in the lexicon.
-
#language_code ⇒ String
Language code that the lexicon applies to.
-
#last_modified ⇒ Time
Date lexicon was last modified (a timestamp value).
-
#lexemes_count ⇒ Integer
Number of lexemes in the lexicon.
-
#lexicon_arn ⇒ String
Amazon Resource Name (ARN) of the lexicon.
-
#size ⇒ Integer
Total size of the lexicon, in characters.
Instance Attribute Details
#alphabet ⇒ String
Phonetic alphabet used in the lexicon. Valid values are ‘ipa` and `x-sampa`.
349 350 351 352 353 354 355 356 357 358 |
# File 'lib/aws-sdk-polly/types.rb', line 349 class LexiconAttributes < Struct.new( :alphabet, :language_code, :last_modified, :lexicon_arn, :lexemes_count, :size) SENSITIVE = [] include Aws::Structure end |
#language_code ⇒ String
Language code that the lexicon applies to. A lexicon with a language code such as “en” would be applied to all English languages (en-GB, en-US, en-AUS, en-WLS, and so on.
349 350 351 352 353 354 355 356 357 358 |
# File 'lib/aws-sdk-polly/types.rb', line 349 class LexiconAttributes < Struct.new( :alphabet, :language_code, :last_modified, :lexicon_arn, :lexemes_count, :size) SENSITIVE = [] include Aws::Structure end |
#last_modified ⇒ Time
Date lexicon was last modified (a timestamp value).
349 350 351 352 353 354 355 356 357 358 |
# File 'lib/aws-sdk-polly/types.rb', line 349 class LexiconAttributes < Struct.new( :alphabet, :language_code, :last_modified, :lexicon_arn, :lexemes_count, :size) SENSITIVE = [] include Aws::Structure end |
#lexemes_count ⇒ Integer
Number of lexemes in the lexicon.
349 350 351 352 353 354 355 356 357 358 |
# File 'lib/aws-sdk-polly/types.rb', line 349 class LexiconAttributes < Struct.new( :alphabet, :language_code, :last_modified, :lexicon_arn, :lexemes_count, :size) SENSITIVE = [] include Aws::Structure end |
#lexicon_arn ⇒ String
Amazon Resource Name (ARN) of the lexicon.
349 350 351 352 353 354 355 356 357 358 |
# File 'lib/aws-sdk-polly/types.rb', line 349 class LexiconAttributes < Struct.new( :alphabet, :language_code, :last_modified, :lexicon_arn, :lexemes_count, :size) SENSITIVE = [] include Aws::Structure end |
#size ⇒ Integer
Total size of the lexicon, in characters.
349 350 351 352 353 354 355 356 357 358 |
# File 'lib/aws-sdk-polly/types.rb', line 349 class LexiconAttributes < Struct.new( :alphabet, :language_code, :last_modified, :lexicon_arn, :lexemes_count, :size) SENSITIVE = [] include Aws::Structure end |