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 cefc1ef commit 90a268bCopy full SHA for 90a268b
README.md
@@ -18,6 +18,7 @@ plugins:
18
Define something to setting of AWS services you want to integrate with under `custom > apiGatewayServiceProxy` and run `serverless deploy`.
19
20
### Kinesis
21
+Here is syntax for Kinesis proxy in serverless.yml.
22
```yaml
23
custom:
24
apiGatewayServiceProxy:
@@ -34,3 +35,11 @@ resources:
34
35
Properties:
36
ShardCount: 1
37
```
38
+
39
+Here is sample request after deploying.
40
+```
41
+curl -XPOST https://xxxxxxx.execute-api.us-east-1.amazonaws.com/dev/kinesis -d '{"Data": "some data","PartitionKey": "some key"}' -H 'Content-Type:application/json'
42
43
44
45
0 commit comments