Class: Aws::SecurityHub::Types::AwsBackupBackupPlanLifecycleDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsBackupBackupPlanLifecycleDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Provides lifecycle details for the backup plan. A lifecycle defines when a backup is transitioned to cold storage and when it expires.
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`.
3278 3279 3280 3281 3282 3283 |
# File 'lib/aws-sdk-securityhub/types.rb', line 3278 class AwsBackupBackupPlanLifecycleDetails < 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.
3278 3279 3280 3281 3282 3283 |
# File 'lib/aws-sdk-securityhub/types.rb', line 3278 class AwsBackupBackupPlanLifecycleDetails < Struct.new( :delete_after_days, :move_to_cold_storage_after_days) SENSITIVE = [] include Aws::Structure end |