Class: Aws::TranscribeService::Types::CreateVocabularyResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::TranscribeService::Types::CreateVocabularyResponse
 
- Defined in:
- gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #failure_reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If VocabularyStateisFAILED,FailureReasoncontains information about why the custom vocabulary request failed.
- 
  
    
      #language_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The language code you selected for your custom vocabulary. 
- 
  
    
      #last_modified_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date and time you created your custom vocabulary. 
- 
  
    
      #vocabulary_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name you chose for your custom vocabulary. 
- 
  
    
      #vocabulary_state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The processing state of your custom vocabulary. 
Instance Attribute Details
#failure_reason ⇒ String
If VocabularyState is FAILED, FailureReason contains
information about why the custom vocabulary request failed. See
also: Common Errors.
| 1272 1273 1274 1275 1276 1277 1278 1279 1280 | # File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1272 class CreateVocabularyResponse < Struct.new( :vocabulary_name, :language_code, :vocabulary_state, :last_modified_time, :failure_reason) SENSITIVE = [] include Aws::Structure end | 
#language_code ⇒ String
The language code you selected for your custom vocabulary.
| 1272 1273 1274 1275 1276 1277 1278 1279 1280 | # File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1272 class CreateVocabularyResponse < Struct.new( :vocabulary_name, :language_code, :vocabulary_state, :last_modified_time, :failure_reason) SENSITIVE = [] include Aws::Structure end | 
#last_modified_time ⇒ Time
The date and time you created your custom vocabulary.
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.
| 1272 1273 1274 1275 1276 1277 1278 1279 1280 | # File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1272 class CreateVocabularyResponse < Struct.new( :vocabulary_name, :language_code, :vocabulary_state, :last_modified_time, :failure_reason) SENSITIVE = [] include Aws::Structure end | 
#vocabulary_name ⇒ String
The name you chose for your custom vocabulary.
| 1272 1273 1274 1275 1276 1277 1278 1279 1280 | # File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1272 class CreateVocabularyResponse < Struct.new( :vocabulary_name, :language_code, :vocabulary_state, :last_modified_time, :failure_reason) 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.
| 1272 1273 1274 1275 1276 1277 1278 1279 1280 | # File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1272 class CreateVocabularyResponse < Struct.new( :vocabulary_name, :language_code, :vocabulary_state, :last_modified_time, :failure_reason) SENSITIVE = [] include Aws::Structure end |