Skip to content

Commit 0ebad42

Browse files
authored
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*
1 parent 4eb3aed commit 0ebad42

File tree

1 file changed

+1
-1
lines changed
  • packages/aws-cdk-lib/aws-backup/lib

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/aws-backup/lib/rule.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface BackupPlanRuleProps {
1010
* The duration after a backup job is successfully started before it must be
1111
* completed or it is canceled by AWS Backup.
1212
*
13-
* @default - 8 hours
13+
* @default - 7 days
1414
*/
1515
readonly completionWindow?: Duration;
1616

0 commit comments

Comments
 (0)