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 .

已提问 3 个月前263 查看次数
1 回答
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.

profile picture
专家
已回答 3 个月前
  • 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 .

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则