interface LoopControllerFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowPropsMixin.LoopControllerFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowPropsMixin_LoopControllerFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowPropsMixin.LoopControllerFlowNodeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowPropsMixin.LoopControllerFlowNodeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const loopControllerFlowNodeConfigurationProperty: bedrock.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