Class: Aws::RecycleBin::Types::UnlockDelay

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

Overview

Information about the retention rule unlock delay. The unlock delay is the period after which a retention rule can be modified or edited after it has been unlocked by a user with the required permissions. The retention rule can't be modified or deleted during the unlock delay.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unlock_delay_unitString

The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.

Returns:

  • (String)


657
658
659
660
661
662
# File 'gems/aws-sdk-recyclebin/lib/aws-sdk-recyclebin/types.rb', line 657

class UnlockDelay < Struct.new(
  :unlock_delay_value,
  :unlock_delay_unit)
  SENSITIVE = []
  include Aws::Structure
end

#unlock_delay_valueInteger

The unlock delay period, measured in the unit specified for UnlockDelayUnit.

Returns:

  • (Integer)


657
658
659
660
661
662
# File 'gems/aws-sdk-recyclebin/lib/aws-sdk-recyclebin/types.rb', line 657

class UnlockDelay < Struct.new(
  :unlock_delay_value,
  :unlock_delay_unit)
  SENSITIVE = []
  include Aws::Structure
end