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 年前檢視次數 1386 次
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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南