interface BotAliasReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lex.BotAliasReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslex#BotAliasReference |
Java | software.amazon.awscdk.interfaces.lex.BotAliasReference |
Python | aws_cdk.interfaces.aws_lex.BotAliasReference |
TypeScript | aws-cdk-lib » interfaces » aws_lex » BotAliasReference |
A reference to a BotAlias resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as interfaces_lex } from 'aws-cdk-lib/interfaces';
const botAliasReference: interfaces_lex.BotAliasReference = {
botAliasArn: 'botAliasArn',
botAliasId: 'botAliasId',
botId: 'botId',
};
Properties
| Name | Type | Description |
|---|---|---|
| bot | string | The ARN of the BotAlias resource. |
| bot | string | The BotAliasId of the BotAlias resource. |
| bot | string | The BotId of the BotAlias resource. |
botAliasArn
Type:
string
The ARN of the BotAlias resource.
botAliasId
Type:
string
The BotAliasId of the BotAlias resource.
botId
Type:
string
The BotId of the BotAlias resource.

.NET
Go
Java
Python
TypeScript