import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StartQuotaUtilizationReportRequest, StartQuotaUtilizationReportResponse } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link StartQuotaUtilizationReportCommand}. */ export interface StartQuotaUtilizationReportCommandInput extends StartQuotaUtilizationReportRequest { } /** * @public * * The output of {@link StartQuotaUtilizationReportCommand}. */ export interface StartQuotaUtilizationReportCommandOutput extends StartQuotaUtilizationReportResponse, __MetadataBearer { } declare const StartQuotaUtilizationReportCommand_base: { new (input: StartQuotaUtilizationReportCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [StartQuotaUtilizationReportCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Initiates the generation of a quota utilization report for your Amazon Web Services account. This * asynchronous operation analyzes your quota usage across all Amazon Web Services services and returns * a unique report identifier that you can use to retrieve the results.

*

The report generation process may take several seconds to complete, depending on the * number of quotas in your account. Use the GetQuotaUtilizationReport operation * to check the status and retrieve the results when the report is ready.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ServiceQuotasClient, StartQuotaUtilizationReportCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import * // const { ServiceQuotasClient, StartQuotaUtilizationReportCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import * // import type { ServiceQuotasClientConfig } from "@aws-sdk/client-service-quotas"; * const config = {}; // type is ServiceQuotasClientConfig * const client = new ServiceQuotasClient(config); * const input = {}; * const command = new StartQuotaUtilizationReportCommand(input); * const response = await client.send(command); * // { // StartQuotaUtilizationReportResponse * // ReportId: "STRING_VALUE", * // Status: "PENDING" || "IN_PROGRESS" || "COMPLETED" || "FAILED", * // Message: "STRING_VALUE", * // }; * * ``` * * @param StartQuotaUtilizationReportCommandInput - {@link StartQuotaUtilizationReportCommandInput} * @returns {@link StartQuotaUtilizationReportCommandOutput} * @see {@link StartQuotaUtilizationReportCommandInput} for command's `input` shape. * @see {@link StartQuotaUtilizationReportCommandOutput} for command's `response` shape. * @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient permission to perform this action.

* * @throws {@link IllegalArgumentException} (client fault) *

Invalid input was provided.

* * @throws {@link InvalidPaginationTokenException} (client fault) *

Invalid input was provided.

* * @throws {@link NoSuchResourceException} (client fault) *

The specified resource does not exist.

* * @throws {@link ServiceException} (server fault) *

Something went wrong.

* * @throws {@link TooManyRequestsException} (client fault) *

Due to throttling, the request was denied. Slow down the rate of request calls, or * request an increase for this quota.

* * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* * * @public */ export declare class StartQuotaUtilizationReportCommand extends StartQuotaUtilizationReportCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: StartQuotaUtilizationReportResponse; }; sdk: { input: StartQuotaUtilizationReportCommandInput; output: StartQuotaUtilizationReportCommandOutput; }; }; }