API GatewayとLambdaで作るAPIがあります。本記事では、このAPIにIAM認証を適用してみました。 これらの仕組みをAWS SAMで作成します。 おすすめの方 AWS SAMでAPI GatewayのIAM認証をしたい方 AWS SAMでAPI(API Gateway)を作りたい方 AWS SAMでOpen APIを使いたい方 AWS SAMでAPIを作成する sam init sam init \ --runtime python3.9 \ --name Api-IAM-Sample \ --app-template hello-world \ --package-type Zip OpenAPI定義 GET /helloを作成します。 api.yaml openapi: 3.0.1 info: title: sample api version: 1.0.0 paths