We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b839a2 commit 7225750Copy full SHA for 7225750
packages/rest-api-construct/API.md
@@ -4,6 +4,18 @@
4
5
```ts
6
7
+import * as apiGateway from 'aws-cdk-lib/aws-apigateway';
8
+import { Construct } from 'constructs';
9
+import * as lamb from 'aws-cdk-lib/aws-lambda';
10
+
11
+// @public
12
+export class RestApiConstruct extends Construct {
13
+ // Warning: (ae-forgotten-export) The symbol "RestApiConstructProps" needs to be exported by the entry point index.d.ts
14
+ constructor(scope: Construct, id: string, props: RestApiConstructProps);
15
+ // (undocumented)
16
+ readonly api: apiGateway.RestApi;
17
+}
18
19
// (No @packageDocumentation comment for this package)
20
21
```
0 commit comments