Class: Aws::SecurityHub::Types::AwsBackupRecoveryPointLifecycleDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsBackupRecoveryPointLifecycleDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Contains an array of Transition objects specifying how long in days before a recovery point transitions to cold storage or is deleted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delete_after_days ⇒ Integer
Specifies the number of days after creation that a recovery point is deleted.
-
#move_to_cold_storage_after_days ⇒ Integer
Specifies the number of days after creation that a recovery point is moved to cold storage.
Instance Attribute Details
#delete_after_days ⇒ Integer
Specifies the number of days after creation that a recovery point is
deleted. Must be greater than 90 days plus
MoveToColdStorageAfterDays
.
3567 3568 3569 3570 3571 3572 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3567 class AwsBackupRecoveryPointLifecycleDetails < Struct.new( :delete_after_days, :move_to_cold_storage_after_days) SENSITIVE = [] include Aws::Structure end |
#move_to_cold_storage_after_days ⇒ Integer
Specifies the number of days after creation that a recovery point is moved to cold storage.
3567 3568 3569 3570 3571 3572 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3567 class AwsBackupRecoveryPointLifecycleDetails < Struct.new( :delete_after_days, :move_to_cold_storage_after_days) SENSITIVE = [] include Aws::Structure end |