interface ConditionFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowVersionPropsMixin_ConditionFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowVersionPropsMixin » ConditionFlowNodeConfigurationProperty |
Defines a condition node in your flow.
You can specify conditions that determine which node comes next in the flow. For more information, see Node types in a flow in the Amazon Bedrock User Guide.
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 conditionFlowNodeConfigurationProperty: bedrock_mixins.CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty = {
conditions: [{
expression: 'expression',
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| conditions? | IResolvable | (IResolvable | Flow)[] | An array of conditions. |
conditions?
Type:
IResolvable | (IResolvable | Flow)[]
(optional)
An array of conditions.
Each member contains the name of a condition and an expression that defines the condition.

.NET
Go
Java
Python
TypeScript