Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(iot): add the TopicRule L2 construct #16681

Merged
merged 23 commits into from
Oct 21, 2021
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e6c26f5
feat(iot): support the TopicRule L2 construct
yamatatsu Sep 28, 2021
259ca2e
Merge branch 'master' into aws-iot
yamatatsu Oct 6, 2021
61c9d70
Merge branch 'master' into aws-iot
yamatatsu Oct 8, 2021
5b3f786
Update packages/@aws-cdk/aws-iot/lib/action.ts
yamatatsu Oct 13, 2021
84001cd
Update packages/@aws-cdk/aws-iot/lib/topic-rule.ts
yamatatsu Oct 13, 2021
94dcbbe
fix(iot): be a small PR
yamatatsu Oct 13, 2021
f969810
Merge branch 'master' into aws-iot
yamatatsu Oct 13, 2021
e2b78f5
Update packages/@aws-cdk/aws-iot/lib/topic-rule.ts
yamatatsu Oct 15, 2021
4023a08
Update packages/@aws-cdk/aws-iot/lib/topic-rule.ts
yamatatsu Oct 15, 2021
912fdaf
Update packages/@aws-cdk/aws-iot/test/topic-rule.test.ts
yamatatsu Oct 15, 2021
1562ac6
Update packages/@aws-cdk/aws-iot/test/topic-rule.test.ts
yamatatsu Oct 15, 2021
1ada690
fix(iot): about feedbacks
yamatatsu Oct 16, 2021
9e7256b
feat(iot): modeling AWS IoT SQL
yamatatsu Oct 18, 2021
59815ad
Update packages/@aws-cdk/aws-iot/test/iot-sql.test.ts
yamatatsu Oct 19, 2021
89a8571
Update packages/@aws-cdk/aws-iot/test/topic-rule.test.ts
yamatatsu Oct 19, 2021
8a94620
Update packages/@aws-cdk/aws-iot/test/topic-rule.test.ts
yamatatsu Oct 19, 2021
a252d75
Update packages/@aws-cdk/aws-iot/test/topic-rule.test.ts
yamatatsu Oct 19, 2021
30d0fa6
Update packages/@aws-cdk/aws-iot/test/topic-rule.test.ts
yamatatsu Oct 19, 2021
f21567e
Update packages/@aws-cdk/aws-iot/test/topic-rule.test.ts
yamatatsu Oct 19, 2021
e150499
Update packages/@aws-cdk/aws-iot/lib/topic-rule.ts
yamatatsu Oct 19, 2021
13b4701
fix(iot): about feedbacks
yamatatsu Oct 19, 2021
1bcb870
feat(iot): remove IAction
yamatatsu Oct 21, 2021
f2c0a38
Merge branch 'master' into aws-iot
mergify[bot] Oct 21, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update packages/@aws-cdk/aws-iot/test/iot-sql.test.ts
Co-authored-by: Adam Ruka <[email protected]>
  • Loading branch information
yamatatsu and skinny85 authored Oct 19, 2021
commit 59815adb71d82f0234136c57275f6abdb974dcbb
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-iot/test/iot-sql.test.ts
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ describe('sql version 2015-10-08', () => {
});
});

test('Can\'t set empty sql', () => {
test("Can't set empty sql", () => {
expect(() => {
iot.IotSql.fromStringAsVer20151008('');
}).toThrow('sql cannot be empty.');