Class: Aws::SecurityHub::Types::AwsBackupRecoveryPointCalculatedLifecycleDetails

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-securityhub/types.rb

Overview

Specifies how long in days before a recovery point transitions to cold storage or is deleted.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#delete_atString

Specifies the number of days after creation that a recovery point is deleted. Must be greater than 90 days plus ‘MoveToColdStorageAfterDays`.

Returns:

  • (String)


3484
3485
3486
3487
3488
3489
# File 'lib/aws-sdk-securityhub/types.rb', line 3484

class AwsBackupRecoveryPointCalculatedLifecycleDetails < Struct.new(
  :delete_at,
  :move_to_cold_storage_at)
  SENSITIVE = []
  include Aws::Structure
end

#move_to_cold_storage_atString

Specifies the number of days after creation that a recovery point is moved to cold storage.

Returns:

  • (String)


3484
3485
3486
3487
3488
3489
# File 'lib/aws-sdk-securityhub/types.rb', line 3484

class AwsBackupRecoveryPointCalculatedLifecycleDetails < Struct.new(
  :delete_at,
  :move_to_cold_storage_at)
  SENSITIVE = []
  include Aws::Structure
end