Class: Aws::BedrockAgentRuntime::Types::FunctionParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::FunctionParameter
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains information about a parameter of the function.
This data type is used in the following API operations:
- In the
returnControl
field of the InvokeAgent response
^
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the parameter.
-
#type ⇒ String
The data type of the parameter.
-
#value ⇒ String
The value of the parameter.
Instance Attribute Details
#name ⇒ String
The name of the parameter.
1738 1739 1740 1741 1742 1743 1744 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1738 class FunctionParameter < Struct.new( :name, :type, :value) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the parameter.
1738 1739 1740 1741 1742 1743 1744 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1738 class FunctionParameter < Struct.new( :name, :type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the parameter.
1738 1739 1740 1741 1742 1743 1744 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1738 class FunctionParameter < Struct.new( :name, :type, :value) SENSITIVE = [] include Aws::Structure end |