import type * as devopsguru from "@distilled.cloud/aws/devops-guru"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `devops-guru:DescribeFeedback`. * * Returns the most recently recorded feedback (e.g. `VALID` / `NOT_VALID`) for an insight. * Provide the implementation with * `Effect.provide(AWS.DevOpsGuru.DescribeFeedbackHttp)`. * ### Feedback * **Example:** Read Recorded Feedback * ```typescript * // init — account-level binding, no resource argument * const describeFeedback = yield* AWS.DevOpsGuru.DescribeFeedback(); * * // runtime * const { InsightFeedback } = yield* describeFeedback({ InsightId: insightId }); * yield* Effect.log(`feedback: ${InsightFeedback?.Feedback}`); * ``` * * @binding */ export interface DescribeFeedback extends Binding.Service Effect.Effect<(request?: devopsguru.DescribeFeedbackRequest) => Effect.Effect>> { } export declare const DescribeFeedback: DescribeFeedback; //# sourceMappingURL=DescribeFeedback.d.ts.map