Skip to content

ListServiceOperations

Source: src/AWS/ApplicationSignals/ListServiceOperations.ts

Runtime binding for application-signals:ListServiceOperations.

Lists the operations of a discovered service that were invoked during a time range. Provide the implementation with Effect.provide(AWS.ApplicationSignals.ListServiceOperationsHttp).

// init — account-level, no resource argument
const listServiceOperations =
yield* AWS.ApplicationSignals.ListServiceOperations();
// runtime
const page = yield* listServiceOperations({
StartTime: new Date(Date.now() - 3600_000),
EndTime: new Date(),
KeyAttributes: {
Type: "Service",
Name: "checkout-service",
Environment: "eks:prod",
},
});