Class: Aws::SecurityHub::Types::AwsBackupRecoveryPointLifecycleDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SecurityHub::Types::AwsBackupRecoveryPointLifecycleDetails
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - 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`.
      3684 3685 3686 3687 3688 3689  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 3684 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.
      3684 3685 3686 3687 3688 3689  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 3684 class AwsBackupRecoveryPointLifecycleDetails < Struct.new( :delete_after_days, :move_to_cold_storage_after_days) SENSITIVE = [] include Aws::Structure end  |