Class: Aws::TranscribeService::Types::VocabularyInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::VocabularyInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transcribeservice/types.rb
Overview
Provides information about a custom vocabulary, including the language of the custom vocabulary, when it was last modified, its name, and the processing state.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#language_code ⇒ String
The language code used to create your custom vocabulary.
-
#last_modified_time ⇒ Time
The date and time the specified custom vocabulary was last modified.
-
#vocabulary_name ⇒ String
A unique name, chosen by you, for your custom vocabulary.
-
#vocabulary_state ⇒ String
The processing state of your custom vocabulary.
Instance Attribute Details
#language_code ⇒ String
The language code used to create your custom vocabulary. Each custom vocabulary must contain terms in only one language.
A custom vocabulary can only be used to transcribe files in the same language as the custom vocabulary. For example, if you create a custom vocabulary using US English (‘en-US`), you can only apply this custom vocabulary to files that contain English audio.
5997 5998 5999 6000 6001 6002 6003 6004 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 5997 class VocabularyInfo < Struct.new( :vocabulary_name, :language_code, :last_modified_time, :vocabulary_state) SENSITIVE = [] include Aws::Structure end |
#last_modified_time ⇒ Time
The date and time the specified custom vocabulary was last modified.
Timestamps are in the format ‘YYYY-MM-DD’T’HH:MM:SS.SSSSSS-UTC`. For example, ‘2022-05-04T12:32:58.761000-07:00` represents 12:32 PM UTC-7 on May 4, 2022.
5997 5998 5999 6000 6001 6002 6003 6004 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 5997 class VocabularyInfo < Struct.new( :vocabulary_name, :language_code, :last_modified_time, :vocabulary_state) SENSITIVE = [] include Aws::Structure end |
#vocabulary_name ⇒ String
A unique name, chosen by you, for your custom vocabulary. This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.
5997 5998 5999 6000 6001 6002 6003 6004 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 5997 class VocabularyInfo < Struct.new( :vocabulary_name, :language_code, :last_modified_time, :vocabulary_state) SENSITIVE = [] include Aws::Structure end |
#vocabulary_state ⇒ String
The processing state of your custom vocabulary. If the state is ‘READY`, you can use the custom vocabulary in a `StartTranscriptionJob` request.
5997 5998 5999 6000 6001 6002 6003 6004 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 5997 class VocabularyInfo < Struct.new( :vocabulary_name, :language_code, :last_modified_time, :vocabulary_state) SENSITIVE = [] include Aws::Structure end |