@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -3678,7 +3678,7 @@
3678
3678
  "stability": "stable"
3679
3679
  },
3680
3680
  "homepage": "https://github.com/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule.git",
3681
- "jsiiVersion": "5.7.8 (build 2bc6834)",
3681
+ "jsiiVersion": "5.7.9 (build fc02aa4)",
3682
3682
  "keywords": [
3683
3683
  "cdk"
3684
3684
  ],
@@ -3693,7 +3693,7 @@
3693
3693
  },
3694
3694
  "name": "@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule",
3695
3695
  "readme": {
3696
- "markdown": "# AWS Step Functions Execution Status Change Detection Event Rule\n\nThis an AWS Step Functions execution status change detection event rule.\ndefault catch status is fail or timeout.\n"
3696
+ "markdown": "# AWS Step Functions Execution Status Change Detection Event Rule\n\n[![GitHub](https://img.shields.io/github/license/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule?style=flat-square)](https://github.com/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule/blob/main/LICENSE)\n[![npm (scoped)](https://img.shields.io/npm/v/@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule?style=flat-square)](https://www.npmjs.com/package/@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule)\n[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule/actions/workflows/release.yml)\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule?sort=semver&style=flat-square)](https://github.com/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule/releases)\n\n[![View on Construct Hub](https://constructs.dev/badge?package=@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule)](https://constructs.dev/packages/@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule)\n\nThis an AWS Step Functions execution status change detection event rule.\ndefault catch status is fail or timeout.\n\n## Install\n\n### TypeScript\n\n#### install by npm\n\n```shell\nnpm install @gammarers/aws-stepfunctions-execution-status-change-detection-event-rule\n```\n\n#### install by yarn\n\n```shell\nyarn add @gammarers/aws-stepfunctions-execution-status-change-detection-event-rule\n```\n\n## Example\n\n### Code\n\n```typescript\nimport { StepFunctionsExecutionStatusChangeDetectionEventRule } from '@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule';\n\ndeclare const handler: lambda.Function;\n\nnew StepFunctionsExecutionStatusChangeDetectionEventRule(stack, 'StepFunctionsExecutionStatusChangeDetectionEventRule', {\n targets: [\n new targets.LambdaFunction(handler),\n ],\n});\n```\n\n# License\n\nThis project is licensed under the Apache-2.0 License.\n"
3697
3697
  },
3698
3698
  "repository": {
3699
3699
  "type": "git",
@@ -3772,6 +3772,6 @@
3772
3772
  "symbolId": "src/index:StepFunctionsExecutionStatusChangeDetectionEventRuleProps"
3773
3773
  }
3774
3774
  },
3775
- "version": "1.0.0",
3776
- "fingerprint": "grqLIBSn817c5wo2JQseY8Jb8VUo/j7ha8SXFdIItKM="
3775
+ "version": "1.0.2",
3776
+ "fingerprint": "Kal/mntfgxAHOX0ADMUnyC/mDQXHMAgYpdnhtGTb3Ow="
3777
3777
  }
package/README.md CHANGED
@@ -1,4 +1,47 @@
1
1
  # AWS Step Functions Execution Status Change Detection Event Rule
2
2
 
