You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe your idea
Currently SnapshotType, as related to RDS backups, used in a variety of places, is annotated as SnapshotType: NotRequired[str]. It would be better if it was annotated as follows:
SnapshotType_t=Literal[
"automated", # Daily backups from last week in RDS."manual", # Manual snapshots created by users, e.g., right before deleting a database."shared",
"public",
"awsbackup", # Weekly backups from AWS Backup.
]