Skip to main content

service_quota_increase_request_from_templates

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

Overview

Nameservice_quota_increase_request_from_templates
TypeResource
Idaws.service_quotas.service_quota_increase_request_from_templates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aws_regionstringThe Amazon Web Services Region. (pattern: <code>[a-zA-Z][a-zA-Z0-9-]{1,128}</code>)
desired_valuenumber (double)The new, increased value of the quota.
global_quotabooleanIndicates whether the quota is global.
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_namestringSpecifies the quota name.
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.
unitstringThe unit of measurement.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_service_quota_increase_request_from_templateselectregionRetrieves information about the specified quota increase request in your quota request template.
delete_service_quota_increase_request_from_templatedeleteregionDeletes the quota increase request for the specified quota from your quota request template.

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 in your quota request template.

SELECT
aws_region,
desired_value,
global_quota,
quota_code,
quota_name,
service_code,
service_name,
unit
FROM aws.service_quotas.service_quota_increase_request_from_templates
WHERE region = '{{ region }}' -- required
;

DELETE examples

Deletes the quota increase request for the specified quota from your quota request template.

DELETE FROM aws.service_quotas.service_quota_increase_request_from_templates
WHERE region = '{{ region }}' --required
;