Class: Aws::S3::Types::DeleteMarkerReplication

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass DeleteMarkerReplication data as a hash:

{
  status: "Enabled", # accepts Enabled, Disabled
}

Specifies whether Amazon S3 should replicate delete makers.

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

The status of the delete marker replication.

<note markdown=“1”> In the current implementation, Amazon S3 doesn’t replicate the delete markers. The status must be ‘Disabled`.

</note>

Returns:

  • (String)


1935
1936
1937
1938
# File 'lib/aws-sdk-s3/types.rb', line 1935

class DeleteMarkerReplication < Struct.new(
  :status)
  include Aws::Structure
end