Interface CfnBot.BotMemberProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.BotMemberProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.BotMemberProperty extends software.amazon.jsii.JsiiSerializable
A bot that is a member of a bot network.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lex.*;
 BotMemberProperty botMemberProperty = BotMemberProperty.builder()
         .botMemberAliasId("botMemberAliasId")
         .botMemberAliasName("botMemberAliasName")
         .botMemberId("botMemberId")
         .botMemberName("botMemberName")
         .botMemberVersion("botMemberVersion")
         .build();
 

See Also: