UNPKG

@amaabca/aws-lex-custom-resources

Version:
16 lines (15 loc) 577 B
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; }