the-ldk
Version:
Welcome to the LDK! A collection of custom AWS CDK constructs to help you build serverless applications faster.
8 lines (7 loc) • 327 B
TypeScript
import { NestedStack, NestedStackProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { RestApi } from 'aws-cdk-lib/aws-apigateway';
export declare class ExampleAPIGatewayStack extends NestedStack {
readonly restAPI: RestApi;
constructor(scope: Construct, id: string, props?: NestedStackProps);
}