3
+ [![GitHub](https://img.shields.io/github/license/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule?style=flat-square)](https://github.com/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule/blob/main/LICENSE)
4
+ [![npm (scoped)](https://img.shields.io/npm/v/@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule?style=flat-square)](https://www.npmjs.com/package/@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule)
5
+ [![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule/actions/workflows/release.yml)
6
+ [![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule?sort=semver&style=flat-square)](https://github.com/gammarers/aws-stepfunctions-execution-status-change-detection-event-rule/releases)
7
+
8
+ [![View on Construct Hub](https://constructs.dev/badge?package=@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule)](https://constructs.dev/packages/@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule)
9
+
3
10
  This an AWS Step Functions execution status change detection event rule.
4
11
  default catch status is fail or timeout.
12
+
13
+ ## Install
14
+
15
+ ### TypeScript
16
+
17
+ #### install by npm
18
+
19
+ ```shell
20
+ npm install @gammarers/aws-stepfunctions-execution-status-change-detection-event-rule
21
+ ```
22
+
23
+ #### install by yarn
24
+
25
+ ```shell
26
+ yarn add @gammarers/aws-stepfunctions-execution-status-change-detection-event-rule
27
+ ```
28
+
29
+ ## Example
30
+
31
+ ### Code
32
+
33
+ ```typescript
34
+ import { StepFunctionsExecutionStatusChangeDetectionEventRule } from '@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule';
35
+
36
+ declare const handler: lambda.Function;
37
+
38
+ new StepFunctionsExecutionStatusChangeDetectionEventRule(stack, 'StepFunctionsExecutionStatusChangeDetectionEventRule', {
39
+ targets: [
40
+ new targets.LambdaFunction(handler),
41
+ ],
42
+ });
43
+ ```
44
+
45
+ # License
46
+
47
+ This project is licensed under the Apache-2.0 License.
package/lib/index.js CHANGED
@@ -32,5 +32,5 @@ class StepFunctionsExecutionStatusChangeDetectionEventRule extends events.Rule {
32
32
  }
33
33
  exports.StepFunctionsExecutionStatusChangeDetectionEventRule = StepFunctionsExecutionStatusChangeDetectionEventRule;
34
34
  _a = JSII_RTTI_SYMBOL_1;
35
- StepFunctionsExecutionStatusChangeDetectionEventRule[_a] = { fqn: "@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule.StepFunctionsExecutionStatusChangeDetectionEventRule", version: "1.0.0" };
35
+ StepFunctionsExecutionStatusChangeDetectionEventRule[_a] = { fqn: "@gammarers/aws-stepfunctions-execution-status-change-detection-event-rule.StepFunctionsExecutionStatusChangeDetectionEventRule", version: "1.0.2" };
36
36
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSw4REFBb0Y7QUFDcEYsaURBQWlEO0FBZWpELE1BQWEsb0RBQXFELFNBQVEsTUFBTSxDQUFDLElBQUk7SUFDbkYsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUFnRTtRQUN4RyxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsRUFBRTtZQUNmLEdBQUcsS0FBSztZQUNSLFlBQVksRUFBRSxDQUFDLEdBQXdCLEVBQUU7Z0JBQ3ZDLElBQUksS0FBSyxDQUFDLFlBQVksRUFBRSxDQUFDO29CQUN2QixNQUFNLElBQUksd0RBQXVDLENBQUMsY0FBYyxDQUFDLENBQUM7Z0JBQ3BFLENBQUM7Z0JBQ0QsT0FBTztvQkFDTCxNQUFNLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3RCLFVBQVUsRUFBRSxDQUFDLHdDQUF3QyxDQUFDO29CQUN0RCxNQUFNLEVBQUUsQ0FBQyxHQUFHLEVBQUU7d0JBQ1oscUNBQXFDO3dCQUNyQyw0QkFBNEI7d0JBQzVCLFlBQVk7d0JBQ1osc0NBQXNDO3dCQUN0QyxNQUFNO3dCQUNOLElBQUk7d0JBQ0osT0FBTyxFQUFFLE1BQU0sRUFBRSxDQUFDLFFBQVEsRUFBRSxXQUFXLENBQUMsRUFBRSxDQUFDO29CQUM3QyxDQUFDLENBQUMsRUFBRTtpQkFDTCxDQUFDO1lBQ0osQ0FBQyxDQUFDLEVBQUU7U0FDTCxDQUFDLENBQUM7SUFDTCxDQUFDOztBQXZCSCxvSEF3QkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbnZhbGlkSW50ZXJuYWxEZWZpbml0aW9uUGFyYW1ldGVyRXJyb3IgfSBmcm9tICdAZ2FtbWFyZXJzL2F3cy1jZGstZXJyb3JzJztcbmltcG9ydCAqIGFzIGV2ZW50cyBmcm9tICdhd3MtY2RrLWxpYi9hd3MtZXZlbnRzJztcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuXG4vKipcbiAqIEBUT0RPOiBOb3QgeWV0IHN1cHBvcnRlZCBPbWl0XG4gKiBodHRwczovL2dpdGh1Yi5jb20vYXdzL2pzaWkvaXNzdWVzLzQ0NjhcbiAqIHR5cGUgb21pdEtleXMgPSAnZXZlbnRQYXR0ZXJuJztcbiAqIGV4cG9ydCBpbnRlcmZhY2UgQ29kZVBpcGVsaW5lU3RhdGVDaGFuZ2VEZXRlY3Rpb25FdmVudFJ1bGVQcm9wcyBleHRlbmRzIE9taXQ8ZXZlbnRzLlJ1bGVQcm9wcywgJ2V2ZW50UGF0dGVybic+IHt9XG4gKi9cblxuLy8gUlVOTklORyB8IFNVQ0NFRURFRCB8IEZBSUxFRCB8IFRJTUVEX09VVCB8IEFCT1JURUQgfCBQRU5ESU5HX1JFRFJJVkVcblxuZXhwb3J0IGludGVyZmFjZSBTdGVwRnVuY3Rpb25zRXhlY3V0aW9uU3RhdHVzQ2hhbmdlRGV0ZWN0aW9uRXZlbnRSdWxlUHJvcHMgZXh0ZW5kcyBldmVudHMuUnVsZVByb3BzIHtcbn1cblxuZXhwb3J0IGNsYXNzIFN0ZXBGdW5jdGlvbnNFeGVjdXRpb25TdGF0dXNDaGFuZ2VEZXRlY3Rpb25FdmVudFJ1bGUgZXh0ZW5kcyBldmVudHMuUnVsZSB7XG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBTdGVwRnVuY3Rpb25zRXhlY3V0aW9uU3RhdHVzQ2hhbmdlRGV0ZWN0aW9uRXZlbnRSdWxlUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIHtcbiAgICAgIC4uLnByb3BzLFxuICAgICAgZXZlbnRQYXR0ZXJuOiAoKCk6IGV2ZW50cy5FdmVudFBhdHRlcm4gPT4ge1xuICAgICAgICBpZiAocHJvcHMuZXZlbnRQYXR0ZXJuKSB7XG4gICAgICAgICAgdGhyb3cgbmV3IEludmFsaWRJbnRlcm5hbERlZmluaXRpb25QYXJhbWV0ZXJFcnJvcignZXZlbnRQYXR0ZXJuJyk7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICBzb3VyY2U6IFsnYXdzLnN0YXRlcyddLFxuICAgICAgICAgIGRldGFpbFR5cGU6IFsnU3RlcCBGdW5jdGlvbnMgRXhlY3V0aW9uIFN0YXR1cyBDaGFuZ2UnXSxcbiAgICAgICAgICBkZXRhaWw6ICgoKSA9PiB7XG4gICAgICAgICAgICAvLyBpZiAocHJvcHMudGFyZ2V0U3RhdGVNYWNoaW5lQXJuKSB7XG4gICAgICAgICAgICAvLyBpZiAocHJvcHMudGFyZ2V0U3RhdGVzKSB7XG4gICAgICAgICAgICAvLyAgcmV0dXJuIHtcbiAgICAgICAgICAgIC8vICAgIHN0YXR1czogWydGQUlMRUQnLCAnVElNRURfT1VUJ10sXG4gICAgICAgICAgICAvLyAgfTtcbiAgICAgICAgICAgIC8vIH1cbiAgICAgICAgICAgIHJldHVybiB7IHN0YXR1czogWydGQUlMRUQnLCAnVElNRURfT1VUJ10gfTtcbiAgICAgICAgICB9KSgpLFxuICAgICAgICB9O1xuICAgICAgfSkoKSxcbiAgICB9KTtcbiAgfVxufSJdfQ==
package/package.json CHANGED
@@ -44,7 +44,7 @@
44
44
  "commit-and-tag-version": "^12",
45
45
  "constructs": "10.0.5",
46
46
  "eslint": "^9",
47
- "eslint-import-resolver-typescript": "^3.8.4",
47
+ "eslint-import-resolver-typescript": "^3.9.1",
48
48
  "eslint-plugin-import": "^2.31.0",
49
49
  "jest": "^29.7.0",
50
50
  "jest-junit": "^16",
@@ -53,7 +53,7 @@
53
53
  "jsii-docgen": "^10.5.0",
54
54
  "jsii-pacmak": "^1.109.0",
55
55
  "jsii-rosetta": "5.7.x",
56
- "projen": "^0.91.14",
56
+ "projen": "^0.91.18",
57
57
  "ts-jest": "^29.2.6",
58
58
  "ts-node": "^10.9.2",
59
59
  "typescript": "5.7.x"
@@ -76,7 +76,7 @@
76
76
  "publishConfig": {
77
77
  "access": "public"
78
78
  },
79
- "version": "1.0.0",
79
+ "version": "1.0.2",
80
80
  "jest": {
81
81
  "coverageProvider": "v8",
82
82
  "testMatch": [