Skip to content

ListServices

Source: src/AWS/ServiceQuotas/ListServices.ts

Runtime binding for servicequotas:ListServices — list the services that integrate with Service Quotas (and their service codes) from inside a Function.

// init
const listServices = yield* AWS.ServiceQuotas.ListServices();
// runtime
const { Services } = yield* listServices({ MaxResults: 100 });
const lambda = Services?.find((s) => s.ServiceCode === "lambda");