Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は使用しています:
log_file = AWS::S3::Bucket.logs_for('downloads.idance.net').first
次に、操作する各ファイルを削除したいのですが、方法がわかりません。
log_file.delete
メソッドエラーをスローしません
私はこれをこのように解決しました:
log_file.instance_variable_get('@log').delete
ログ ファイルには、s3 オブジェクトを参照するインスタンス変数があります。