DescribeEvents
Source:
src/AWS/Neptune/DescribeEvents.ts
Runtime binding for the DescribeEvents operation (IAM action
rds:DescribeEvents).
Lists recent events (failovers, maintenance, snapshots, parameter changes)
for the account’s Neptune clusters and instances — the audit trail for
operational tooling. Provide the implementation with
Effect.provide(AWS.Neptune.DescribeEventsHttp).
Monitoring Clusters
Section titled “Monitoring Clusters”const describeEvents = yield* AWS.Neptune.DescribeEvents();
const page = yield* describeEvents({ SourceIdentifier: clusterId, SourceType: "db-cluster",});const messages = page.Events?.map((e) => e.Message);