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.
3257 3258 3259 3260 3261 3262 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3257 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.
3257 3258 3259 3260 3261 3262 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3257 class FlowNodeOutput < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |