@Get(“/wellcome”) fun wellcomeMessage(): String { return “Wellcome to nakanoshima.dev !!” } @Get(“/translate”) fun translate(en: String): String { val result = vocabulary. getByWord(en) return result[“ja”] } AWS Cloud Amazon API Gateway /welcome GET Lambda関数 Lambda関数 /translate GET 26
@Get(“/wellcome”) fun wellcomeMessage(): String { return “Wellcome to nakanoshima.dev !!” } @Get(“/translate”) fun translate(word: String): String { val result = vocabulary. getByWord(word) return result[“ja”] } AWS Cloud Amazon API Gateway /welcome GET Lambda関数 Lambda関数 /translate GET 27 クエリパラメーターは 引数にマッピングされる