From 0ebad425717543dd033cfe2fa66e1dcfbc60292d Mon Sep 17 00:00:00 2001 From: Tatsuya Mori Date: Sat, 9 Sep 2023 00:15:28 +0900 Subject: [PATCH] docs(backup): default value for completionWindow is incorrect (#27061) Currently, the description regarding default value for `completionWindow` is incorrect. https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_backup.BackupPlanRuleProps.html#completionwindow > Type: Duration (optional, default: 8 hours) Correct value is 7 days (10080 minutes). Closes #27050 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-backup/lib/rule.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/aws-backup/lib/rule.ts b/packages/aws-cdk-lib/aws-backup/lib/rule.ts index fe546619bddb3..566f1edbde1ac 100644 --- a/packages/aws-cdk-lib/aws-backup/lib/rule.ts +++ b/packages/aws-cdk-lib/aws-backup/lib/rule.ts @@ -10,7 +10,7 @@ export interface BackupPlanRuleProps { * The duration after a backup job is successfully started before it must be * completed or it is canceled by AWS Backup. * - * @default - 8 hours + * @default - 7 days */ readonly completionWindow?: Duration;