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

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

Overview

A Retention configuration for an object.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#modeString

Indicates the Retention mode for the specified object.

Returns:

  • (String)


11513
11514
11515
11516
11517
11518
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 11513

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

#retain_until_dateTime

The date on which this Object Lock Retention will expire.

Returns:

  • (Time)


11513
11514
11515
11516
11517
11518
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 11513

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