Skip to content

On Redshift Serverless, how to be notified when the patch version changes or Workgroup version changes?

0

Hi,

I want to get notified whenever redshift patch or workgroup version changes. I was thinking of using eventbridge and sns for this using eventbridge rule with a pattern like below. Not sure if this is the right method. { "source": ["aws.redshift-serverless"], "detail-type": ["Redshift Serverless Management"], "detail": { "message": [{ "suffix": "track has been modified." }] } }

asked a year ago273 views

1 Answer
-1

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

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.