@gammarers/aws-stepfunctions-execution-status-change-notification-stack
v2.0.5
Published
This AWS CDK Stack retrieves the status of Step Functions via EventBridge and sends notifications accordingly. Currently, it only detects and notifies when the status of any machine is either "Failed" or "TimeOut."
Readme
AWS Step Functions Execution Status Change Notification Stack
This AWS CDK Stack retrieves the status of Step Functions via EventBridge and sends notifications accordingly. Currently, it only detects and notifies when the status of any machine is either "Failed" or "TimeOut."
TypeScript
install by npm
npm install @gammarers/aws-stepfunctions-execution-status-change-notification-stackinstall by yarn
yarn add @gammarers/aws-stepfunctions-execution-status-change-notification-stackExample
Code
import { StepFunctionsExecutionStatusChangeNotificationStack } from '@gammarers/aws-stepfunctions-execution-status-change-notification-stack';
new StepFunctionsExecutionStatusChangeNotificationStack(app, 'StepFunctionsExecutionStatusChangeNotificationStack', {
enableRule: true,
notifications: {
emails: [
'[email protected]',
'[email protected]',
],
},
});License
This project is licensed under the Apache-2.0 License.
