Class: Aws::S3::Types::Delete

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb

Overview

Container for the objects to delete.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#objectsArray<Types::ObjectIdentifier>

The object to delete.

Directory buckets - For directory buckets, an object that's composed entirely of whitespace characters is not supported by the DeleteObjects API operation. The request will receive a 400 Bad Request error and none of the objects in the request will be deleted.

Returns:



3394
3395
3396
3397
3398
3399
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 3394

class Delete < Struct.new(
  :objects,
  :quiet)
  SENSITIVE = []
  include Aws::Structure
end

#quietBoolean

Element to enable quiet mode for the request. When you add this element, you must set its value to true.

Returns:

  • (Boolean)


3394
3395
3396
3397
3398
3399
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 3394

class Delete < Struct.new(
  :objects,
  :quiet)
  SENSITIVE = []
  include Aws::Structure
end