ListServiceLevelObjectives
Source:
src/AWS/ApplicationSignals/ListServiceLevelObjectives.ts
Runtime binding for application-signals:ListServiceLevelObjectives.
Lists the service level objectives in this account, optionally filtered by
service key attributes, operation name, or dependency config. Provide the
implementation with
Effect.provide(AWS.ApplicationSignals.ListServiceLevelObjectivesHttp).
Listing Service Level Objectives
Section titled “Listing Service Level Objectives”// init — account-level, no resource argumentconst listSlos = yield* AWS.ApplicationSignals.ListServiceLevelObjectives();
// runtimeconst page = yield* listSlos({});for (const slo of page.SloSummaries) { yield* Effect.log(`${slo.Name}: ${slo.Arn}`);}