Show / Hide Table of Contents

Class CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty

Defines a condition node in your flow.

Inheritance
object
CfnFlowVersionPropsMixin.ConditionFlowNodeConfigurationProperty
Implements
CfnFlowVersionPropsMixin.IConditionFlowNodeConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-conditionflownodeconfiguration.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-conditionflownodeconfiguration.html

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

object

Remarks

Each member contains the name of a condition and an expression that defines the condition.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-conditionflownodeconfiguration.html#cfn-bedrock-flowversion-conditionflownodeconfiguration-conditions

Type union: either IResolvable or (either IResolvable or CfnFlowVersionPropsMixin.IFlowConditionProperty)[]

Implements

CfnFlowVersionPropsMixin.IConditionFlowNodeConfigurationProperty
Back to top Generated by DocFX