@amaabca/aws-lex-custom-resources
Version:
AWS Lex infrastructure as code via the CDK
16 lines (15 loc) • 650 B
TypeScript
import { Construct } from 'constructs';
import { CfnResource, Reference } from 'aws-cdk-lib';
import { LexBotAlias, LexBotVersion } from '..';
import { LexBotAliasAttributes, LexBotAttributes } from '../lex-data-types';
export default class extends Construct {
serviceToken: string | Reference;
scope: Construct;
resource: CfnResource;
constructor(scope: Construct, id: string, serviceToken: string | Reference, props: LexBotAttributes);
automaticVersion(): LexBotVersion;
addAlias(aliasProps: LexBotAliasAttributes): LexBotAlias;
lastUpdatedDateTime(): Reference;
botId(): Reference;
botLocaleIds(): Reference;
}