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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/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)


3474
3475
3476
3477
3478
3479
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3474

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)


3474
3475
3476
3477
3478
3479
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3474

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