Show / Hide Table of Contents

Class CfnFlow.FlowConditionProperty

Defines a condition in the condition node.

Inheritance
object
CfnFlow.FlowConditionProperty
Implements
CfnFlow.IFlowConditionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flowcondition.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flowcondition.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.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

string

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flowcondition.html#cfn-bedrock-flow-flowcondition-expression

Name

A name for the condition that you can reference.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flowcondition.html#cfn-bedrock-flow-flowcondition-name

Implements

CfnFlow.IFlowConditionProperty
Back to top Generated by DocFX