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.
6276 6277 6278 6279 6280 6281 6282 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6276 class Parameter < Struct.new( :name, :type, :value) SENSITIVE = [] include Aws::Structure end |