auto_management_configurations
Creates, updates, deletes, gets or lists an auto_management_configurations resource.
Overview
| Name | auto_management_configurations |
| Type | Resource |
| Id | aws.service_quotas.auto_management_configurations |
Fields
The following fields are returned by SELECT queries:
- get_auto_management_configuration
| Name | Datatype | Description |
|---|---|---|
exclusion_list | object | List of Amazon Web Services services excluded from Automatic Management. You won't be notified of Service Quotas utilization for Amazon Web Services services added to the Automatic Management exclusion list. |
notification_arn | string | The User Notifications Amazon Resource Name (ARN) for Automatic Management notifications. (pattern: <code>arn:aws(-[\w]+)::.+:[0-9]{12}:.+</code>) |
opt_in_level | string | Information on the opt-in level for Automatic Management. Only Amazon Web Services account level is supported. (ACCOUNT) |
opt_in_status | string | Status on whether Automatic Management is started or stopped. (ENABLED, DISABLED) |
opt_in_type | string | Information on the opt-in type for Automatic Management. There are two modes: Notify only and Notify and Auto-Adjust. Currently, only NotifyOnly is available. (NotifyOnly, NotifyAndAdjust) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_auto_management_configuration | select | region | Retrieves information about your Service Quotas Automatic Management configuration. Automatic Management monitors your Service Quotas utilization and notifies you before you run out of your allocated quotas. |
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_auto_management_configuration
Retrieves information about your Service Quotas Automatic Management configuration. Automatic Management monitors your Service Quotas utilization and notifies you before you run out of your allocated quotas.
SELECT
exclusion_list,
notification_arn,
opt_in_level,
opt_in_status,
opt_in_type
FROM aws.service_quotas.auto_management_configurations
WHERE region = '{{ region }}' -- required
;