Class: Aws::BedrockAgent::Types::ActionGroupExecutor
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::ActionGroupExecutor
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
    Note:
    
  
  ActionGroupExecutor is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
ActionGroupExecutor is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ActionGroupExecutor corresponding to the set member.
Type of Executors for an Action Group
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #lambda  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ARN of a Lambda.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#lambda ⇒ String
ARN of a Lambda.
      69 70 71 72 73 74 75 76 77 78  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 69 class ActionGroupExecutor < Struct.new( :lambda, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Lambda < ActionGroupExecutor; end class Unknown < ActionGroupExecutor; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      69 70 71  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 69 def unknown @unknown end  |