Class: Aws::S3::ObjectVersion::Collection
- Inherits:
-
Resources::Collection
- Object
- Resources::Collection
- Aws::S3::ObjectVersion::Collection
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/object_version.rb
Batch Actions collapse
Methods inherited from Resources::Collection
Instance Method Details
#batch_delete!(options = {}) ⇒ void
This method returns an undefined value.
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/object_version.rb', line 590 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.object_key, version_id: item.id } end Aws::Plugins::UserAgent.feature('resource') do batch[0].client.delete_objects(params) end end nil end |