Class: Aws::Backup::Types::CopyAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::CopyAction
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
The details of the copy operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_backup_vault_arn ⇒ String
An Amazon Resource Name (ARN) that uniquely identifies the destination backup vault for the copied backup.
-
#lifecycle ⇒ Types::Lifecycle
Specifies the time period, in days, before a recovery point transitions to cold storage or is deleted.
Instance Attribute Details
#destination_backup_vault_arn ⇒ String
An Amazon Resource Name (ARN) that uniquely identifies the
destination backup vault for the copied backup. For example,
arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
1449 1450 1451 1452 1453 1454 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1449 class CopyAction < Struct.new( :lifecycle, :destination_backup_vault_arn) SENSITIVE = [] include Aws::Structure end |
#lifecycle ⇒ Types::Lifecycle
Specifies the time period, in days, before a recovery point transitions to cold storage or is deleted.
Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, on the console, the retention setting must be 90 days greater than the transition to cold after days setting. The transition to cold after days setting can't be changed after a backup has been transitioned to cold.
Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types.
To remove the existing lifecycle and retention periods and keep your
recovery points indefinitely, specify -1 for
MoveToColdStorageAfterDays and DeleteAfterDays.
1449 1450 1451 1452 1453 1454 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1449 class CopyAction < Struct.new( :lifecycle, :destination_backup_vault_arn) SENSITIVE = [] include Aws::Structure end |