# <a id="bitdrift.public.unary.alerts.v1.RateLimitedNotificationConfig"></a>RateLimitedNotificationConfig

**Source definition:** [`src/bitdrift/public/unary/alerts/v1/notifications.proto#L37-L44`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/unary/alerts/v1/notifications.proto#L37-L44>)

Configures alert notification delivery together with its rate limit.

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| min_time_between_notifications | <span class="proto-type proto-type-well-known">[google.protobuf.Duration](https://protobuf.dev/reference/protobuf/google.protobuf/#duration "google.protobuf.Duration")</span> | The minimum time between notifications for the same alert target. If unset, the server uses  a default interval of 5 minutes. |
| notification_config | <span class="proto-type proto-type-message">[<i class="proto-type-part">bitdrift</i><i class="proto-type-dot">.</i><i class="proto-type-part">public</i><i class="proto-type-dot">.</i><i class="proto-type-part">unary</i><i class="proto-type-dot">.</i><i class="proto-type-part">alerts</i><i class="proto-type-dot">.</i><i class="proto-type-part">v1</i><i class="proto-type-dot">.</i><i class="proto-type-part">AlertNotificationConfig</i>](bitdrift_public_unary_alerts_v1_AlertNotificationConfig.md "bitdrift.public.unary.alerts.v1.AlertNotificationConfig")</span> | The notification target and channel settings for this notification. |

</section>
<p class="h4">Example</p>
```json
{
  "min_time_between_notifications": "3600s",
  "notification_config": {
    "disabled": false,
    "notification_group": {
      "name": "engineering-oncall"
    }
  }
}
```

