Class: Aws::BedrockAgent::Types::PromptFlowNodeSourceConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::PromptFlowNodeSourceConfiguration
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
PromptFlowNodeSourceConfiguration is a union - when making an API calls you must set exactly one of the members.
PromptFlowNodeSourceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PromptFlowNodeSourceConfiguration corresponding to the set member.
Contains configurations for a prompt and whether it is from Prompt management or defined inline.
Defined Under Namespace
Classes: Inline, Resource, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #inline  ⇒ Types::PromptFlowNodeInlineConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains configurations for a prompt that is defined inline.
 - 
  
    
      #resource  ⇒ Types::PromptFlowNodeResourceConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains configurations for a prompt from Prompt management.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#inline ⇒ Types::PromptFlowNodeInlineConfiguration
Contains configurations for a prompt that is defined inline
      5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 5964 class PromptFlowNodeSourceConfiguration < Struct.new( :inline, :resource, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Inline < PromptFlowNodeSourceConfiguration; end class Resource < PromptFlowNodeSourceConfiguration; end class Unknown < PromptFlowNodeSourceConfiguration; end end  | 
  
#resource ⇒ Types::PromptFlowNodeResourceConfiguration
Contains configurations for a prompt from Prompt management.
      5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 5964 class PromptFlowNodeSourceConfiguration < Struct.new( :inline, :resource, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Inline < PromptFlowNodeSourceConfiguration; end class Resource < PromptFlowNodeSourceConfiguration; end class Unknown < PromptFlowNodeSourceConfiguration; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      5964 5965 5966  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 5964 def unknown @unknown end  |