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.
Listing Quotas
Section titled “Listing Quotas”// initconst listServices = yield* AWS.ServiceQuotas.ListServices();
// runtimeconst { Services } = yield* listServices({ MaxResults: 100 });const lambda = Services?.find((s) => s.ServiceCode === "lambda");