Class: Aws::SecurityHub::Types::AwsBackupBackupPlanLifecycleDetails

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

Instance Attribute Details

#delete_after_daysInteger

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

Returns:

  • (Integer)


3284
3285
3286
3287
3288
3289
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3284

class AwsBackupBackupPlanLifecycleDetails < Struct.new(
  :delete_after_days,
  :move_to_cold_storage_after_days)
  SENSITIVE = []
  include Aws::Structure
end

#move_to_cold_storage_after_daysInteger

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

Returns:

  • (Integer)


3284
3285
3286
3287
3288
3289
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3284

class AwsBackupBackupPlanLifecycleDetails < Struct.new(
  :delete_after_days,
  :move_to_cold_storage_after_days)
  SENSITIVE = []
  include Aws::Structure
end