@amaabca/aws-lex-custom-resources
Version:
AWS Lex infrastructure as code via the CDK
16 lines (15 loc) • 462 B
TypeScript
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 {};