Class: Aws::S3::Types::ObjectLockConfiguration

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

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

The container element for Object Lock configuration parameters.

Instance Attribute Summary collapse

Instance Attribute Details

#object_lock_enabledString

Indicates whether this bucket has an Object Lock configuration enabled.

Returns:

  • (String)


6059
6060
6061
6062
6063
# File 'lib/aws-sdk-s3/types.rb', line 6059

class ObjectLockConfiguration < Struct.new(
  :object_lock_enabled,
  :rule)
  include Aws::Structure
end

#ruleTypes::ObjectLockRule

The Object Lock rule in place for the specified object.



6059
6060
6061
6062
6063
# File 'lib/aws-sdk-s3/types.rb', line 6059

class ObjectLockConfiguration < Struct.new(
  :object_lock_enabled,
  :rule)
  include Aws::Structure
end