GetRequestedServiceQuotaChange
Source:
src/AWS/ServiceQuotas/GetRequestedServiceQuotaChange.ts
Runtime binding for servicequotas:GetRequestedServiceQuotaChange — read
the status of a quota increase request from inside a Function (e.g. to
poll a request submitted with
RequestServiceQuotaIncrease).
Quota Increase Requests
Section titled “Quota Increase Requests”// initconst getRequestedServiceQuotaChange = yield* AWS.ServiceQuotas.GetRequestedServiceQuotaChange();
// runtimeconst { RequestedQuota } = yield* getRequestedServiceQuotaChange({ RequestId: requestId,});const status = RequestedQuota?.Status; // PENDING | APPROVED | ...