File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ # API Gateway
2+
3+ Creating an API Gateway with its various endpoints, methods, and access policies by hand
4+ is tedious and labor-intensive. Developers are helped significantly by using tools such as
5+ SAM (Sserverless Application Model), AWS Cloud Development Kit (CDK), Hashicorp Terraform,
6+ or Chalice.
7+
8+ Chalice is a python-based package that supports the creation of API Gateway endpoints, resources,
9+ methods, and access policies, as well as the Lambda functions behind them.
10+
11+ The demo in this directory offers a simple example of a Chalice-derived API. Once you have installed
12+ Chalice and other dependencies, this command will run the API locally:
13+
14+ ```
15+ chalice local
16+ ```
17+
18+ To deploy a working API:
19+
20+ ```
21+ chalice deploy
22+ ```
You can’t perform that action at this time.
0 commit comments