Class: Aws::BedrockAgent::Types::ConditionFlowNodeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::ConditionFlowNodeConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
Defines a condition node in your flow. You can specify conditions that determine which node comes next in the flow. For more information, see
- Node types in Amazon Bedrock works][1
-
in the Amazon Bedrock User
Guide.
[1]: docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html
Constant Summary collapse
- SENSITIVE =
[:conditions]
Instance Attribute Summary collapse
-
#conditions ⇒ Array<Types::FlowCondition>
An array of conditions.
Instance Attribute Details
#conditions ⇒ Array<Types::FlowCondition>
An array of conditions. Each member contains the name of a condition and an expression that defines the condition.
1086 1087 1088 1089 1090 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 1086 class ConditionFlowNodeConfiguration < Struct.new( :conditions) SENSITIVE = [:conditions] include Aws::Structure end |