ListAuditFindings
Source:
src/AWS/ApplicationSignals/ListAuditFindings.ts
Runtime binding for application-signals:ListAuditFindings.
Returns audit findings — automated analysis of service behavior and root
causes (performance issues, anomalies, potential problems) for the given
audit targets. Provide the implementation with
Effect.provide(AWS.ApplicationSignals.ListAuditFindingsHttp).
Auditing Services
Section titled “Auditing Services”// init — account-level, no resource argumentconst listAuditFindings = yield* AWS.ApplicationSignals.ListAuditFindings();
// runtimeconst result = yield* listAuditFindings({ StartTime: new Date(Date.now() - 3600_000), EndTime: new Date(), AuditTargets: [ { Type: "service", Data: { Service: { Type: "Service", Name: "checkout-service", Environment: "eks:prod", }, }, }, ],});