Skip to main content

auto_management_configurations

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

Overview

Nameauto_management_configurations
TypeResource
Idaws.service_quotas.auto_management_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
exclusion_listobjectList 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_arnstringThe User Notifications Amazon Resource Name (ARN) for Automatic Management notifications. (pattern: <code>arn:aws(-[\w]+)::.+:[0-9]{12}:.+</code>)
opt_in_levelstringInformation on the opt-in level for Automatic Management. Only Amazon Web Services account level is supported. (ACCOUNT)
opt_in_statusstringStatus on whether Automatic Management is started or stopped. (ENABLED, DISABLED)
opt_in_typestringInformation 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_auto_management_configurationselectregionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;