import type * as servicequotas from "@distilled.cloud/aws/service-quotas"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for * `servicequotas:ListRequestedServiceQuotaChangeHistory` — list quota * increase requests in the account's 90-day request history from inside a * Function, optionally filtered by service or status. * * ### Quota Increase Requests * **Example:** List pending requests * ```typescript * // init * const listRequestedServiceQuotaChangeHistory = * yield* AWS.ServiceQuotas.ListRequestedServiceQuotaChangeHistory(); * * // runtime * const { RequestedQuotas } = yield* listRequestedServiceQuotaChangeHistory({ * Status: "PENDING", * }); * ``` * * @binding */ export interface ListRequestedServiceQuotaChangeHistory extends Binding.Service Effect.Effect<(request?: servicequotas.ListRequestedServiceQuotaChangeHistoryRequest) => Effect.Effect>> { } export declare const ListRequestedServiceQuotaChangeHistory: ListRequestedServiceQuotaChangeHistory; //# sourceMappingURL=ListRequestedServiceQuotaChangeHistory.d.ts.map