LoginSignup
1
0

More than 3 years have passed since last update.

S3バケットを空にするRubyスクリプト

Posted at

APIなどでバケットを削除する際、空にしてからでないと削除できません。バケットを空にするプログラムを作るのは、けっこうな手間なのですが、Rubyだと一発でいけます。

clear-bucket.rb
require 'aws-sdk-s3'
bucket = Aws::S3::Bucket.new('<バケット名>')
bucket.clear!
1
0
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
1
0