Class CfnFlow.FlowConditionProperty
Defines a condition in the condition node.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlow.FlowConditionProperty : CfnFlow.IFlowConditionProperty
Syntax (vb)
Public Class CfnFlow.FlowConditionProperty Implements CfnFlow.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
Constructors
| FlowConditionProperty() | Defines a condition in the condition node. |
Properties
| Expression | Defines the condition. |
| Name | A name for the condition that you can reference. |
Constructors
FlowConditionProperty()
Defines a condition in the condition node.
public FlowConditionProperty()
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"
};
Properties
Expression
Defines the condition.
public string? Expression { get; set; }
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.
public string Name { get; set; }