@amaabca/aws-lex-custom-resources
Version:
AWS Lex infrastructure as code via the CDK
16 lines (15 loc) • 577 B
TypeScript
import { Construct } from 'constructs';
import { Reference } from 'aws-cdk-lib';
import { LexBot, LexBotLocale } from '..';
import { LexBotAttributes, LexBotLocaleAttributes } from '../lex-data-types';
export default class {
scope: Construct;
id: string;
serviceToken: string | Reference;
props: LexBotAttributes;
locales: LexBotLocale[];
constructor(scope: Construct, id: string, serviceToken: string | Reference, props: LexBotAttributes);
addLocale(localeProps: LexBotLocaleAttributes): LexBotLocale;
definition(): any;
build(): LexBot;
}