ListRecommendations
Source:
src/AWS/DevOpsGuru/ListRecommendations.ts
Runtime binding for devops-guru:ListRecommendations.
Lists DevOps Guru’s remediation recommendations for an insight — the ready-made content of an incident notification or runbook comment.
Provide the implementation with
Effect.provide(AWS.DevOpsGuru.ListRecommendationsHttp).
Events and Recommendations
Section titled “Events and Recommendations”// init — account-level binding, no resource argumentconst listRecommendations = yield* AWS.DevOpsGuru.ListRecommendations();
// runtimeconst { Recommendations } = yield* listRecommendations({ InsightId: insightId,});for (const rec of Recommendations ?? []) { yield* Effect.log(`${rec.Name}: ${rec.Description}`);}