Class: Aws::BedrockRuntime::Types::PromptVariableValues
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockRuntime::Types::PromptVariableValues
 
 
- Defined in:
 - gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
 
Overview
    Note:
    
  
PromptVariableValues is a union - when making an API calls you must set exactly one of the members.
Contains a map of variables in a prompt from Prompt management to an object containing the values to fill in for them when running model invocation. For more information, see How Prompt management works.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The text value that the variable maps to.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#text ⇒ String
The text value that the variable maps to.
      3567 3568 3569 3570 3571 3572 3573 3574 3575 3576  | 
    
      # File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 3567 class PromptVariableValues < Struct.new( :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Text < PromptVariableValues; end class Unknown < PromptVariableValues; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      3567 3568 3569  | 
    
      # File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 3567 def unknown @unknown end  |