Skip to content

Commit 24baaee

Browse files
authored
[aws][chore] Ignore props for history (#2121)
1 parent bfb80ad commit 24baaee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/aws/fix_plugin_aws/resource/dynamodb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,8 @@ class AwsDynamoDbPointInTimeRecovery:
338338
"latest_restorable_date_time": S("LatestRestorableDateTime"),
339339
}
340340
status: Optional[str] = field(default=None, metadata={"description": "The current state of point in time recovery: ENABLED - Point in time recovery is enabled. DISABLED - Point in time recovery is disabled."}) # fmt: skip
341-
earliest_restorable_date_time: Optional[datetime] = field(default=None, metadata={"description": "Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days."}) # fmt: skip
342-
latest_restorable_date_time: Optional[datetime] = field(default=None, metadata={"description": "LatestRestorableDateTime is typically 5 minutes before the current time."}) # fmt: skip
341+
earliest_restorable_date_time: Optional[datetime] = field(default=None, metadata={"ignore_history": True, "description": "Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days."}) # fmt: skip
342+
latest_restorable_date_time: Optional[datetime] = field(default=None, metadata={"ignore_history": True, "description": "LatestRestorableDateTime is typically 5 minutes before the current time."}) # fmt: skip
343343

344344

345345
@define(eq=False, slots=False)

0 commit comments

Comments
 (0)