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