Class: Aws::BedrockAgentRuntime::Types::FlowInputContent
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::BedrockAgentRuntime::Types::FlowInputContent
 
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
    Note:
    
  
FlowInputContent is a union - when making an API calls you must set exactly one of the members.
Contains information about an input into the flow.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #document  ⇒ Hash, ... 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The input to send to the prompt flow input node. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#document ⇒ Hash, ...
The input to send to the prompt flow input node.
| 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 | # File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1964 class FlowInputContent < Struct.new( :document, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Document < FlowInputContent; end class Unknown < FlowInputContent; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 1964 1965 1966 | # File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1964 def unknown @unknown end |