記事:https://zenn.dev/ysmtegsr/articles/d4eb3e8493b7a5ccd427 サンプルコード ( GitHub ):https://github.com/ysmtegsr/cloudfront-functions-sample
新機能紹介!CloudFront Functionsを触ってみたえが(@ega4432)
View Slide
アジェンダ1. Amazon CloudFrontとは2. [email protected]とは3. CloudFront Functionsとは4. CF2の注意点5. CF2のユースケース6. URL正規化をやってみた7.まとめ新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 2
新機能紹介!CloudFront Functionsを触ってみたAmazon CloudFrontとは2021 ©︎ ega4432 - Built with marp. 3
CloudFrontとは「AWSのCDNサービス」静的、動的なコンテンツを高速配信セキュアユーザを近いエッジロケーションに誘導エッジコンピューティングが利用可能新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 4
新機能紹介!CloudFront Functionsを触ってみた[email protected]とは2021 ©︎ ega4432 - Built with marp. 5
[email protected]とはエッジで Lambda関数を実行できる機能。オリジンCloudFront新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 6
新機能紹介!CloudFront Functionsを触ってみたCloudFront Functionsとは2021 ©︎ ega4432 - Built with marp. 7
CloudFront Functionsとは[email protected]よりも安価で軽量な処理を実行できる機能。オリジンCloudFront新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 8
新機能紹介!CloudFront Functionsを触ってみたCF2の注意点2021 ©︎ ega4432 - Built with marp. 9
CF2の注意点[email protected]よりも縛りが多い実行時間の制限 1ms最大メモリ 2MBランタイムは JavaScriptだけ新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 10
新機能紹介!CloudFront Functionsを触ってみたCF2のユースケース2021 ©︎ ega4432 - Built with marp. 11
CF2のユースケースHTTPリクエスト/レスポンスの操作URLの書き換えやリダイレクトキャッシュの操作JWTなどによるアクセス制御新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 12
新機能紹介!CloudFront Functionsを触ってみたURL正規化をやってみた2021 ©︎ ega4432 - Built with marp. 13
構成S3CloudFrontユーザ$ aws s3 ls s3://cloudfront-functions-sample --recursive.├── index.html└── sample└── index.html新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 14
sampleというオブジェクトは存在しないので 404になってしまう新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 15
目指すかたち下記のようにリクエスト URLを正規化できれば良さそう!/ -> /index.html/sample -> /sample/index.html/sample/ -> /sample/index.html新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 16
新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 17
新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 18
新機能紹介!CloudFront Functionsを触ってみたまとめ2021 ©︎ ega4432 - Built with marp. 19
まとめCloudFront Functionsめちゃくちゃ良さそう![email protected]との使い分けが重要新機能紹介!CloudFront Functionsを触ってみた2021 ©︎ ega4432 - Built with marp. 20
新機能紹介!CloudFront Functionsを触ってみたご静聴ありがとうございました2021 ©︎ ega4432 - Built with marp. 21