Cross-region AWS Backup using CDK

0

Hi,

I'm creating a backup plan using CDK and would like to also copy the resources to another region, pretty much as it's documented here for the AWS Console.

I couldn't find a "copy to destination" option in CDK or Cfn resources though. Is that option not supported?

asked 2 years ago1432 views
2 Answers
0

Hello Customer, In order to reproduce the same functionality as the AWS backup through the use of CDKs, you can utilize the S3.CfnBucket Construct to create S3 Cross Region Replication. This document can help you get started on it: https://docs.aws.amazon.com/cdk/api/v1/python/aws_cdk.aws_s3/CfnBucket.html#replicationconfigurationproperty

Hope this Helps!

answered 2 years ago
AWS
SUPPORT ENGINEER
reviewed 2 years ago
0

Copy option is supported in CDK and CFN.

CDK:https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_backup-readme.html

Rules can also specify to copy recovery points to another Backup Vault using copyActions. Copied recovery points can optionally have moveToColdStorageAfter and deleteAfter configured.

declare const plan: backup.BackupPlan; declare const secondaryVault: backup.BackupVault; plan.addRule(new backup.BackupPlanRule({ copyActions: [{ destinationBackupVault: secondaryVault, moveToColdStorageAfter: Duration.days(30), deleteAfter: Duration.days(120), }] }));

For CFN:https://aws.amazon.com/premiumsupport/knowledge-center/aws-backup-cloudformation-template/

DestinationBackupVaultArn: arn:aws:backup:us-west-2:111222333444:backup-vault:Default Lifecycle: DeleteAfterDays: 14

AWS
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions