2
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 1 year has passed since last update.

AWS S3 バケットプレフィックスってなに?

Last updated at Posted at 2022-12-07

この記事はmiriwoお一人様 Advent Calendar 2022の7日目の記事です

概要

  • S3のバケットプレフィックスについて簡単にまとめてみた。

内容

  • 大枠ではフォルダ ≒ プレフィックスと考えれば良さそう。
  • ただし、フォルダは見た目上S3でファイルを整理するために使う。/がフォルダの階層を表す。
  • プレフィックスはS3に保存されているオブジェクト(ファイル)のキー名になる。
  • 例えばmiriwo-testバケットのhogeというフォルダ内にtest.csvというファイルが設置されていたとする。
  • 設置されているファイルはフォルダ、プレフィックスどちらでもmiriwo-test/foo/test.csvと表される。
  • ただしmiriwo-test/foo/test.csvの意味が異なる。
    • フォルダ:miriwo-testバケットのhogeというフォルダ内にtest.csvがある。
    • プレフィックス:test.csvのキー名はmiriwo-test/foo/test.csv
  • フォルダは「見た目上のファイルの位置」を表しており/はフォルダそのものの階層を表す。
  • プレフィックスは「ファイルの名前(キー名)」を表し/はダダの文字列である。DBで言うなら1レコードを表すIDなどのPKの値がプレフィックスに当たる。(おそらく)

参考文献

2
1
0

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
2
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?