@amaabca/aws-lex-custom-resources
Version:
AWS Lex infrastructure as code via the CDK
12 lines (11 loc) • 464 B
TypeScript
import { LexIntent, LexSlotType } from '..';
import { LexBotLocaleAttributes, LexSlotTypeAttributes, LexIntentAttributes } from '../lex-data-types';
export default class {
props: LexBotLocaleAttributes;
slotTypes: LexSlotType[];
intents: LexIntent[];
constructor(props: LexBotLocaleAttributes);
addSlotType(slotTypeProps: LexSlotTypeAttributes): LexSlotType;
addIntent(intentProps: LexIntentAttributes): LexIntent;
definition(): any;
}