Class: Aws::S3::Types::Delete
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Delete
- 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
-
#objects ⇒ Array<Types::ObjectIdentifier>
The object to delete.
-
#quiet ⇒ Boolean
Element to enable quiet mode for the request.
Instance Attribute Details
#objects ⇒ Array<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>
3638 3639 3640 3641 3642 3643 |
# File 'lib/aws-sdk-s3/types.rb', line 3638 class Delete < Struct.new( :objects, :quiet) SENSITIVE = [] include Aws::Structure end |