Skip to content

How to attach a sns event notification to a sagemaker pipeline?

0

Does sagamaker pipeline support , sending success/failure of the pipeline execution ? I want to see if I can trigger a aba notification when the pipeline completes either with success or failure .

asked 2 years ago1.3K views

1 Answer
0

To trigger an SNS notification when the pipeline completes:

Create an SNS topic that will receive the notifications.

Add an SnsAlarm action to the pipeline configuration. Configure it to run on failure of the pipeline execution and pass the error details.

For example:

"Actions": [ { "Name": "MyAlarm", "RunCondition": "Failed", "Type": "SnsAlarm", "AlarmName": "MyPipelineAlarm", "TopicArn": "arn:aws:sns:us-east-1:111122223333:my-topic" } ] The SNS topic can then be used to notify relevant parties via email, SMS etc. when the pipeline fails. Similarly, you can add another SnsAlarm action to notify on success and pass the success details.

EXPERT

answered 2 years ago

  • Thanks . How do I create sns alarm and hook it to pipeline . Do you know of example that you can point me to ? The way I have used sns topic in the past is with an event bridge rule .

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.