Reconnecting
Restoring connection…
Reconnecting
Restoring connection…
AWS RDS operations
v0.1.2RDS instance + cluster inventory, parameter groups, snapshots, plus narrow operator actions (reboot, create-snapshot). Auth via AWS_PROFILE. Does NOT include delete-instance/delete-cluster.
aws
Install
emisar pack install
fetches this pack, re-validates it, and verifies its content hash against the
--hash
below — the exact bytes this page was rendered against, so a tampered copy is
rejected — before copying it into the runner's packs dir. The command reloads a
running daemon itself; no manual restart.
sudo emisar pack install aws-rds --hash sha256:319a4ad087d9eeba19c8c09902f8fb2e92bca4ab8f5b3022ec71bd07a21df663
Actions 8 total
View on GitHub-
rds.create_snapshot exec high
aws rds create-db-snapshot
Triggers a manual snapshot of one instance. Stored in your account; outlives instance deletion.
View source on GitHub -
rds.describe_cluster exec low
aws rds describe-db-clusters --db-cluster-identifier
Show one Aurora cluster's full details + members.
View source on GitHub -
rds.describe_instance exec low
aws rds describe-db-instances --db-instance-identifier
Show full details for one RDS instance.
View source on GitHub -
rds.list_clusters exec low
aws rds describe-db-clusters
List all Aurora clusters.
View source on GitHub -
rds.list_instances exec low
aws rds describe-db-instances
List all RDS instances with class, engine, status.
View source on GitHub -
rds.list_snapshots exec low
aws rds describe-db-snapshots
List all DB snapshots.
View source on GitHub -
rds.parameter_groups exec low
aws rds describe-db-parameter-groups
List all DB parameter groups.
View source on GitHub -
rds.reboot_instance exec high
aws rds reboot-db-instance
Reboots one RDS instance. Brief downtime.
View source on GitHub