- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
GetRequestedServiceQuotaChangeCommand
Retrieves information about the specified quota increase request.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { ServiceQuotasClient, GetRequestedServiceQuotaChangeCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
// const { ServiceQuotasClient, GetRequestedServiceQuotaChangeCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
const client = new ServiceQuotasClient(config);
const input = { // GetRequestedServiceQuotaChangeRequest
RequestId: "STRING_VALUE", // required
};
const command = new GetRequestedServiceQuotaChangeCommand(input);
const response = await client.send(command);
// { // GetRequestedServiceQuotaChangeResponse
// RequestedQuota: { // RequestedServiceQuotaChange
// Id: "STRING_VALUE",
// CaseId: "STRING_VALUE",
// ServiceCode: "STRING_VALUE",
// ServiceName: "STRING_VALUE",
// QuotaCode: "STRING_VALUE",
// QuotaName: "STRING_VALUE",
// DesiredValue: Number("double"),
// Status: "PENDING" || "CASE_OPENED" || "APPROVED" || "DENIED" || "CASE_CLOSED" || "NOT_APPROVED" || "INVALID_REQUEST",
// Created: new Date("TIMESTAMP"),
// LastUpdated: new Date("TIMESTAMP"),
// Requester: "STRING_VALUE",
// QuotaArn: "STRING_VALUE",
// GlobalQuota: true || false,
// Unit: "STRING_VALUE",
// QuotaRequestedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL",
// QuotaContext: { // QuotaContextInfo
// ContextScope: "RESOURCE" || "ACCOUNT",
// ContextScopeType: "STRING_VALUE",
// ContextId: "STRING_VALUE",
// },
// },
// };
GetRequestedServiceQuotaChangeCommand Input
See GetRequestedServiceQuotaChangeCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
RequestId Required | string | undefined | Specifies the ID of the quota increase request. |
GetRequestedServiceQuotaChangeCommand Output
See GetRequestedServiceQuotaChangeCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
RequestedQuota | RequestedServiceQuotaChange | undefined | Information about the quota increase request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | You do not have sufficient permission to perform this action. |
IllegalArgumentException | client | Invalid input was provided. |
NoSuchResourceException | client | The specified resource does not exist. |
ServiceException | server | Something went wrong. |
TooManyRequestsException | client | Due to throttling, the request was denied. Slow down the rate of request calls, or request an increase for this quota. |
ServiceQuotasServiceException | Base exception class for all service exceptions from ServiceQuotas service. |