Skip to main content

aws_default_service_quotas

Creates, updates, deletes, gets or lists an aws_default_service_quotas resource.

Overview

Nameaws_default_service_quotas
TypeResource
Idaws.service_quotas.aws_default_service_quotas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
adjustablebooleanIndicates whether the quota value can be increased.
descriptionstringThe quota description. (pattern: <code>^.{0,350}$</code>)
error_reasonobjectThe error code and error reason.
global_quotabooleanIndicates whether the quota is global.
periodobjectThe period of time.
quota_applied_at_levelstringFilters the response to return applied quota values for the ACCOUNT, RESOURCE, or ALL levels. ACCOUNT is the default. (ACCOUNT, RESOURCE, ALL)
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.
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.
usage_metricobjectInformation about the measurement.
valuenumber (double)The quota value.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_aws_default_service_quotaselectregionRetrieves the default value for the specified quota. The default value does not reflect any quota increases.
list_aws_default_service_quotasselectregionLists the default values for the quotas for the specified Amazon Web Services service. A default value does not reflect any quota increases.

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 the default value for the specified quota. The default value does not reflect any quota increases.

SELECT
adjustable,
description,
error_reason,
global_quota,
period,
quota_applied_at_level,
quota_arn,
quota_code,
quota_context,
quota_name,
service_code,
service_name,
unit,
usage_metric,
value
FROM aws.service_quotas.aws_default_service_quotas
WHERE region = '{{ region }}' -- required
;