1 Respuesta
- Más nuevo
- Más votos
- Más comentarios
0
Check if you can list the snapshots in AWS Backup Protected Resources tab by below CLI. aws backup list-protected-resources aws backup list-recovery-points-by-resource --resource-arn "ARN"
If you can see them, you can use delete command that would list and also delete all the recovery points for that Volume resource, following is the example command: aws backup list-recovery-points-by-resource --resource-arn <Resource ARN> --region <Region> --output json --query 'RecoveryPoints[].[BackupVaultName,RecoveryPointArn]' | jq -r '.[] | "--backup-vault-name '''" + .[0] + "''' --recovery-point-arn " + .[1]' | xargs -L1 aws backup delete-recovery-point --region <Region>
respondido hace 3 años
Contenido relevante
- preguntada hace 24 días
- preguntada hace 4 meses
- preguntada hace 8 meses
- preguntada hace 24 días
- OFICIAL DE AWSActualizada hace 4 meses
