Class: Aws::S3::ObjectSummary::Collection
- Inherits:
-
Resources::Collection
- Object
- Resources::Collection
- Aws::S3::ObjectSummary::Collection
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/object_summary.rb,
gems/aws-sdk-s3/lib/aws-sdk-s3/customizations/object_summary.rb
Batch Actions collapse
-
#batch_delete!(options = {}) ⇒ void
(also: #delete)
Methods inherited from Resources::Collection
Instance Method Details
#batch_delete!(options = {}) ⇒ void Also known as: delete
This method returns an undefined value.
2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/object_summary.rb', line 2977 def batch_delete!( = {}) batch_enum.each do |batch| params = Aws::Util.copy_hash() params[:bucket] = batch[0].bucket_name params[:delete] ||= {} params[:delete][:objects] ||= [] batch.each do |item| params[:delete][:objects] << { key: item.key } end Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do batch[0].client.delete_objects(params) end end nil end |