Class BotAliasReference
A reference to a BotAlias resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class BotAliasReference : IBotAliasReference
Syntax (vb)
Public Class BotAliasReference Implements IBotAliasReference
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.AWS.Lex;
var botAliasReference = new BotAliasReference {
BotAliasArn = "botAliasArn",
BotAliasId = "botAliasId",
BotId = "botId"
};
Synopsis
Constructors
BotAliasReference() | A reference to a BotAlias resource. |
Properties
BotAliasArn | The ARN of the BotAlias resource. |
BotAliasId | The BotAliasId of the BotAlias resource. |
BotId | The BotId of the BotAlias resource. |
Constructors
BotAliasReference()
A reference to a BotAlias resource.
public BotAliasReference()
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.AWS.Lex;
var botAliasReference = new BotAliasReference {
BotAliasArn = "botAliasArn",
BotAliasId = "botAliasId",
BotId = "botId"
};
Properties
BotAliasArn
The ARN of the BotAlias resource.
public string BotAliasArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
BotAliasId
The BotAliasId of the BotAlias resource.
public string BotAliasId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
BotId
The BotId of the BotAlias resource.
public string BotId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated