Class: Aws::LexModelsV2::Types::BotAliasLocaleSettings
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::BotAliasLocaleSettings
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Specifies settings that are unique to a locale. For example, you can use different Lambda function depending on the bot’s locale.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code_hook_specification  ⇒ Types::CodeHookSpecification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the Lambda function that should be used in the locale.
 - 
  
    
      #enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Determines whether the locale is enabled for the bot.
 
Instance Attribute Details
#code_hook_specification ⇒ Types::CodeHookSpecification
Specifies the Lambda function that should be used in the locale.
      1971 1972 1973 1974 1975 1976  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1971 class BotAliasLocaleSettings < Struct.new( :enabled, :code_hook_specification) SENSITIVE = [] include Aws::Structure end  | 
  
#enabled ⇒ Boolean
Determines whether the locale is enabled for the bot. If the value is ‘false`, the locale isn’t available for use.
      1971 1972 1973 1974 1975 1976  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1971 class BotAliasLocaleSettings < Struct.new( :enabled, :code_hook_specification) SENSITIVE = [] include Aws::Structure end  |