requested_service_quota_change_histories
Creates, updates, deletes, gets or lists a requested_service_quota_change_histories resource.
Overview
| Name | requested_service_quota_change_histories |
| Type | Resource |
| Id | aws.service_quotas.requested_service_quota_change_histories |
Fields
The following fields are returned by SELECT queries:
- list_requested_service_quota_change_history
| Name | Datatype | Description |
|---|---|---|
case_id | string | The case ID. |
created | string (date-time) | The date and time when the quota increase request was received and the case ID was created. |
desired_value | number (double) | The new, increased value for the quota. |
global_quota | boolean | Indicates whether the quota is global. |
id | string | The unique identifier. (pattern: <code>[0-9a-zA-Z][a-zA-Z0-9-]{1,128}</code>) |
last_updated | string (date-time) | The date and time of the most recent change. |
quota_arn | string | The Amazon Resource Name (ARN) of the quota. |
quota_code | string | Specifies 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_context | object | The context for this service quota. |
quota_name | string | Specifies the quota name. |
quota_requested_at_level | string | Filters the response to return quota requests for the ACCOUNT, RESOURCE, or ALL levels. ACCOUNT is the default. (ACCOUNT, RESOURCE, ALL) |
request_type | string | The 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) |
requester | string | The IAM identity of the requester. |
service_code | string | Specifies 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_name | string | Specifies the service name. |
status | string | The 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) |
unit | string | The unit of measurement. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_requested_service_quota_change_history | select | region | Retrieves the quota increase requests for the specified Amazon Web Services service. Filter responses to return quota requests at either the account level, resource level, or all levels. Responses include any open or closed requests within 90 days. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_requested_service_quota_change_history
Retrieves the quota increase requests for the specified Amazon Web Services service. Filter responses to return quota requests at either the account level, resource level, or all levels. Responses include any open or closed requests within 90 days.
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_change_histories
WHERE region = '{{ region }}' -- required
;