interface ConditionFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnFlow.ConditionFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlow_ConditionFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnFlow.ConditionFlowNodeConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnFlow.ConditionFlowNodeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnFlow » 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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const conditionFlowNodeConfigurationProperty: bedrock.CfnFlow.ConditionFlowNodeConfigurationProperty = {
conditions: [{
name: 'name',
// the properties below are optional
expression: 'expression',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| conditions | IResolvable | (IResolvable | Flow)[] | An array of conditions. |
conditions
Type:
IResolvable | (IResolvable | Flow)[]
An array of conditions.
Each member contains the name of a condition and an expression that defines the condition.

.NET
Go
Java
Python
TypeScript