Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/httpapi-lambda/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Amazon API Gateway HTTP API to AWS Lambda
This example creates an http api toghether with a simple lambda function returning *hello world!*
This example creates an http api together with a simple lambda function returning *hello world!*

## Deploy
Run `cdk deploy`. This will deploy / redeploy your Stack to your AWS Account.
Expand Down
4 changes: 2 additions & 2 deletions go/restapi-lambda/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Amazon API Gateway Rest API to AWS Lambda

This example creates a rest api toghether with a simple lambda function returning *hello world!*
This example creates a rest api together with a simple lambda function returning *hello world!*

### Deploy
Run `cdk deploy`. This will deploy / redeploy your Stack to your AWS Account.

After the deployment you will see the API's URL, which represents the url you can then use to execute the lambda function.

### Synthesize Cloudformation Template
To see the Cloudformation template generated by the CDK, run `cdk synth`, then check the output file in the "cdk.out" directory.
To see the Cloudformation template generated by the CDK, run `cdk synth`, then check the output file in the "cdk.out" directory.
4 changes: 2 additions & 2 deletions go/restapi-sqs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Amazon Api Gateway Rest Api to Amazon SQS

This example creates a rest api toghether with a SQS. By calling the rest api, a message will be forwarded to the SQS.
This example creates a rest api together with a SQS. By calling the rest api, a message will be forwarded to the SQS.

## Deploy
Run `cdk deploy`. This will deploy / redeploy your Stack to your AWS Account.
Expand All @@ -18,4 +18,4 @@ $ aws apigateway test-invoke-method --rest-api-id <Rest API ID> --resource-id <R
```

## Synthesize Cloudformation Template
To see the Cloudformation template generated by the CDK, run `cdk synth`, then check the output file in the "cdk.out" directory.
To see the Cloudformation template generated by the CDK, run `cdk synth`, then check the output file in the "cdk.out" directory.
Loading