Created
October 30, 2019 20:21
-
-
Save tfentonz/617ad026374bcc0bf42d9e4d9d79a511 to your computer and use it in GitHub Desktop.
RDS DB Snapshots
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws rds describe-db-snapshots \ | |
--no-include-shared \ | |
--no-include-public \ | |
--query 'DBSnapshots[?SnapshotType!=`automated`].[ | |
SnapshotType, | |
DBSnapshotIdentifier, | |
DBInstanceIdentifier, | |
SnapshotCreateTime, | |
Engine, | |
EngineVersion, | |
AllocatedStorage, | |
VpcId, | |
AvailabilityZone, | |
StorageType, | |
DBSnapshotArn | |
]' \ | |
--output text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment