AWS
List Database Instances
Authentication
Connections
AWS
Guard Rails
Server Management
Jira
Organization Management
Reports
User Management
Sessions
AWS
List Database Instances
It list RDS Database Instances
POST
/
integrations
/
aws
/
rds
/
describe-db-instances
curl --request POST \
--url https://use.hoop.dev/api/integrations/aws/rds/describe-db-instances \
--header 'Content-Type: */*' \
--data '{
"account_ids": [
"<string>"
]
}'
{
"items": [
{
"account_id": "123456789012",
"arn": "arn:aws:rds:us-west-2:123456789012:db:my-postgres-db",
"availability_zone": "us-west-2a",
"engine": "postgres",
"error": "IAM account does not have permission to list db instances in this account",
"name": "my-postgres-db",
"status": "available",
"vpc_id": "vpc-0123456789abcdef0"
}
]
}
Body
*/*
The request body resource
The body is of type object
.
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://use.hoop.dev/api/integrations/aws/rds/describe-db-instances \
--header 'Content-Type: */*' \
--data '{
"account_ids": [
"<string>"
]
}'
{
"items": [
{
"account_id": "123456789012",
"arn": "arn:aws:rds:us-west-2:123456789012:db:my-postgres-db",
"availability_zone": "us-west-2a",
"engine": "postgres",
"error": "IAM account does not have permission to list db instances in this account",
"name": "my-postgres-db",
"status": "available",
"vpc_id": "vpc-0123456789abcdef0"
}
]
}