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.

Returns:



2291
2292
2293
2294
2295
2296
# File 'lib/aws-sdk-s3/types.rb', line 2291

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)


2291
2292
2293
2294
2295
2296
# File 'lib/aws-sdk-s3/types.rb', line 2291

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