Skip to content

DescribeDBClusterSnapshots

Source: src/AWS/Neptune/DescribeDBClusterSnapshots.ts

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

Lists the account’s Neptune cluster snapshots (manual and automated) — for backup verification and restore tooling. Provide the implementation with Effect.provide(AWS.Neptune.DescribeDBClusterSnapshotsHttp).

const describeDBClusterSnapshots =
yield* AWS.Neptune.DescribeDBClusterSnapshots();
const page = yield* describeDBClusterSnapshots({
DBClusterIdentifier: clusterId,
});
const count = page.DBClusterSnapshots?.length;