Skip to main content

requested_service_quota_changes

Creates, updates, deletes, gets or lists a requested_service_quota_changes resource.

Overview

Namerequested_service_quota_changes
TypeResource
Idaws.service_quotas.requested_service_quota_changes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
case_idstringThe case ID.
createdstring (date-time)The date and time when the quota increase request was received and the case ID was created.
desired_valuenumber (double)The new, increased value for the quota.
global_quotabooleanIndicates whether the quota is global.
idstringThe unique identifier. (pattern: <code>[0-9a-zA-Z][a-zA-Z0-9-]{1,128}</code>)
last_updatedstring (date-time)The date and time of the most recent change.
quota_arnstringThe Amazon Resource Name (ARN) of the quota.
quota_codestringSpecifies the quota identifier. To find the quota code for a specific quota, use the ListServiceQuotas operation, and look for the QuotaCode response in the output for the quota you want. (pattern: <code>[a-zA-Z][a-zA-Z0-9-]{1,128}</code>)
quota_contextobjectThe context for this service quota.
quota_namestringSpecifies the quota name.
quota_requested_at_levelstringFilters the response to return quota requests for the ACCOUNT, RESOURCE, or ALL levels. ACCOUNT is the default. (ACCOUNT, RESOURCE, ALL)
request_typestringThe type of quota increase request. Possible values include: AutomaticManagement - The request was automatically created by Service Quotas Automatic Management when quota utilization approached the limit. If this field is not present, the request was manually created by a user. (AutomaticManagement)
requesterstringThe IAM identity of the requester.
service_codestringSpecifies the service identifier. To find the service code value for an Amazon Web Services service, use the ListServices operation. (pattern: <code>[a-zA-Z][a-zA-Z0-9-]{1,63}</code>)
service_namestringSpecifies the service name.
statusstringThe state of the quota increase request. PENDING: The quota increase request is under review by Amazon Web Services. CASE_OPENED: Service Quotas opened a support case to process the quota increase request. Follow-up on the support case for more information. APPROVED: The quota increase request is approved. DENIED: The quota increase request can't be approved by Service Quotas. Contact Amazon Web Services Support for more details. NOT APPROVED: The quota increase request can't be approved by Service Quotas. Contact Amazon Web Services Support for more details. CASE_CLOSED: The support case associated with this quota increase request was closed. Check the support case correspondence for the outcome of your quota request. INVALID_REQUEST: Service Quotas couldn't process your resource-level quota increase request because the Amazon Resource Name (ARN) specified as part of the ContextId is invalid. (PENDING, CASE_OPENED, APPROVED, DENIED, CASE_CLOSED, NOT_APPROVED, INVALID_REQUEST)
unitstringThe unit of measurement.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_requested_service_quota_changeselectregionRetrieves information about the specified quota increase request.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves information about the specified quota increase request.

SELECT
case_id,
created,
desired_value,
global_quota,
id,
last_updated,
quota_arn,
quota_code,
quota_context,
quota_name,
quota_requested_at_level,
request_type,
requester,
service_code,
service_name,
status,
unit
FROM aws.service_quotas.requested_service_quota_changes
WHERE region = '{{ region }}' -- required
;