Class: Aws::BedrockAgent::Types::FlowCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::FlowCondition
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Defines a condition in the condition node.
Constant Summary collapse
- SENSITIVE =
[:expression]
Instance Attribute Summary collapse
-
#expression ⇒ String
Defines the condition.
-
#name ⇒ String
A name for the condition that you can reference.
Instance Attribute Details
#expression ⇒ String
Defines the condition. You must refer to at least one of the inputs in the condition. For more information, expand the Condition node section in Node types in prompt flows.
2967 2968 2969 2970 2971 2972 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2967 class FlowCondition < Struct.new( :expression, :name) SENSITIVE = [:expression] include Aws::Structure end |
#name ⇒ String
A name for the condition that you can reference.
2967 2968 2969 2970 2971 2972 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2967 class FlowCondition < Struct.new( :expression, :name) SENSITIVE = [:expression] include Aws::Structure end |