Class: Aws::RecycleBin::Types::UnlockDelay
- Inherits:
-
Struct
- Object
- Struct
- Aws::RecycleBin::Types::UnlockDelay
- Includes:
- Structure
- Defined in:
- 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
-
#unlock_delay_unit ⇒ String
The unit of time in which to measure the unlock delay.
-
#unlock_delay_value ⇒ Integer
The unlock delay period, measured in the unit specified for UnlockDelayUnit.
Instance Attribute Details
#unlock_delay_unit ⇒ String
The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.
657 658 659 660 661 662 |
# File '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_value ⇒ Integer
The unlock delay period, measured in the unit specified for UnlockDelayUnit.
657 658 659 660 661 662 |
# File 'lib/aws-sdk-recyclebin/types.rb', line 657 class UnlockDelay < Struct.new( :unlock_delay_value, :unlock_delay_unit) SENSITIVE = [] include Aws::Structure end |