UNPKG

@amaabca/aws-lex-custom-resources

Version:
16 lines (15 loc) 462 B
import { Construct } from 'constructs'; import { Reference } from 'aws-cdk-lib'; import { CfnApplication } from 'aws-cdk-lib/aws-sam'; interface Props { semanticVersion: string; logLevel?: string; } export default class extends Construct { application: CfnApplication; constructor(scope: Construct, id: string, props: Props); serviceToken(): Reference; serviceLinkedRoleArn(): Reference; serviceLinkedRoleName(): string; } export {};