AWS CLI Command to fetch RDS Snapshot Details

0

Can someone Please Help me in Fetching the AWS RDS Snapshots which are older than 1 month using "AWS CLI" Command.

Regards, kalyan varma

2 Risposte
1
aws rds describe-db-snapshots --query "DBSnapshots[?SnapshotCreateTime <= \`"$(date --date "30 days ago" +"%Y-%m-%dT%H:%M:%S.000000+00:00")"\`]"
profile pictureAWS
ESPERTO
kentrad
con risposta un anno fa
0

First, install the necessary libraries for Python:

pip install python-dateutil

Create a Python script - list_old_snapshots.py

import sys
import json
import dateutil.parser
from datetime import datetime, timedelta

# Load JSON input from stdin
snapshots = json.load(sys.stdin)

# Get the date one month ago
one_month_ago = datetime.now(dateutil.tz.tzutc()) - timedelta(days=30)

# Filter snapshots older than one month
old_snapshots = [snapshot for snapshot in snapshots['DBSnapshots'] if dateutil.parser.parse(snapshot['SnapshotCreateTime']) < one_month_ago]

# Print filtered snapshots as JSON
print(json.dumps(old_snapshots, indent=2, default=str))

Now, use the following command to get the RDS snapshots older than one month:

aws rds describe-db-snapshots | python list_old_snapshots.py

profile picture
ESPERTO
con risposta un anno fa
  • Thanks. Will check and Let you know.

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande