4

How can I know the data size of my AWS backup vault?

I can't find any instruction to view the data size of the vault in this document.

The reason I want to know the data size of the vault is that my AWS Backup costs me too much money. So I'd like to know how much data I've stored in the vault.

Maurice
  • 11,482
  • 2
  • 25
  • 45
Brian
  • 12,145
  • 20
  • 90
  • 153

2 Answers2

0

I haven't found a way to see this easily in the UI. You can see the size of the individual snapshots by going to "AWS Backup" > "My Account" > "Backup Vaults". There, click on the vault you are interested in. Then click on the invididual recovery-points and their respective size is shown. Now add those values.

On the command line using awscli and jq, you can sum them for the whole vault (replace MY_XXX by your specific values):

aws backup --region MY_REGION list-recovery-points-by-backup-vault --backup-vault-name MY_BACKUP_VAULT_NAME --query 'RecoveryPoints[*].BackupSizeInBytes' --output json | jq add
Till Brychcy
  • 2,876
  • 1
  • 18
  • 28
-3

The size of the backup vault can be found in RDS -> Snapshots -> Backup service.

If you have more than 1 backup in the vault, the size of the vault would be the sum of the size of all the backups.

enter image description here

Brian
  • 12,145
  • 20
  • 90
  • 153