Class: Aws::BedrockAgentRuntime::Types::ParameterDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::ParameterDetail
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains details about a parameter in a function for an action group.
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.
3381 3382 3383 3384 3385 3386 3387 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3381 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.
3381 3382 3383 3384 3385 3386 3387 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3381 class ParameterDetail < Struct.new( :description, :required, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the parameter.
3381 3382 3383 3384 3385 3386 3387 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3381 class ParameterDetail < Struct.new( :description, :required, :type) SENSITIVE = [] include Aws::Structure end |