I want to ensure I don't miss Amazon Bedrock Model Deprecation Notices that can get mixed in with other AWS Health notifications.
Short Description
Amazon Bedrock models follow a defined lifecycle: Active → Legacy → End-of-Life (EOL). When a model enters Legacy status, AWS provides at least 6 months of advance notice before it becomes inaccessible. These notifications arrive via AWS Health (Personal Health Dashboard), but if your team isn't actively monitoring the console, critical deprecation notices can slip through the cracks.
This article shows you how to use AWS User Notifications and EventBridge to ensure your team never misses a Bedrock model deprecation event: routing alerts to email, Slack, Amazon Chime, or the mobile app.
Resolution
Prerequisites:
- Understanding of Personal Health Dashboard and AWS Health notifications
- Ensure a dedicated email address or Slack channel exists to send Bedrock Model Deprecation notifications
- SNS Topic created for Event Bridge
Option 1: AWS User Notifications
Note: AWS User Notifications is not available in GovCloud yet (June 2026). Skip to Option 2 if you are using GovCloud.
-
Open AWS Health Notifications and click Create notification configuration
-
Fill out the Name field (i.e. Bedrock-Deprecation-Notifications)
-
Under Event Rules, fill out the following:
- AWS service name: Health
- Event type: Specific Health events
- Region: select appropriate Region(s)
-
Click the Advanced filter (optional) and enter in the following JSON:
{
"detail": {
"eventTypeCode": [
"AWS_BEDROCK_PLANNED_LIFECYCLE_EVENT"
]
}
}
- Under Delivery Channels, select the appropriate option for your use case:
- Add tags if necessary (optional)
- Click Create notification configuration
Option 2: EventBridge
- Open EventBridge to create a Rule
- Click on Advanced Builder
- Fill out the Name Field (i.e. Bedrock-Deprecation-Notifications)
- Enter a Description if you'd like and click Next
- Under Events select Other
- Enter the following JSON in the Event pattern under Custom pattern (JSON editor):
{
"source": ["aws.health"],
"detail-type": ["AWS Health Event"],
"detail": {
"eventTypeCode": ["AWS_BEDROCK_PLANNED_LIFECYCLE_EVENT"]
}
}
- Click Next
- Configure your Target - for example, if you want to send the notification to an SNS topic, select AWS service under Target types and SNS topic under Select a target
- Select Target Location and Topic of your SNS topic and click Next
- Review and click Create Rule

Additional Resources
Amazon Bedrock Model Lifecycle Documentation
Configuring EventBridge to send notifications about AWS Health
AWS Health Planned Lifecycle Events Blog Post
Creating an SNS Topic