interface BotVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lex.BotVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#BotVersionReference |
Java | software.amazon.awscdk.services.lex.BotVersionReference |
Python | aws_cdk.aws_lex.BotVersionReference |
TypeScript | aws-cdk-lib » aws_lex » BotVersionReference |
A reference to a BotVersion 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 lex } from 'aws-cdk-lib';
const botVersionReference: lex.BotVersionReference = {
botId: 'botId',
botVersion: 'botVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| bot | string | The BotId of the BotVersion resource. |
| bot | string | The BotVersion of the BotVersion resource. |
botId
Type:
string
The BotId of the BotVersion resource.
botVersion
Type:
string
The BotVersion of the BotVersion resource.

.NET
Go
Java
Python
TypeScript