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 objects to delete.

Returns:



2277
2278
2279
2280
2281
2282
# File 'lib/aws-sdk-s3/types.rb', line 2277

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)


2277
2278
2279
2280
2281
2282
# File 'lib/aws-sdk-s3/types.rb', line 2277

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