Class: Aws::S3::Types::ObjectLockRetention

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

{
  mode: "GOVERNANCE", # accepts GOVERNANCE, COMPLIANCE
  retain_until_date: Time.now,
}

A Retention configuration for an object.

Instance Attribute Summary collapse

Instance Attribute Details

#modeString

Indicates the Retention mode for the specified object.

Returns:

  • (String)


6106
6107
6108
6109
6110
# File 'lib/aws-sdk-s3/types.rb', line 6106

class ObjectLockRetention < Struct.new(
  :mode,
  :retain_until_date)
  include Aws::Structure
end

#retain_until_dateTime

The date on which this Object Lock Retention will expire.

Returns:

  • (Time)


6106
6107
6108
6109
6110
# File 'lib/aws-sdk-s3/types.rb', line 6106

class ObjectLockRetention < Struct.new(
  :mode,
  :retain_until_date)
  include Aws::Structure
end