Class: Aws::BedrockAgent::Types::ParameterDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::ParameterDetail
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Contains details about a parameter in a function for an action group.
This data type is used in the following API operations:
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description of the parameter.
-
#required ⇒ Boolean
Whether the parameter is required for the agent to complete the function for action group invocation.
-
#type ⇒ String
The data type of the parameter.
Instance Attribute Details
#description ⇒ String
A description of the parameter. Helps the foundation model determine how to elicit the parameters from the user.
5541 5542 5543 5544 5545 5546 5547 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5541 class ParameterDetail < Struct.new( :description, :required, :type) SENSITIVE = [] include Aws::Structure end |
#required ⇒ Boolean
Whether the parameter is required for the agent to complete the function for action group invocation.
5541 5542 5543 5544 5545 5546 5547 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5541 class ParameterDetail < Struct.new( :description, :required, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the parameter.
5541 5542 5543 5544 5545 5546 5547 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5541 class ParameterDetail < Struct.new( :description, :required, :type) SENSITIVE = [] include Aws::Structure end |