import type * as memorydb from "@distilled.cloud/aws/memorydb"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for the `DescribeServiceUpdates` operation (IAM action * `memorydb:DescribeServiceUpdates`). * * Lists the service updates (security patches, engine upgrades) available or * scheduled for the account's clusters — pair with * {@link BatchUpdateCluster} to build patch automation. Provide the * implementation with * `Effect.provide(AWS.MemoryDB.DescribeServiceUpdatesHttp)`. * ### Applying Service Updates * **Example:** List Available Service Updates * ```typescript * const describeServiceUpdates = yield* MemoryDB.DescribeServiceUpdates(); * * const page = yield* describeServiceUpdates({ Status: ["available"] }); * // page.ServiceUpdates[0].ServiceUpdateName * ``` * * @binding */ export interface DescribeServiceUpdates extends Binding.Service Effect.Effect<(request?: memorydb.DescribeServiceUpdatesRequest) => Effect.Effect>> { } export declare const DescribeServiceUpdates: DescribeServiceUpdates; //# sourceMappingURL=DescribeServiceUpdates.d.ts.map