ListServiceDependents
Source:
src/AWS/ApplicationSignals/ListServiceDependents.ts
Runtime binding for application-signals:ListServiceDependents.
Lists the dependents (other services, Synthetics canaries, RUM app
monitors) that invoked a discovered service during a time range. Provide
the implementation with
Effect.provide(AWS.ApplicationSignals.ListServiceDependentsHttp).
Exploring the Service Topology
Section titled “Exploring the Service Topology”// init — account-level, no resource argumentconst listServiceDependents = yield* AWS.ApplicationSignals.ListServiceDependents();
// runtimeconst page = yield* listServiceDependents({ StartTime: new Date(Date.now() - 3600_000), EndTime: new Date(), KeyAttributes: { Type: "Service", Name: "checkout-service", Environment: "eks:prod", },});