import type * as rds from "@distilled.cloud/aws/rds"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for the `DescribeDBClusterEndpoints` operation (IAM action * `rds:DescribeDBClusterEndpoints`). * * Lists an Aurora cluster's endpoints (writer, reader, and custom * endpoints) with their status and member lists. Provide the implementation with * `Effect.provide(AWS.RDS.DescribeDBClusterEndpointsHttp)`. * ### Monitoring Databases * **Example:** List a Cluster's Endpoints * ```typescript * const describeDBClusterEndpoints = * yield* AWS.RDS.DescribeDBClusterEndpoints(); * * const page = yield* describeDBClusterEndpoints({ * DBClusterIdentifier: clusterId, * }); * ``` * * @binding */ export interface DescribeDBClusterEndpoints extends Binding.Service Effect.Effect<(request?: rds.DescribeDBClusterEndpointsMessage) => Effect.Effect>> { } export declare const DescribeDBClusterEndpoints: DescribeDBClusterEndpoints; //# sourceMappingURL=DescribeDBClusterEndpoints.d.ts.map