Class: Aws::BedrockAgent::Types::LoopControllerFlowNodeConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb

Overview

Contains configurations for the controller node of a DoWhile loop in the flow.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#continue_conditionTypes::FlowCondition

Specifies the condition that determines when the flow exits the DoWhile loop. The loop executes until this condition evaluates to true.



7164
7165
7166
7167
7168
7169
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 7164

class LoopControllerFlowNodeConfiguration < Struct.new(
  :continue_condition,
  :max_iterations)
  SENSITIVE = []
  include Aws::Structure
end

#max_iterationsInteger

Specifies the maximum number of times the DoWhile loop can iterate before the flow exits the loop.

Returns:

  • (Integer)


7164
7165
7166
7167
7168
7169
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 7164

class LoopControllerFlowNodeConfiguration < Struct.new(
  :continue_condition,
  :max_iterations)
  SENSITIVE = []
  include Aws::Structure
end