Interface CfnFlowVersion.LoopControllerFlowNodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersion.LoopControllerFlowNodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersion
@Stability(Stable)
public static interface CfnFlowVersion.LoopControllerFlowNodeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains configurations for the controller node of a DoWhile loop in the flow.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.bedrock.*;
LoopControllerFlowNodeConfigurationProperty loopControllerFlowNodeConfigurationProperty = LoopControllerFlowNodeConfigurationProperty.builder()
.continueCondition(FlowConditionProperty.builder()
.name("name")
// the properties below are optional
.expression("expression")
.build())
// the properties below are optional
.maxIterations(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnFlowVersion.LoopControllerFlowNodeConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContinueCondition
Specifies the condition that determines when the flow exits the DoWhile loop.The loop executes until this condition evaluates to true.
Returns union: either
IResolvableorCfnFlowVersion.FlowConditionProperty- See Also:
-
getMaxIterations
Specifies the maximum number of times the DoWhile loop can iterate before the flow exits the loop.Default: - 10
- See Also:
-
builder
@Stability(Stable) static CfnFlowVersion.LoopControllerFlowNodeConfigurationProperty.Builder builder()
-