-
Notifications
You must be signed in to change notification settings - Fork 594
/
BackupPlanLifecycleRule.py
57 lines (48 loc) · 2.08 KB
/
BackupPlanLifecycleRule.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import annotations
from collections import deque
from typing import Any
from cfnlint.jsonschema import ValidationError, ValidationResult, Validator
from cfnlint.rules.jsonschema.CfnLintKeyword import CfnLintKeyword
class BackupPlanLifecycleRule(CfnLintKeyword):
"""
Check Backup Plan rules with lifecycle has minimum
period between cold and delete
"""
id = "E3504"
shortdesc = "Check minimum 90 period is met between BackupPlan cold and delete"
description = (
"Check that Backup plans with lifecycle rules have >= 90 days between cold and"
" delete"
)
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-lifecycleresourcetype.html"
tags = ["properties", "backup", "plan", "lifecycle"]
def __init__(self) -> None:
super().__init__(
[
"Resources/AWS::Backup::BackupPlan/Properties/BackupPlan/BackupPlanRule/*/Lifecycle",
"Resources/AWS::Backup::BackupPlan/Properties/BackupPlan/BackupPlanRule/*/CopyActions/*/Lifecycle",
]
)
def validate(
self, validator: Validator, uI: Any, instance: Any, schema: dict[str, Any]
) -> ValidationResult:
delete_after_days = instance.get("DeleteAfterDays")
move_to_cold_storage_after_days = instance.get("MoveToColdStorageAfterDays")
if not validator.is_type(delete_after_days, "integer"):
return
if not validator.is_type(move_to_cold_storage_after_days, "integer"):
return
if delete_after_days - move_to_cold_storage_after_days < 90:
yield ValidationError(
(
f"DeleteAfterDays {delete_after_days!r} must be at least "
"90 days after MoveToColdStorageAfterDays "
f"{move_to_cold_storage_after_days}"
),
path=deque(["DeleteAfterDays"]),
rule=self,
)