@amaabca/aws-lex-custom-resources
Version:
AWS Lex infrastructure as code via the CDK
54 lines (53 loc) • 2.45 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ObfuscationSetting = exports.SlotConstraint = exports.FulfillmentActivityType = exports.MessageContentType = exports.ValueSelectionStrategy = exports.LexVoice = exports.LexMessageResponseCard = void 0;
var MessageContentType;
(function (MessageContentType) {
MessageContentType["PLAIN_TEXT"] = "PlainText";
MessageContentType["SSML"] = "SSML";
MessageContentType["CUSTOM_PAYLOAD"] = "CustomPayload";
})(MessageContentType || (MessageContentType = {}));
exports.MessageContentType = MessageContentType;
var SlotConstraint;
(function (SlotConstraint) {
SlotConstraint["REQUIRED"] = "Required";
SlotConstraint["OPTIONAL"] = "Optional";
})(SlotConstraint || (SlotConstraint = {}));
exports.SlotConstraint = SlotConstraint;
var ObfuscationSetting;
(function (ObfuscationSetting) {
ObfuscationSetting["NONE"] = "NONE";
ObfuscationSetting["DEFAULT"] = "DEFAULT_OBFUSCATION";
})(ObfuscationSetting || (ObfuscationSetting = {}));
exports.ObfuscationSetting = ObfuscationSetting;
var ValueSelectionStrategy;
(function (ValueSelectionStrategy) {
ValueSelectionStrategy["ORIGINAL"] = "ORIGINAL_VALUE";
ValueSelectionStrategy["TOP_RESOLUTION"] = "TOP_RESOLUTION";
})(ValueSelectionStrategy || (ValueSelectionStrategy = {}));
exports.ValueSelectionStrategy = ValueSelectionStrategy;
var FulfillmentActivityType;
(function (FulfillmentActivityType) {
FulfillmentActivityType["RETURN_INTENT"] = "ReturnIntent";
FulfillmentActivityType["CODE_HOOK"] = "CodeHook";
})(FulfillmentActivityType || (FulfillmentActivityType = {}));
exports.FulfillmentActivityType = FulfillmentActivityType;
var LexMessageResponseCard;
(function (LexMessageResponseCard) {
LexMessageResponseCard["CLARIFICATION"] = "ClarificationPrompt_ResponseCard";
LexMessageResponseCard["ABORT_STATEMENT"] = "AbortStatement_ResponseCard";
})(LexMessageResponseCard || (LexMessageResponseCard = {}));
exports.LexMessageResponseCard = LexMessageResponseCard;
var LexVoice;
(function (LexVoice) {
LexVoice["MATTHEW"] = "Matthew";
LexVoice["IVY"] = "Ivy";
LexVoice["JOANNA"] = "Joanna";
LexVoice["KENDRA"] = "Kendra";
LexVoice["KIMBERLY"] = "Kimberly";
LexVoice["SALLI"] = "Salli";
LexVoice["JOEY"] = "Joey";
LexVoice["JUSTIN"] = "Justin";
LexVoice["KEVIN"] = "Kevin";
})(LexVoice || (LexVoice = {}));
exports.LexVoice = LexVoice;