Class CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty
Defines a condition node in your flow.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty : CfnFlowVersionPropsMixin.IConditionFlowNodeConfigurationProperty
Syntax (vb)
Public Class CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty Implements CfnFlowVersionPropsMixin.IConditionFlowNodeConfigurationProperty
Remarks
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.
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.CfnPropertyMixins.AWS.Bedrock;
var conditionFlowNodeConfigurationProperty = new ConditionFlowNodeConfigurationProperty {
Conditions = new [] { new FlowConditionProperty {
Expression = "expression",
Name = "name"
} }
};
Synopsis
Constructors
| ConditionFlowNodeConfigurationProperty() | Defines a condition node in your flow. |
Properties
| Conditions | An array of conditions. |
Constructors
ConditionFlowNodeConfigurationProperty()
Defines a condition node in your flow.
public ConditionFlowNodeConfigurationProperty()
Remarks
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.
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.CfnPropertyMixins.AWS.Bedrock;
var conditionFlowNodeConfigurationProperty = new ConditionFlowNodeConfigurationProperty {
Conditions = new [] { new FlowConditionProperty {
Expression = "expression",
Name = "name"
} }
};
Properties
Conditions
An array of conditions.
public object? Conditions { get; set; }
Property Value
Remarks
Each member contains the name of a condition and an expression that defines the condition.
Type union: either IResolvable or (either IResolvable or CfnFlowVersionPropsMixin.IFlowConditionProperty)[]