

# Updating Service Quotas Automatic Management configuration
<a name="updating-automatic-management"></a>

You can update your Service Quotas Automatic Management by adding service quotas to the exclusion list or changing your Automatic Management notification configuration. Use the following procedure to update Automatic Management configuration for your Amazon Web Services account using 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/](https://console.amazonaws.cn/servicequotas/).

1. In the navigation pane, choose **Automatic Management**.

1. Make the changes to your Automatic Management configuration.

   1. **Exclusion list update** - you can add service quotas from the exclusion list. See [Excluding service quotas from Service Quotas Automatic Management](excluding-quotas.md).

   1. **Notification configuration update** - Under **Notification configuration**, choose **Edit**. You're directed to the Amazon User Notifications console where you can edit the notifications for Automatic Management. For more information, see [Creating your first notification configuration in Amazon User Notifications](https://docs.amazonaws.cn/notifications/latest/userguide/getting-started.html) in the *Amazon User Notifications User Guide*.

------
#### [ Amazon CLI ]

To update Automatic Management notifications with the Amazon CLI, use the Amazon User Notifications command, [update-notification-configuration](https://docs.amazonaws.cn/cli/latest/reference/notifications/update-notification-configuration.html) or [UpdateNotificationConfiguration](https://docs.amazonaws.cn/notifications/latest/APIReference/API_UpdateNotificationConfiguration.html) in the *Amazon User Notifications API Reference*. 

**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"]}'
```

------