5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Lambdaの挙動メモ S3編

Posted at

S3でどんな操作をしたらLambda関数が起動するのか試してみた。
主にブラウザベースで。
※不明なやつはわかったら更新するかも

#S3のイベントタイプ

Event Type

  • Put
  • Post
  • Copy
  • Complete Multipert Upload
  • Object Created(All)
  • Delete
  • Delete marker created
  • Object Removed(All)

##Put

S3にファイルアップロード

##Post

不明
AWS CLIからの操作かな?

##Copy

  • 適当なファイル名から起動パターンのファイル名に変更
  • 別のフォルダやバケットからファイルをコピー→貼り付け
  • 別のフォルダやバケットからファイルの切り取り→貼り付け

コピーと切り取りはファイルの数だけLambda関数が起動する。

##Complete Multipert Upload

不明
AWS CLIからの操作かな?

##Object Created(All)

creat系の全ての操作

##Delete

  • ファイルの削除
  • 起動パターンのファイル名から適当なファイル名に変更
  • ファイルの切り取り→別のフォルダやバケットに貼り付け

削除と切り取りはファイルの数だけLambda関数が起動する。

##Delete marker created

不明
AWS CLIからの操作かな?

##Object Removed(All)

Remove系の全ての操作

5
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?