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?

已提问 2 年前1387 查看次数
2 回答
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!

已回答 2 年前
AWS
支持工程师
已审核 2 年前
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
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则