Skip to content

DescribeFeedback

Source: src/AWS/DevOpsGuru/DescribeFeedback.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).

// 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}`);