Class: Aws::BedrockAgent::Types::TextPromptTemplateConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#input_variablesArray<Types::PromptInputVariable>

An array of the variables in the prompt template.

Returns:



6900
6901
6902
6903
6904
6905
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6900

class TextPromptTemplateConfiguration < Struct.new(
  :input_variables,
  :text)
  SENSITIVE = [:input_variables, :text]
  include Aws::Structure
end

#textString

The message for the prompt.

Returns:

  • (String)


6900
6901
6902
6903
6904
6905
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6900

class TextPromptTemplateConfiguration < Struct.new(
  :input_variables,
  :text)
  SENSITIVE = [:input_variables, :text]
  include Aws::Structure
end