Skip to content

Commit 411046f

Browse files
authored
Update README.md
1 parent c8b0271 commit 411046f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Please pull request if you are intersted in it.
2727
Define settings of the AWS services you want to integrate under `custom > apiGatewayServiceProxy` and run `serverless deploy`.
2828

2929
### Kinesis
30-
Here is syntax for Kinesis proxy in serverless.yml.
30+
Sample syntax for Kinesis proxy in serverless.yml.
3131
```yaml
3232
custom:
3333
apiGatewayServiceProxy:
@@ -45,13 +45,13 @@ resources:
4545
ShardCount: 1
4646
```
4747

48-
Here is a sample request after deploying.
48+
Sample request after deploying.
4949
```
5050
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'
5151
```
5252
5353
### SQS
54-
Here is syntax for SQS proxy in serverless.yml.
54+
Sample syntax for SQS proxy in serverless.yml.
5555
```yaml
5656
custom:
5757
apiGatewayServiceProxy:
@@ -67,7 +67,7 @@ resources:
6767
Type: "AWS::SQS::Queue"
6868
```
6969

70-
Here is a sample request after deploying.
70+
Sample request after deploying.
7171
```
7272
curl -XPOST https://xxxxxx.execute-api.us-east-1.amazonaws.com/dev/sqs -d '{"message": "testtest"}' -H 'Content-Type:application/json'
7373
```

0 commit comments

Comments
 (0)