Skip to content

Instantly share code, notes, and snippets.

@tfentonz
Created October 30, 2019 20:21
Show Gist options
  • Save tfentonz/617ad026374bcc0bf42d9e4d9d79a511 to your computer and use it in GitHub Desktop.
Save tfentonz/617ad026374bcc0bf42d9e4d9d79a511 to your computer and use it in GitHub Desktop.
RDS DB Snapshots
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