Class FlowAliasReference
A reference to a FlowAlias resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
FlowArn
The FlowArn of the FlowAlias resource.
public string FlowArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated