Show / Hide Table of Contents

Class CfnFlowVersionPropsMixin.FlowConnectionProperty

Contains information about a connection between two nodes in the flow.

Inheritance
object
CfnFlowVersionPropsMixin.FlowConnectionProperty
Implements
CfnFlowVersionPropsMixin.IFlowConnectionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowVersionPropsMixin.FlowConnectionProperty : CfnFlowVersionPropsMixin.IFlowConnectionProperty
Syntax (vb)
Public Class CfnFlowVersionPropsMixin.FlowConnectionProperty Implements CfnFlowVersionPropsMixin.IFlowConnectionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-flowconnection.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.Mixins.Preview.AWS.Bedrock.Mixins;

             var flowConnectionProperty = new FlowConnectionProperty {
                 Configuration = new FlowConnectionConfigurationProperty {
                     Conditional = new FlowConditionalConnectionConfigurationProperty {
                         Condition = "condition"
                     },
                     Data = new FlowDataConnectionConfigurationProperty {
                         SourceOutput = "sourceOutput",
                         TargetInput = "targetInput"
                     }
                 },
                 Name = "name",
                 Source = "source",
                 Target = "target",
                 Type = "type"
             };

Synopsis

Constructors

FlowConnectionProperty()

Contains information about a connection between two nodes in the flow.

Properties

Configuration

The configuration of the connection.

Name

A name for the connection that you can reference.

Source

The node that the connection starts at.

Target

The node that the connection ends at.

Type

Whether the source node that the connection begins from is a condition node ( Conditional ) or not ( Data ).

Constructors

FlowConnectionProperty()

Contains information about a connection between two nodes in the flow.

public FlowConnectionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-flowconnection.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.Mixins.Preview.AWS.Bedrock.Mixins;

             var flowConnectionProperty = new FlowConnectionProperty {
                 Configuration = new FlowConnectionConfigurationProperty {
                     Conditional = new FlowConditionalConnectionConfigurationProperty {
                         Condition = "condition"
                     },
                     Data = new FlowDataConnectionConfigurationProperty {
                         SourceOutput = "sourceOutput",
                         TargetInput = "targetInput"
                     }
                 },
                 Name = "name",
                 Source = "source",
                 Target = "target",
                 Type = "type"
             };

Properties

Configuration

The configuration of the connection.

public object? Configuration { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnFlowVersionPropsMixin.IFlowConnectionConfigurationProperty

Name

A name for the connection 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-flowversion-flowconnection.html#cfn-bedrock-flowversion-flowconnection-name

Source

The node that the connection starts at.

public string? Source { get; set; }
Property Value

string

Remarks

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

Target

The node that the connection ends at.

public string? Target { get; set; }
Property Value

string

Remarks

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

Type

Whether the source node that the connection begins from is a condition node ( Conditional ) or not ( Data ).

public string? Type { get; set; }
Property Value

string

Remarks

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

Implements

CfnFlowVersionPropsMixin.IFlowConnectionProperty
Back to top Generated by DocFX