408 commandes partagées

Ta mémoire technique
collaborative

Ne perds plus jamais une commande. Recherche, copie et partage tes solutions techniques en quelques secondes.

CodeBox
408 Commandes
13 Développeurs
99 Technologies

4 résultat(s) pour "rds"

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

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

Génère un guard pour la protection des routes.

bash
ng g guard guards/auth