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
Note:
When making an API call, you may pass Delete data as a hash:
{
objects: [ # required
{
key: "ObjectKey", # required
version_id: "ObjectVersionId",
},
],
quiet: false,
}
Instance Attribute Summary collapse
- #objects ⇒ Array<Types::ObjectIdentifier>
-
#quiet ⇒ Boolean
Element to enable quiet mode for the request.
Instance Attribute Details
#objects ⇒ Array<Types::ObjectIdentifier>
1560 1561 1562 1563 1564 |
# File 'lib/aws-sdk-s3/types.rb', line 1560 class Delete < Struct.new( :objects, :quiet) include Aws::Structure end |