UNPKG

@amaabca/aws-lex-custom-resources

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