UNPKG

@amaabca/aws-lex-custom-resources

Version:
12 lines (11 loc) 415 B
import * as cdk from '@aws-cdk/core'; import { LexIntentAttributes } from '../lex-data-types'; export default class LexIntent extends cdk.Construct { scope: cdk.Stack; id: string; props: LexIntentAttributes; resource: cdk.CustomResource; constructor(scope: cdk.Stack, id: string, serviceToken: string, props: LexIntentAttributes); getName(): string; getResource(): cdk.CustomResource; }