API Gateway で基本的な GET URL を作成しました。「name」というパス パラメータを使用します。
この名前パラメーターにアクセスするにはどうすればよいですか? イベントやコンテキストのどちらにも表示されません。
パラメータパスの目的を間違えていますか?
たとえば、私のプレイアプリを使用してみましょう:
GET /api/v1/person @controllers.PersonController.list(limit: Int ?= 50, offset: Long ?= 0)
GET /api/v1/person/$id<[0-9]+> @controllers.PersonController.getById(id: Long)
GET /api/v1/person/$id<[0-9]+>/email @controllers.PersonController.getEmailByPersonId(id: Long)
これは AWS API Gateway を使用して達成できますか?