Interface CfnFlowVersion.IFlowConditionProperty
Defines a condition in the condition node.
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnFlowVersion.IFlowConditionProperty
Syntax (vb)
Public Interface CfnFlowVersion.IFlowConditionProperty
Remarks
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 flowConditionProperty = new FlowConditionProperty {
Name = "name",
// the properties below are optional
Expression = "expression"
};
Synopsis
Properties
| Expression | Defines the condition. |
| Name | A name for the condition that you can reference. |
Properties
Expression
Defines the condition.
string? Expression { get; }
Property Value
Remarks
You must refer to at least one of the inputs in the condition. For more information, expand the Condition node section in Node types in prompt flows .
Name
A name for the condition that you can reference.
string Name { get; }