Class: Aws::BedrockAgent::Types::FlowNodeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::FlowNodeInput
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Contains configurations for an input to a node.
Constant Summary collapse
- SENSITIVE =
[:expression]
Instance Attribute Summary collapse
-
#expression ⇒ String
An expression that formats the input for the node.
-
#name ⇒ String
A name for the input that you can reference.
-
#type ⇒ String
The data type of the input.
Instance Attribute Details
#expression ⇒ String
An expression that formats the input for the node. For an explanation of how to create expressions, see Expressions in Prompt flows in Amazon Bedrock.
4136 4137 4138 4139 4140 4141 4142 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4136 class FlowNodeInput < Struct.new( :expression, :name, :type) SENSITIVE = [:expression] include Aws::Structure end |
#name ⇒ String
A name for the input that you can reference.
4136 4137 4138 4139 4140 4141 4142 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4136 class FlowNodeInput < Struct.new( :expression, :name, :type) SENSITIVE = [:expression] include Aws::Structure end |
#type ⇒ String
The data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.
4136 4137 4138 4139 4140 4141 4142 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4136 class FlowNodeInput < Struct.new( :expression, :name, :type) SENSITIVE = [:expression] include Aws::Structure end |