- Newest
- Most votes
- Most comments
You're on the right track with using Amazon EventBridge to receive notifications about Amazon Redshift Serverless workgroup track changes.
Amazon Redshift Serverless uses EventBridge to send event notifications about changes in your data warehouse environment. For workgroup track modifications specifically, you can monitor for the event with ID "REDSHIFT-SERVERLESS-EVENT-1038" which has a severity of "INFO" and a message that indicates "Your Amazon Redshift workgroup <workgroup name> track has been modified. The track change completed."
Your proposed event pattern is close, but I'd recommend structuring it like this:
{
"source": ["aws.redshift-serverless"],
"detail-type": ["Redshift Serverless Management"]
}
You can then create an EventBridge rule with this pattern and set up an Amazon SNS topic as the target. This will allow you to receive notifications whenever there are management events for your Redshift Serverless workgroup, including track modifications.
EventBridge delivers these events in near real-time, allowing you to stay up-to-date with changes to your workgroup. You can also apply additional filters based on resources, time windows, or categories if needed.
Sources
Amazon Redshift Serverless event notifications with Amazon EventBridge - Amazon Redshift
Amazon Redshift Serverless events - Amazon EventBridge
Zero-ETL integration event notifications with Amazon EventBridge - Amazon Redshift
answered a year ago
Relevant content
asked 2 months ago
asked 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago
