Class: Aws::LexModelsV2::Types::MultipleValuesSetting
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::MultipleValuesSetting
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Indicates whether a slot can return multiple values.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #allow_multiple_values  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether a slot can return multiple values.
 
Instance Attribute Details
#allow_multiple_values ⇒ Boolean
Indicates whether a slot can return multiple values. When ‘true`, the slot may return more than one value in a response. When `false`, the slot returns only a single value.
Multi-value slots are only available in the en-US locale. If you set this value to ‘true` in any other locale, Amazon Lex throws a `ValidationException`.
If the ‘allowMutlipleValues` is not set, the default value is `false`.
      11114 11115 11116 11117 11118  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11114 class MultipleValuesSetting < Struct.new( :allow_multiple_values) SENSITIVE = [] include Aws::Structure end  |