import type * as guardduty from "@distilled.cloud/aws/guardduty"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Detector } from "./Detector.ts"; /** * Runtime binding for `guardduty:UpdateFindingsFeedback`. * * Marks findings as `USEFUL` or `NOT_USEFUL` to tune GuardDuty's signal quality. * The detector id is injected from the bound {@link Detector}. * Provide the implementation with * `Effect.provide(AWS.GuardDuty.UpdateFindingsFeedbackHttp)`. * ### Working with Findings * **Example:** Mark Findings Useful * ```typescript * // init * const updateFindingsFeedback = yield* AWS.GuardDuty.UpdateFindingsFeedback(detector); * * // runtime * yield* updateFindingsFeedback({ * FindingIds: findingIds, * Feedback: "USEFUL", * }); * ``` * * @binding */ export interface UpdateFindingsFeedback extends Binding.Service Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const UpdateFindingsFeedback: UpdateFindingsFeedback; //# sourceMappingURL=UpdateFindingsFeedback.d.ts.map