This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
# このスクリプトをLambdaに入れ、API Gatewayで「Lambdaプロキシ統合」のエンドポイントを作成し、 | |
# パス「/」「/{proxy+}」に対してメソッド「ANY」でこのスクリプトに向ける。 | |
# エラーメッセージをS3に格納しているためIAMロールでS3へのアクセス権を設定する。 | |
# エラーメッセージの格納されたバケット名 | |
AWS_S3_BUCKET_NAME = 'mstdn-maintenance' | |
# エラーメッセージの格納されたオブジェクト名 | |
GET_OBJECT_KEY_NAME = '503.html' |