import type * as dataexchange from "@distilled.cloud/aws/dataexchange"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Revision } from "./Revision.ts"; /** * Runtime binding for `dataexchange:RevokeRevision`. * * Revokes the bound revision from subscribers with a required * revocation comment — the remediation path when bad or sensitive data * was published. The data set and revision ids are injected from the * binding. * Provide the implementation with * `Effect.provide(AWS.DataExchange.RevokeRevisionHttp)`. * ### Managing Assets * **Example:** Revoke A Published Revision * ```typescript * const revokeRevision = yield* AWS.DataExchange.RevokeRevision(revision); * * // runtime * yield* revokeRevision({ * RevocationComment: "Published with corrupted price data", * }); * ``` * * @binding */ export interface RevokeRevision extends Binding.Service Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const RevokeRevision: RevokeRevision; //# sourceMappingURL=RevokeRevision.d.ts.map