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 d0b3f3f commit 5523b36Copy full SHA for 5523b36
README.md
@@ -4,11 +4,24 @@
4
5
This library provides constructs for Golang (Go 1.11 and 1.12 because of go modules) Lambda functions.
6
7
-### Golang Function
8
-Define a `GolangFunction`:
+### Installing
+In Typescript:
9
+
10
+```sh
11
+npm i aws-lambda-golang --save
12
+# or using yarn
13
+yarn add aws-lambda-golang
14
+```
15
16
+### Usage
17
18
19
```ts
-new lambda.GolangFunction(this, 'my-handler');
20
+import * as golang from 'aws-lambda-golang';
21
22
+...
23
24
+new golang.GolangFunction(this, 'my-handler');
25
```
26
27
By default, the construct will use the name of the defining file and the construct's id to look
0 commit comments