Class: Aws::BedrockAgentRuntime::Types::Parameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::Parameter
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
A parameter for the API request or function.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the parameter.
-
#type ⇒ String
The type of the parameter.
-
#value ⇒ String
The value of the parameter.
Instance Attribute Details
#name ⇒ String
The name of the parameter.
3355 3356 3357 3358 3359 3360 3361 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3355 class Parameter < Struct.new( :name, :type, :value) SENSITIVE = [] include Aws::Structure end |