import type * as datazone from "@distilled.cloud/aws/datazone"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Domain } from "./Domain.ts"; export interface RejectPredictionsRequest extends Omit { } /** * Runtime binding for `datazone:RejectPredictions`. * * Rejects ML-generated metadata predictions on an asset in the bound domain. The domain id is injected from the binding. * Provide the implementation with * `Effect.provide(AWS.DataZone.RejectPredictionsHttp)`. * ### Publishing Assets * **Example:** Reject All Predictions * ```typescript * // init — bind the operation to the domain * const rejectPredictions = yield* AWS.DataZone.RejectPredictions(domain); * * // runtime * yield* rejectPredictions({ identifier: assetId, rejectRule: { rule: "ALL" } }); * ``` * * @binding */ export interface RejectPredictions extends Binding.Service Effect.Effect<(request: RejectPredictionsRequest) => Effect.Effect>> { } export declare const RejectPredictions: RejectPredictions; //# sourceMappingURL=RejectPredictions.d.ts.map