Class: Aws::BedrockAgent::Types::FlowConnectionConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::FlowConnectionConfiguration
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
FlowConnectionConfiguration is a union - when making an API calls you must set exactly one of the members.
FlowConnectionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FlowConnectionConfiguration corresponding to the set member.
The configuration of the connection.
Direct Known Subclasses
Defined Under Namespace
Classes: Conditional, Data, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #conditional  ⇒ Types::FlowConditionalConnectionConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of a connection originating from a Condition node.
 - 
  
    
      #data  ⇒ Types::FlowDataConnectionConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of a connection originating from a node that isn’t a Condition node.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#conditional ⇒ Types::FlowConditionalConnectionConfiguration
The configuration of a connection originating from a Condition node.
      3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 3001 class FlowConnectionConfiguration < Struct.new( :conditional, :data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Conditional < FlowConnectionConfiguration; end class Data < FlowConnectionConfiguration; end class Unknown < FlowConnectionConfiguration; end end  | 
  
#data ⇒ Types::FlowDataConnectionConfiguration
The configuration of a connection originating from a node that isn’t a Condition node.
      3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 3001 class FlowConnectionConfiguration < Struct.new( :conditional, :data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Conditional < FlowConnectionConfiguration; end class Data < FlowConnectionConfiguration; end class Unknown < FlowConnectionConfiguration; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      3001 3002 3003  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 3001 def unknown @unknown end  |