interface BotReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lex.BotReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslex#BotReference |
Java | software.amazon.awscdk.interfaces.lex.BotReference |
Python | aws_cdk.interfaces.aws_lex.BotReference |
TypeScript | aws-cdk-lib » interfaces » aws_lex » BotReference |
A reference to a Bot 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 botReference: interfaces_lex.BotReference = {
botArn: 'botArn',
botId: 'botId',
};
Properties
| Name | Type | Description |
|---|---|---|
| bot | string | The ARN of the Bot resource. |
| bot | string | The Id of the Bot resource. |
botArn
Type:
string
The ARN of the Bot resource.
botId
Type:
string
The Id of the Bot resource.

.NET
Go
Java
Python
TypeScript