#rds

3 commande(s) avec le tag #rds

Commandes partagées par la communauté CodeBox, copiables en un clic.

Crée un snapshot de sauvegarde d'une instance RDS.

bash
aws rds create-db-snapshot --db-instance-identifier mon-db --db-snapshot-identifier mon-snapshot-$(date +%Y%m%d)

Affiche tous les snapshots RDS disponibles.

bash
aws rds describe-db-snapshots --query "DBSnapshots[].[DBSnapshotIdentifier,Status,SnapshotCreateTime]" --output table

Affiche toutes les instances RDS avec leur état et endpoint.

bash
aws rds describe-db-instances --query "DBInstances[].[DBInstanceIdentifier,DBInstanceStatus,Engine,Endpoint.Address]" --output table