ListServiceLevelObjectiveExclusionWindows
Source:
src/AWS/ApplicationSignals/ListServiceLevelObjectiveExclusionWindows.ts
Runtime binding for
application-signals:ListServiceLevelObjectiveExclusionWindows, scoped
to one ServiceLevelObjective.
Lists the exclusion (maintenance) windows configured on the bound SLO.
Provide the implementation with
Effect.provide(AWS.ApplicationSignals.ListServiceLevelObjectiveExclusionWindowsHttp).
Managing Exclusion Windows
Section titled “Managing Exclusion Windows”// init — bind the operation to the SLOconst listExclusionWindows = yield* AWS.ApplicationSignals.ListServiceLevelObjectiveExclusionWindows(slo);
// runtime — the SLO's ARN is injected as Idconst page = yield* listExclusionWindows();yield* Effect.log(`${page.ExclusionWindows.length} windows`);