interface BotMemberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.BotMemberProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_BotMemberProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.BotMemberProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.BotMemberProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » 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/cfn-property-mixins';
const botMemberProperty: lex.CfnBotPropsMixin.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
(optional)
The alias ID of a bot that is a member of this network of bots.
botMemberAliasName?
Type:
string
(optional)
The alias name of a bot that is a member of this network of bots.
botMemberId?
Type:
string
(optional)
The unique ID of a bot that is a member of this network of bots.
botMemberName?
Type:
string
(optional)
The unique name of a bot that is a member of this network of bots.
botMemberVersion?
Type:
string
(optional)
The version of a bot that is a member of this network of bots.

.NET
Go
Java
Python
TypeScript