/** *

Specifies whether Amazon S3 should replicate delete makers.

*/ export interface _DeleteMarkerReplication { /** *

The status of the delete marker replication.

In the current implementation, Amazon S3 does not replicate the delete markers. Therefore, the status must be Disabled.

*/ Status?: "Enabled" | "Disabled" | string; } export declare type _UnmarshalledDeleteMarkerReplication = _DeleteMarkerReplication;