Class: Aws::BedrockAgent::Types::LexFlowNodeConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::LexFlowNodeConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
Contains configurations for a Lex node in the flow. You specify a Amazon Lex bot to invoke. This node takes an utterance as the input and returns as the output the intent identified by the Amazon Lex bot. For more information, see [Node types in Amazon Bedrock works] in the Amazon Bedrock User Guide.
[1]: docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bot_alias_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke.
 - 
  
    
      #locale_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Region to invoke the Amazon Lex bot in.
 
Instance Attribute Details
#bot_alias_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke.
      4667 4668 4669 4670 4671 4672  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 4667 class LexFlowNodeConfiguration < Struct.new( :bot_alias_arn, :locale_id) SENSITIVE = [] include Aws::Structure end  | 
  
#locale_id ⇒ String
The Region to invoke the Amazon Lex bot in.
      4667 4668 4669 4670 4671 4672  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 4667 class LexFlowNodeConfiguration < Struct.new( :bot_alias_arn, :locale_id) SENSITIVE = [] include Aws::Structure end  |