Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename directory name #63

Merged
merged 3 commits into from
Feb 10, 2024
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The s3hub command provides following features:
|Name|README|implementation|
|:--|:--|:--|
|[Lambda batch with EventBridge (CloudWatch Events)](./cloudformation/lambda-batch/README.md)|✅|100%|
|[Lambda with API Gateway](./cloudformation/api-gateway-with-lambda/README.md)|✅|100%|
|[Lambda with API Gateway](./cloudformation/lambda-with-api-gw/README.md)|✅|100%|
|[CloudWatch Real User Monitoring (RUM)](./cloudformation/cloudwatch-rum/README.md)|✅|100%|


Expand Down
1 change: 1 addition & 0 deletions cloudformation/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ help: ## Show this help
deploy: ## Deploy CloudFormation Template
cd static-web-site-distribution && make test-deploy || { echo "Deployment of static-web-site-distribution failed"; exit 1; }
cd lambda-batch && make test-deploy || { echo "Deployment of lambda-batch failed"; exit 1; }
cd lambda-with-api-gw && make test-deploy || { echo "Deployment of lambda-with-api-gw failed"; exit 1; }
cd cloudwatch-rum && make test-deploy || { echo "Deployment of cloudwatch-rum failed"; exit 1; }
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.DEFAULT_GOAL := help

BINARY_NAME = bootstrap
AWS_STACK_NAME = lambda-batch
AWS_STACK_NAME = lambda-with-api-gw
TEMPLATE_FILE = template.yml

.PHONY: help clean dependency_check build deploy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## API Gateway with Lambda
## Lambda with API Gateway
### Overview

Lambda and API Gateway combined infrastructure is a powerful means for realizing serverless architecture. Lambda is a service for executing code, while API Gateway creates HTTP endpoints and forwards requests to Lambda functions.
Expand Down
Loading