Interface CfnFlow.IConditionFlowNodeConfigurationProperty
Defines a condition node in your flow.
Namespace: Amazon.CDK.AwsBedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IConditionFlowNodeConfigurationProperty
Syntax (vb)
Public Interface IConditionFlowNodeConfigurationProperty
Remarks
You can specify conditions that determine which node comes next in the flow. For more information, see Node types in Amazon Bedrock works in the Amazon Bedrock User Guide.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_bedrock;
var conditionFlowNodeConfigurationProperty = new ConditionFlowNodeConfigurationProperty {
Conditions = new [] { new FlowConditionProperty {
Name = "name",
// the properties below are optional
Expression = "expression"
} }
};
Synopsis
Properties
Conditions | An array of conditions. |
Properties
Conditions
An array of conditions.
object Conditions { get; }
Property Value
System.
Remarks
Each member contains the name of a condition and an expression that defines the condition.