association_for_service_quota_templates
Creates, updates, deletes, gets or lists an association_for_service_quota_templates resource.
Overview
| Name | association_for_service_quota_templates |
| Type | Resource |
| Id | aws.service_quotas.association_for_service_quota_templates |
Fields
The following fields are returned by SELECT queries:
- get_association_for_service_quota_template
| Name | Datatype | Description |
|---|---|---|
service_quota_template_association_status | string | The association status. If the status is ASSOCIATED, the quota increase requests in the template are automatically applied to new Amazon Web Services accounts in your organization. (ASSOCIATED, DISASSOCIATED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_association_for_service_quota_template | select | region | Retrieves the status of the association for the 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_association_for_service_quota_template
Retrieves the status of the association for the quota request template.
SELECT
service_quota_template_association_status
FROM aws.service_quotas.association_for_service_quota_templates
WHERE region = '{{ region }}' -- required
;