interface BotMemberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lex.CfnBot.BotMemberProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_BotMemberProperty |
Java | software.amazon.awscdk.services.lex.CfnBot.BotMemberProperty |
Python | aws_cdk.aws_lex.CfnBot.BotMemberProperty |
TypeScript | aws-cdk-lib » aws_lex » CfnBot » BotMemberProperty |
A bot that is a member of a bot network.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-botmember.html
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 botMemberProperty: lex.CfnBot.BotMemberProperty = {
botMemberAliasId: 'botMemberAliasId',
botMemberAliasName: 'botMemberAliasName',
botMemberId: 'botMemberId',
botMemberName: 'botMemberName',
botMemberVersion: 'botMemberVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| bot | string | The alias ID of a bot that is a member of this network of bots. |
| bot | string | The alias name of a bot that is a member of this network of bots. |
| bot | string | The unique ID of a bot that is a member of this network of bots. |
| bot | string | The unique name of a bot that is a member of this network of bots. |
| bot | string | The version of a bot that is a member of this network of bots. |
botMemberAliasId
Type:
string
The alias ID of a bot that is a member of this network of bots.
botMemberAliasName
Type:
string
The alias name of a bot that is a member of this network of bots.
botMemberId
Type:
string
The unique ID of a bot that is a member of this network of bots.
botMemberName
Type:
string
The unique name of a bot that is a member of this network of bots.
botMemberVersion
Type:
string
The version of a bot that is a member of this network of bots.

.NET
Go
Java
Python
TypeScript