這篇筆記下 AWS 的 API Gateway 的 Rest, http 和 websocket API。
課程相關資訊
[連結]:https://www.udemy.com/course/aws-certified-developer-associate-dva-c01/learn/lecture/19731696
本篇範圍:Chapter 24
請注意:本系列文章為個人對應課程的消化吸收後,所整理出來的內容。換言之,並不一定會包含全部的課程內容,也有可能會添加其他資源來說明。
內容
1. 本質上 rest api 和 http api 都是 Restful API 的產品
2. Rest api 大致上比 http api 的功能更完整,不過價格也較貴。你需要依照自己的狀況作選擇,詳情可以點這邊:https://docs.aws.amazon.com/zh_tw/apigateway/latest/developerguide/http-api-vs-rest.html
3. Websocket API 是雙向的溝通,可以開啟 stateful 記錄使用者的狀態
4. websocket 的網址結構為:wss://[unique-id].execute-api.[region].amazonaws.com/[stage-name]
5. 你可以創造 Table 資料來讓 websocket 有路由 (request.body.action)