Class: Aws::LexModelsV2::Types::BatchUpdateCustomVocabularyItemRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::BatchUpdateCustomVocabularyItemRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bot_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the bot associated with this custom vocabulary.
 - 
  
    
      #bot_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the version of the bot associated with this custom vocabulary.
 - 
  
    
      #custom_vocabulary_item_list  ⇒ Array<Types::CustomVocabularyItem> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of custom vocabulary items with updated fields.
 - 
  
    
      #locale_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the language and locale where this custom vocabulary is used.
 
Instance Attribute Details
#bot_id ⇒ String
The identifier of the bot associated with this custom vocabulary
      1788 1789 1790 1791 1792 1793 1794 1795  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1788 class BatchUpdateCustomVocabularyItemRequest < Struct.new( :bot_id, :bot_version, :locale_id, :custom_vocabulary_item_list) SENSITIVE = [] include Aws::Structure end  | 
  
#bot_version ⇒ String
The identifier of the version of the bot associated with this custom vocabulary.
      1788 1789 1790 1791 1792 1793 1794 1795  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1788 class BatchUpdateCustomVocabularyItemRequest < Struct.new( :bot_id, :bot_version, :locale_id, :custom_vocabulary_item_list) SENSITIVE = [] include Aws::Structure end  | 
  
#custom_vocabulary_item_list ⇒ Array<Types::CustomVocabularyItem>
A list of custom vocabulary items with updated fields. Each entry must contain a phrase and can optionally contain a displayAs and/or a weight.
      1788 1789 1790 1791 1792 1793 1794 1795  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1788 class BatchUpdateCustomVocabularyItemRequest < Struct.new( :bot_id, :bot_version, :locale_id, :custom_vocabulary_item_list) SENSITIVE = [] include Aws::Structure end  | 
  
#locale_id ⇒ String
The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see [ Supported Languages ][1].
      1788 1789 1790 1791 1792 1793 1794 1795  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1788 class BatchUpdateCustomVocabularyItemRequest < Struct.new( :bot_id, :bot_version, :locale_id, :custom_vocabulary_item_list) SENSITIVE = [] include Aws::Structure end  |