Excluding service quotas from Service Quotas Automatic Management - Service Quotas
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Excluding service quotas from Service Quotas Automatic Management

You won't be notified of service quotas utilizations for Amazon Web Services services added to the Automatic Management exclusion list.

You can exclude a service quota or list of quotas from being monitored by Automatic Management using the --exclusion-list. You'll need the service code and quota code to exclude the quota from Automatic Management in the Amazon CLI.

Use the following procedure to exclude quotas from Automatic Management monitoring for your Amazon Web Services account using either the Amazon Web Services Management Console or Amazon CLI.

Amazon Web Services Management Console
  1. Open the Service Quotas console at https://console.amazonaws.cn/servicequotas/.

  2. In the navigation pane, select Automatic Management.

  3. Under Selected quotas for exceptions, add the Amazon Web Services services you do not want monitored with Automatic Management. After making your selection, choose Add exceptions.

Amazon CLI

See the following Amazon CLI examples for adding supported Amazon Web Services services to the Automatic Management exclusion list. You'll need to include the Amazon Web Services service code and Service Quotas code in your commands.

  • Finding supported Amazon Web Services services code

    • Use ListServices to list Amazon Web Services services supported by Service Quotas. The response includes the ServiceCode and ServiceName for each service. For example, the ServiceCode for Amazon DynamoDB is dynamodb.

  • Finding Service Quotas codes

    • Use ListServiceQuotas to list Amazon Web Services services Service Quotas codes. You can specify the service with the request parameter ServiceCode. The response includes the QuotaName, QuotaCode, Value, and QuotaAppliedAtLevel.

Example Starts Automatic Management and excludes Amazon DynamoDB quota

The following example both starts Automatic Management and excludes DynamoDB as a service quota that will not be monitored with Automatic Management. Replace the italicized placeholder text in the example command with your information.

aws service-quotas start-auto-management \ --opt-in-level ACCOUNT \ --opt-in-type NotifyOnly \ --region ca-central-1 \ --exclusion-list '{"dynamodb":["L-E123ABC4"]}'
Example Exclude Amazon DynamoDB quota from Automatic Management

The following example excludes DynamoDB from Automatic Management for an Amazon Web Services account in the Canada (Central) Amazon Web Services Region. Replace the italicized placeholder text in the example command with your information.

aws service-quotas update-auto-management \ --opt-in-type NotifyOnly \ --region ca-central-1 \ --exclusion-list '{"dynamodb":["L-E123ABC4"]}'