Class: Aws::S3::Types::ObjectLockRule

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 ObjectLockRule data as a hash:

{
  default_retention: {
    mode: "GOVERNANCE", # accepts GOVERNANCE, COMPLIANCE
    days: 1,
    years: 1,
  },
}

The container element for an Object Lock rule.

Instance Attribute Summary collapse

Instance Attribute Details

#default_retentionTypes::DefaultRetention

The default retention period that you want to apply to new objects placed in the specified bucket.



6132
6133
6134
6135
# File 'lib/aws-sdk-s3/types.rb', line 6132

class ObjectLockRule < Struct.new(
  :default_retention)
  include Aws::Structure
end