@amaabca/aws-lex-custom-resources
Version:
AWS Lex infrastructure as code via the CDK
9 lines (8 loc) • 327 B
TypeScript
import * as cdk from '@aws-cdk/core';
import { LexBotAliasAttributes } from '../lex-data-types';
export default class LexBotAlias extends cdk.Construct {
scope: cdk.Stack;
id: string;
props: LexBotAliasAttributes;
constructor(scope: cdk.Stack, id: string, serviceToken: string, props: LexBotAliasAttributes);
}