You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,4 +98,22 @@ When you're ready to deploy your code to Lambda simply run:
98
98
99
99
The deploy script will evaluate your virtualenv and identify your project dependencies. It will package these up along with your handler function to a zip file that it then uploads to AWS Lambda.
100
100
101
-
You can now log into the AWS Lambda management console to verify the code deployed successfully.
101
+
You can now log into the `AWS Lambda management console <https://console.aws.amazon.com/lambda/>`_ to verify the code deployed successfully.
102
+
103
+
Wiring to an API endpoint
104
+
=========================
105
+
106
+
If you're looking to develop a simple microservice you can easily wire your function up to an http endpoint.
107
+
108
+
Begin by navigating to your `AWS Lambda management console <https://console.aws.amazon.com/lambda/>`_ and clicking on your function. Click the API Endpoints tab and click "Add API endpoint".
109
+
110
+
Under API endpoint type select "API Gateway".
111
+
112
+
Next change Method to ``POST`` and Security to "Open" and click submit (NOTE: you should secure this for use in production, open security is use for demo purposes).
0 commit comments