Class: Aws::BedrockAgent::Types::FlowNodeOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::FlowNodeOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
Contains configurations for an output from a node.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A name for the output that you can reference.
-
#type ⇒ String
The data type of the output.
Instance Attribute Details
#name ⇒ String
A name for the output that you can reference.
3265 3266 3267 3268 3269 3270 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3265 class FlowNodeOutput < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the output. If the output doesn’t match this type at runtime, a validation error will be thrown.
3265 3266 3267 3268 3269 3270 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3265 class FlowNodeOutput < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |