Class: Aws::BedrockAgent::Types::TextPromptTemplateConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::TextPromptTemplateConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
Contains configurations for a text prompt template. To include a variable, enclose a word in double curly braces as in ‘{variable}`.
Constant Summary collapse
- SENSITIVE =
 [:input_variables, :text]
Instance Attribute Summary collapse
- 
  
    
      #input_variables  ⇒ Array<Types::PromptInputVariable> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of the variables in the prompt template.
 - 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The message for the prompt.
 
Instance Attribute Details
#input_variables ⇒ Array<Types::PromptInputVariable>
An array of the variables in the prompt template.
      7006 7007 7008 7009 7010 7011  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7006 class TextPromptTemplateConfiguration < Struct.new( :input_variables, :text) SENSITIVE = [:input_variables, :text] include Aws::Structure end  | 
  
#text ⇒ String
The message for the prompt.
      7006 7007 7008 7009 7010 7011  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7006 class TextPromptTemplateConfiguration < Struct.new( :input_variables, :text) SENSITIVE = [:input_variables, :text] include Aws::Structure end  |