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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.BotMemberPropertystatic final classAn implementation forCfnBot.BotMemberProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The alias ID of a bot that is a member of this network of bots.The alias name of a bot that is a member of this network of bots.The unique ID of a bot that is a member of this network of bots.The unique name of a bot that is a member of this network of bots.The version of a bot that is a member of this network of bots.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBotMemberAliasId
The alias ID of a bot that is a member of this network of bots.- See Also:
-
getBotMemberAliasName
The alias name of a bot that is a member of this network of bots.- See Also:
-
getBotMemberId
The unique ID of a bot that is a member of this network of bots.- See Also:
-
getBotMemberName
The unique name of a bot that is a member of this network of bots.- See Also:
-
getBotMemberVersion
The version of a bot that is a member of this network of bots.- See Also:
-
builder
- Returns:
- a
CfnBot.BotMemberProperty.BuilderofCfnBot.BotMemberProperty
-