Show / Hide Table of Contents

Class FlowAliasReference

A reference to a FlowAlias resource.

Inheritance
object
FlowAliasReference
Implements
IFlowAliasReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FlowAliasReference : IFlowAliasReference
Syntax (vb)
Public Class FlowAliasReference Implements IFlowAliasReference
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.Interfaces.Bedrock;

            var flowAliasReference = new FlowAliasReference {
                FlowAliasArn = "flowAliasArn",
                FlowArn = "flowArn"
            };

Synopsis

Constructors

FlowAliasReference()

A reference to a FlowAlias resource.

Properties

FlowAliasArn

The Arn of the FlowAlias resource.

FlowArn

The FlowArn of the FlowAlias resource.

Constructors

FlowAliasReference()

A reference to a FlowAlias resource.

public FlowAliasReference()
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.Interfaces.Bedrock;

            var flowAliasReference = new FlowAliasReference {
                FlowAliasArn = "flowAliasArn",
                FlowArn = "flowArn"
            };

Properties

FlowAliasArn

The Arn of the FlowAlias resource.

public string FlowAliasArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

FlowArn

The FlowArn of the FlowAlias resource.

public string FlowArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IFlowAliasReference
Back to top Generated by DocFX