@amaabca/aws-lex-custom-resources
Version:
AWS Lex infrastructure as code via the CDK
12 lines (11 loc) • 672 B
TypeScript
import { LexBotAttributes } from './lex-data-types';
import LexBot from './bot/lex-bot';
import LexBotDefinition from './bot/lex-bot-definition';
import LexIntent from './intent/lex-intent';
import LexBotLocale from './bot-locale/lex-bot-locale';
import LexBotVersion from './bot-version/lex-bot-version';
import LexSlot from './slot/lex-slot';
import LexSlotType from './slot-type/lex-slot-type';
import LexBotAlias from './bot-alias/lex-bot-alias';
import LexCustomResource from './custom-resource/lex-custom-resource';
export { LexCustomResource, LexBotAttributes, LexBot, LexBotDefinition, LexIntent, LexBotLocale, LexBotVersion, LexSlot, LexSlotType, LexBotAlias, };