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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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.

<note markdown=“1”> **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.

</note>

Returns:



3394
3395
3396
3397
3398
3399
# File '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 'lib/aws-sdk-s3/types.rb', line 3394

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