Skip to content

DescribeDBClusters

Source: src/AWS/Neptune/DescribeDBClusters.ts

Runtime binding for the DescribeDBClusters operation (IAM action rds:DescribeDBClusters).

Lists the account’s Neptune clusters (or one cluster by identifier) — status, endpoints, members, engine versions — for health checks and cluster discovery. Provide the implementation with Effect.provide(AWS.Neptune.DescribeDBClustersHttp).

const describeDBClusters = yield* AWS.Neptune.DescribeDBClusters();
const page = yield* describeDBClusters({
DBClusterIdentifier: clusterId,
});
const status = page.DBClusters?.[0]?.Status;