You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aws s3 ls --recursive が実行された場合、S3のリスト操作はサーバー側でディレクトリツリーを再帰的に処理します。これは、クライアントが複数のリクエストを送るのではなく、サーバーがディレクトリの構造をトラバースしてリストを作成することを意味します。そのため、サーバーに送信されるリクエストは1つだけですが、そのリクエストに対するレスポンスには、再帰的にリストされたすべてのオブジェクトが含まれます。
aws s3 ls --recursive
のような--recursive
オプションがついたリクエストに対応する。The text was updated successfully, but these errors were encountered: