interface LoopControllerFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowPropsMixin.LoopControllerFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowPropsMixin_LoopControllerFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowPropsMixin.LoopControllerFlowNodeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowPropsMixin.LoopControllerFlowNodeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowPropsMixin » LoopControllerFlowNodeConfigurationProperty |
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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const loopControllerFlowNodeConfigurationProperty: bedrock_mixins.CfnFlowPropsMixin.LoopControllerFlowNodeConfigurationProperty = {
continueCondition: {
expression: 'expression',
name: 'name',
},
maxIterations: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| continue | IResolvable | Flow | Specifies the condition that determines when the flow exits the DoWhile loop. |
| max | number | Specifies the maximum number of times the DoWhile loop can iterate before the flow exits the loop. |
continueCondition?
Type:
IResolvable | Flow
(optional)
Specifies the condition that determines when the flow exits the DoWhile loop.
The loop executes until this condition evaluates to true.
maxIterations?
Type:
number
(optional, default: 10)
Specifies the maximum number of times the DoWhile loop can iterate before the flow exits the loop.

.NET
Go
Java
Python
TypeScript