@aws-solutions-constructs/aws-eventbridge-sqs 2.51.0 → 2.52.1

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.
Files changed (45) hide show
  1. package/.eslintignore +2 -0
  2. package/.jsii +49 -4
  3. package/integ.config.json +7 -0
  4. package/lib/index.js +1 -1
  5. package/package.json +9 -8
  6. package/test/integ.evtsqs-exist-bus.js +5 -2
  7. package/test/integ.evtsqs-exist-bus.js.snapshot/cdk.out +1 -0
  8. package/test/integ.evtsqs-exist-bus.js.snapshot/evtsqs-exist-bus.assets.json +19 -0
  9. package/test/integ.evtsqs-exist-bus.js.snapshot/evtsqs-exist-bus.template.json +168 -0
  10. package/test/integ.evtsqs-exist-bus.js.snapshot/evtsqsexistbusIntegDefaultTestDeployAssertD6166996.assets.json +19 -0
  11. package/test/integ.evtsqs-exist-bus.js.snapshot/evtsqsexistbusIntegDefaultTestDeployAssertD6166996.template.json +36 -0
  12. package/test/integ.evtsqs-exist-bus.js.snapshot/integ.json +12 -0
  13. package/test/integ.evtsqs-exist-bus.js.snapshot/manifest.json +137 -0
  14. package/test/integ.evtsqs-exist-bus.js.snapshot/tree.json +327 -0
  15. package/test/integ.evtsqs-exist-queue.js +5 -2
  16. package/test/integ.evtsqs-exist-queue.js.snapshot/cdk.out +1 -0
  17. package/test/integ.evtsqs-exist-queue.js.snapshot/evtsqs-exist-queue.assets.json +19 -0
  18. package/test/integ.evtsqs-exist-queue.js.snapshot/evtsqs-exist-queue.template.json +155 -0
  19. package/test/integ.evtsqs-exist-queue.js.snapshot/evtsqsexistqueueIntegDefaultTestDeployAssert4E2D04AB.assets.json +19 -0
  20. package/test/integ.evtsqs-exist-queue.js.snapshot/evtsqsexistqueueIntegDefaultTestDeployAssert4E2D04AB.template.json +36 -0
  21. package/test/integ.evtsqs-exist-queue.js.snapshot/integ.json +12 -0
  22. package/test/integ.evtsqs-exist-queue.js.snapshot/manifest.json +131 -0
  23. package/test/integ.evtsqs-exist-queue.js.snapshot/tree.json +296 -0
  24. package/test/integ.evtsqs-new-bus.js +5 -2
  25. package/test/integ.evtsqs-new-bus.js.snapshot/cdk.out +1 -0
  26. package/test/integ.evtsqs-new-bus.js.snapshot/evtsqs-new-bus.assets.json +19 -0
  27. package/test/integ.evtsqs-new-bus.js.snapshot/evtsqs-new-bus.template.json +312 -0
  28. package/test/integ.evtsqs-new-bus.js.snapshot/evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2.assets.json +19 -0
  29. package/test/integ.evtsqs-new-bus.js.snapshot/evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2.template.json +36 -0
  30. package/test/integ.evtsqs-new-bus.js.snapshot/integ.json +12 -0
  31. package/test/integ.evtsqs-new-bus.js.snapshot/manifest.json +155 -0
  32. package/test/integ.evtsqs-new-bus.js.snapshot/tree.json +505 -0
  33. package/test/integ.evtsqs-no-arg.js +5 -2
  34. package/test/integ.evtsqs-no-arg.js.snapshot/cdk.out +1 -0
  35. package/test/integ.evtsqs-no-arg.js.snapshot/evtsqs-no-arg.assets.json +19 -0
  36. package/test/integ.evtsqs-no-arg.js.snapshot/evtsqs-no-arg.template.json +299 -0
  37. package/test/integ.evtsqs-no-arg.js.snapshot/evtsqsnoargIntegDefaultTestDeployAssertB5DFB718.assets.json +19 -0
  38. package/test/integ.evtsqs-no-arg.js.snapshot/evtsqsnoargIntegDefaultTestDeployAssertB5DFB718.template.json +36 -0
  39. package/test/integ.evtsqs-no-arg.js.snapshot/integ.json +12 -0
  40. package/test/integ.evtsqs-no-arg.js.snapshot/manifest.json +149 -0
  41. package/test/integ.evtsqs-no-arg.js.snapshot/tree.json +474 -0
  42. package/test/integ.evtsqs-exist-bus.expected.json +0 -168
  43. package/test/integ.evtsqs-exist-queue.expected.json +0 -155
  44. package/test/integ.evtsqs-new-bus.expected.json +0 -312
  45. package/test/integ.evtsqs-no-arg.expected.json +0 -299
@@ -0,0 +1,312 @@
1
+ {
2
+ "Resources": {
3
+ "constructdeadLetterQueueD87A77D4": {
4
+ "Type": "AWS::SQS::Queue",
5
+ "Properties": {
6
+ "KmsMasterKeyId": "alias/aws/sqs"
7
+ },
8
+ "UpdateReplacePolicy": "Delete",
9
+ "DeletionPolicy": "Delete"
10
+ },
11
+ "constructdeadLetterQueuePolicyBA602BC6": {
12
+ "Type": "AWS::SQS::QueuePolicy",
13
+ "Properties": {
14
+ "PolicyDocument": {
15
+ "Statement": [
16
+ {
17
+ "Action": [
18
+ "sqs:AddPermission",
19
+ "sqs:DeleteMessage",
20
+ "sqs:GetQueueAttributes",
21
+ "sqs:ReceiveMessage",
22
+ "sqs:RemovePermission",
23
+ "sqs:SendMessage",
24
+ "sqs:SetQueueAttributes"
25
+ ],
26
+ "Effect": "Allow",
27
+ "Principal": {
28
+ "AWS": {
29
+ "Fn::Join": [
30
+ "",
31
+ [
32
+ "arn:",
33
+ {
34
+ "Ref": "AWS::Partition"
35
+ },
36
+ ":iam::",
37
+ {
38
+ "Ref": "AWS::AccountId"
39
+ },
40
+ ":root"
41
+ ]
42
+ ]
43
+ }
44
+ },
45
+ "Resource": {
46
+ "Fn::GetAtt": [
47
+ "constructdeadLetterQueueD87A77D4",
48
+ "Arn"
49
+ ]
50
+ },
51
+ "Sid": "QueueOwnerOnlyAccess"
52
+ },
53
+ {
54
+ "Action": "SQS:*",
55
+ "Condition": {
56
+ "Bool": {
57
+ "aws:SecureTransport": "false"
58
+ }
59
+ },
60
+ "Effect": "Deny",
61
+ "Principal": {
62
+ "AWS": "*"
63
+ },
64
+ "Resource": {
65
+ "Fn::GetAtt": [
66
+ "constructdeadLetterQueueD87A77D4",
67
+ "Arn"
68
+ ]
69
+ },
70
+ "Sid": "HttpsOnly"
71
+ }
72
+ ],
73
+ "Version": "2012-10-17"
74
+ },
75
+ "Queues": [
76
+ {
77
+ "Ref": "constructdeadLetterQueueD87A77D4"
78
+ }
79
+ ]
80
+ }
81
+ },
82
+ "constructEncryptionKey9426451E": {
83
+ "Type": "AWS::KMS::Key",
84
+ "Properties": {
85
+ "EnableKeyRotation": true,
86
+ "KeyPolicy": {
87
+ "Statement": [
88
+ {
89
+ "Action": "kms:*",
90
+ "Effect": "Allow",
91
+ "Principal": {
92
+ "AWS": {
93
+ "Fn::Join": [
94
+ "",
95
+ [
96
+ "arn:",
97
+ {
98
+ "Ref": "AWS::Partition"
99
+ },
100
+ ":iam::",
101
+ {
102
+ "Ref": "AWS::AccountId"
103
+ },
104
+ ":root"
105
+ ]
106
+ ]
107
+ }
108
+ },
109
+ "Resource": "*"
110
+ },
111
+ {
112
+ "Action": [
113
+ "kms:Decrypt",
114
+ "kms:Encrypt",
115
+ "kms:GenerateDataKey*",
116
+ "kms:ReEncrypt*"
117
+ ],
118
+ "Effect": "Allow",
119
+ "Principal": {
120
+ "Service": "events.amazonaws.com"
121
+ },
122
+ "Resource": "*"
123
+ }
124
+ ],
125
+ "Version": "2012-10-17"
126
+ }
127
+ },
128
+ "UpdateReplacePolicy": "Retain",
129
+ "DeletionPolicy": "Retain"
130
+ },
131
+ "constructqueue481DC1EC": {
132
+ "Type": "AWS::SQS::Queue",
133
+ "Properties": {
134
+ "KmsMasterKeyId": {
135
+ "Fn::GetAtt": [
136
+ "constructEncryptionKey9426451E",
137
+ "Arn"
138
+ ]
139
+ },
140
+ "RedrivePolicy": {
141
+ "deadLetterTargetArn": {
142
+ "Fn::GetAtt": [
143
+ "constructdeadLetterQueueD87A77D4",
144
+ "Arn"
145
+ ]
146
+ },
147
+ "maxReceiveCount": 15
148
+ }
149
+ },
150
+ "UpdateReplacePolicy": "Delete",
151
+ "DeletionPolicy": "Delete"
152
+ },
153
+ "constructqueuePolicy5B0256B1": {
154
+ "Type": "AWS::SQS::QueuePolicy",
155
+ "Properties": {
156
+ "PolicyDocument": {
157
+ "Statement": [
158
+ {
159
+ "Action": [
160
+ "sqs:AddPermission",
161
+ "sqs:DeleteMessage",
162
+ "sqs:GetQueueAttributes",
163
+ "sqs:ReceiveMessage",
164
+ "sqs:RemovePermission",
165
+ "sqs:SendMessage",
166
+ "sqs:SetQueueAttributes"
167
+ ],
168
+ "Effect": "Allow",
169
+ "Principal": {
170
+ "AWS": {
171
+ "Fn::Join": [
172
+ "",
173
+ [
174
+ "arn:",
175
+ {
176
+ "Ref": "AWS::Partition"
177
+ },
178
+ ":iam::",
179
+ {
180
+ "Ref": "AWS::AccountId"
181
+ },
182
+ ":root"
183
+ ]
184
+ ]
185
+ }
186
+ },
187
+ "Resource": {
188
+ "Fn::GetAtt": [
189
+ "constructqueue481DC1EC",
190
+ "Arn"
191
+ ]
192
+ },
193
+ "Sid": "QueueOwnerOnlyAccess"
194
+ },
195
+ {
196
+ "Action": "SQS:*",
197
+ "Condition": {
198
+ "Bool": {
199
+ "aws:SecureTransport": "false"
200
+ }
201
+ },
202
+ "Effect": "Deny",
203
+ "Principal": {
204
+ "AWS": "*"
205
+ },
206
+ "Resource": {
207
+ "Fn::GetAtt": [
208
+ "constructqueue481DC1EC",
209
+ "Arn"
210
+ ]
211
+ },
212
+ "Sid": "HttpsOnly"
213
+ },
214
+ {
215
+ "Action": [
216
+ "sqs:GetQueueAttributes",
217
+ "sqs:GetQueueUrl",
218
+ "sqs:SendMessage"
219
+ ],
220
+ "Effect": "Allow",
221
+ "Principal": {
222
+ "Service": "events.amazonaws.com"
223
+ },
224
+ "Resource": {
225
+ "Fn::GetAtt": [
226
+ "constructqueue481DC1EC",
227
+ "Arn"
228
+ ]
229
+ }
230
+ }
231
+ ],
232
+ "Version": "2012-10-17"
233
+ },
234
+ "Queues": [
235
+ {
236
+ "Ref": "constructqueue481DC1EC"
237
+ }
238
+ ]
239
+ }
240
+ },
241
+ "constructCustomEventBusA674C94A": {
242
+ "Type": "AWS::Events::EventBus",
243
+ "Properties": {
244
+ "Name": "evtsqsnewbusconstructCustomEventBus3025C22E"
245
+ }
246
+ },
247
+ "constructEventsRule43880ADB": {
248
+ "Type": "AWS::Events::Rule",
249
+ "Properties": {
250
+ "EventBusName": {
251
+ "Ref": "constructCustomEventBusA674C94A"
252
+ },
253
+ "EventPattern": {
254
+ "source": [
255
+ "solutionsconstructs"
256
+ ]
257
+ },
258
+ "State": "ENABLED",
259
+ "Targets": [
260
+ {
261
+ "Arn": {
262
+ "Fn::GetAtt": [
263
+ "constructqueue481DC1EC",
264
+ "Arn"
265
+ ]
266
+ },
267
+ "Id": {
268
+ "Fn::GetAtt": [
269
+ "constructqueue481DC1EC",
270
+ "QueueName"
271
+ ]
272
+ }
273
+ }
274
+ ]
275
+ }
276
+ }
277
+ },
278
+ "Parameters": {
279
+ "BootstrapVersion": {
280
+ "Type": "AWS::SSM::Parameter::Value<String>",
281
+ "Default": "/cdk-bootstrap/hnb659fds/version",
282
+ "Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]"
283
+ }
284
+ },
285
+ "Rules": {
286
+ "CheckBootstrapVersion": {
287
+ "Assertions": [
288
+ {
289
+ "Assert": {
290
+ "Fn::Not": [
291
+ {
292
+ "Fn::Contains": [
293
+ [
294
+ "1",
295
+ "2",
296
+ "3",
297
+ "4",
298
+ "5"
299
+ ],
300
+ {
301
+ "Ref": "BootstrapVersion"
302
+ }
303
+ ]
304
+ }
305
+ ]
306
+ },
307
+ "AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI."
308
+ }
309
+ ]
310
+ }
311
+ }
312
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "version": "36.0.0",
3
+ "files": {
4
+ "21fbb51d7b23f6a6c262b46a9caee79d744a3ac019fd45422d988b96d44b2a22": {
5
+ "source": {
6
+ "path": "evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2.template.json",
7
+ "packaging": "file"
8
+ },
9
+ "destinations": {
10
+ "current_account-current_region": {
11
+ "bucketName": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}",
12
+ "objectKey": "21fbb51d7b23f6a6c262b46a9caee79d744a3ac019fd45422d988b96d44b2a22.json",
13
+ "assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-file-publishing-role-${AWS::AccountId}-${AWS::Region}"
14
+ }
15
+ }
16
+ }
17
+ },
18
+ "dockerImages": {}
19
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "Parameters": {
3
+ "BootstrapVersion": {
4
+ "Type": "AWS::SSM::Parameter::Value<String>",
5
+ "Default": "/cdk-bootstrap/hnb659fds/version",
6
+ "Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]"
7
+ }
8
+ },
9
+ "Rules": {
10
+ "CheckBootstrapVersion": {
11
+ "Assertions": [
12
+ {
13
+ "Assert": {
14
+ "Fn::Not": [
15
+ {
16
+ "Fn::Contains": [
17
+ [
18
+ "1",
19
+ "2",
20
+ "3",
21
+ "4",
22
+ "5"
23
+ ],
24
+ {
25
+ "Ref": "BootstrapVersion"
26
+ }
27
+ ]
28
+ }
29
+ ]
30
+ },
31
+ "AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI."
32
+ }
33
+ ]
34
+ }
35
+ }
36
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "version": "36.0.0",
3
+ "testCases": {
4
+ "evtsqs-new-bus/Integ/DefaultTest": {
5
+ "stacks": [
6
+ "evtsqs-new-bus"
7
+ ],
8
+ "assertionStack": "evtsqs-new-bus/Integ/DefaultTest/DeployAssert",
9
+ "assertionStackName": "evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2"
10
+ }
11
+ }
12
+ }
@@ -0,0 +1,155 @@
1
+ {
2
+ "version": "36.0.0",
3
+ "artifacts": {
4
+ "evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2.assets": {
5
+ "type": "cdk:asset-manifest",
6
+ "properties": {
7
+ "file": "evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2.assets.json",
8
+ "requiresBootstrapStackVersion": 6,
9
+ "bootstrapStackVersionSsmParameter": "/cdk-bootstrap/hnb659fds/version"
10
+ }
11
+ },
12
+ "evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2": {
13
+ "type": "aws:cloudformation:stack",
14
+ "environment": "aws://unknown-account/unknown-region",
15
+ "properties": {
16
+ "templateFile": "evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2.template.json",
17
+ "terminationProtection": false,
18
+ "validateOnSynth": false,
19
+ "assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-deploy-role-${AWS::AccountId}-${AWS::Region}",
20
+ "cloudFormationExecutionRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-cfn-exec-role-${AWS::AccountId}-${AWS::Region}",
21
+ "stackTemplateAssetObjectUrl": "s3://cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}/21fbb51d7b23f6a6c262b46a9caee79d744a3ac019fd45422d988b96d44b2a22.json",
22
+ "requiresBootstrapStackVersion": 6,
23
+ "bootstrapStackVersionSsmParameter": "/cdk-bootstrap/hnb659fds/version",
24
+ "additionalDependencies": [
25
+ "evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2.assets"
26
+ ],
27
+ "lookupRole": {
28
+ "arn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-lookup-role-${AWS::AccountId}-${AWS::Region}",
29
+ "requiresBootstrapStackVersion": 8,
30
+ "bootstrapStackVersionSsmParameter": "/cdk-bootstrap/hnb659fds/version"
31
+ }
32
+ },
33
+ "dependencies": [
34
+ "evtsqsnewbusIntegDefaultTestDeployAssertA45AD5F2.assets"
35
+ ],
36
+ "metadata": {
37
+ "/evtsqs-new-bus/Integ/DefaultTest/DeployAssert/BootstrapVersion": [
38
+ {
39
+ "type": "aws:cdk:logicalId",
40
+ "data": "BootstrapVersion"
41
+ }
42
+ ],
43
+ "/evtsqs-new-bus/Integ/DefaultTest/DeployAssert/CheckBootstrapVersion": [
44
+ {
45
+ "type": "aws:cdk:logicalId",
46
+ "data": "CheckBootstrapVersion"
47
+ }
48
+ ]
49
+ },
50
+ "displayName": "evtsqs-new-bus/Integ/DefaultTest/DeployAssert"
51
+ },
52
+ "evtsqs-new-bus.assets": {
53
+ "type": "cdk:asset-manifest",
54
+ "properties": {
55
+ "file": "evtsqs-new-bus.assets.json",
56
+ "requiresBootstrapStackVersion": 6,
57
+ "bootstrapStackVersionSsmParameter": "/cdk-bootstrap/hnb659fds/version"
58
+ }
59
+ },
60
+ "evtsqs-new-bus": {
61
+ "type": "aws:cloudformation:stack",
62
+ "environment": "aws://unknown-account/unknown-region",
63
+ "properties": {
64
+ "templateFile": "evtsqs-new-bus.template.json",
65
+ "terminationProtection": false,
66
+ "validateOnSynth": false,
67
+ "assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-deploy-role-${AWS::AccountId}-${AWS::Region}",
68
+ "cloudFormationExecutionRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-cfn-exec-role-${AWS::AccountId}-${AWS::Region}",
69
+ "stackTemplateAssetObjectUrl": "s3://cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}/110d5034e5f4b467291448d9e01ef01321432f181fa42bd2b3f67c1d0f895d6b.json",
70
+ "requiresBootstrapStackVersion": 6,
71
+ "bootstrapStackVersionSsmParameter": "/cdk-bootstrap/hnb659fds/version",
72
+ "additionalDependencies": [
73
+ "evtsqs-new-bus.assets"
74
+ ],
75
+ "lookupRole": {
76
+ "arn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-lookup-role-${AWS::AccountId}-${AWS::Region}",
77
+ "requiresBootstrapStackVersion": 8,
78
+ "bootstrapStackVersionSsmParameter": "/cdk-bootstrap/hnb659fds/version"
79
+ }
80
+ },
81
+ "dependencies": [
82
+ "evtsqs-new-bus.assets"
83
+ ],
84
+ "metadata": {
85
+ "/evtsqs-new-bus/construct/deadLetterQueue/Resource": [
86
+ {
87
+ "type": "aws:cdk:logicalId",
88
+ "data": "constructdeadLetterQueueD87A77D4"
89
+ }
90
+ ],
91
+ "/evtsqs-new-bus/construct/deadLetterQueue/Policy/Resource": [
92
+ {
93
+ "type": "aws:cdk:logicalId",
94
+ "data": "constructdeadLetterQueuePolicyBA602BC6"
95
+ }
96
+ ],
97
+ "/evtsqs-new-bus/construct/EncryptionKey/Resource": [
98
+ {
99
+ "type": "aws:cdk:logicalId",
100
+ "data": "constructEncryptionKey9426451E"
101
+ }
102
+ ],
103
+ "/evtsqs-new-bus/construct/queue": [
104
+ {
105
+ "type": "aws:cdk:warning",
106
+ "data": "encryption: Automatically changed to QueueEncryption.KMS, was: QueueEncryption.KMS_MANAGED\nWhen encryptionMasterKey is provided, always set `encryption: QueueEncryption.KMS` [ack: @aws-cdk/aws-sqs:queueEncryptionChangedToKMS]"
107
+ }
108
+ ],
109
+ "/evtsqs-new-bus/construct/queue/Resource": [
110
+ {
111
+ "type": "aws:cdk:logicalId",
112
+ "data": "constructqueue481DC1EC"
113
+ }
114
+ ],
115
+ "/evtsqs-new-bus/construct/queue/Policy/Resource": [
116
+ {
117
+ "type": "aws:cdk:logicalId",
118
+ "data": "constructqueuePolicy5B0256B1"
119
+ }
120
+ ],
121
+ "/evtsqs-new-bus/construct/CustomEventBus/Resource": [
122
+ {
123
+ "type": "aws:cdk:logicalId",
124
+ "data": "constructCustomEventBusA674C94A"
125
+ }
126
+ ],
127
+ "/evtsqs-new-bus/construct/EventsRule/Resource": [
128
+ {
129
+ "type": "aws:cdk:logicalId",
130
+ "data": "constructEventsRule43880ADB"
131
+ }
132
+ ],
133
+ "/evtsqs-new-bus/BootstrapVersion": [
134
+ {
135
+ "type": "aws:cdk:logicalId",
136
+ "data": "BootstrapVersion"
137
+ }
138
+ ],
139
+ "/evtsqs-new-bus/CheckBootstrapVersion": [
140
+ {
141
+ "type": "aws:cdk:logicalId",
142
+ "data": "CheckBootstrapVersion"
143
+ }
144
+ ]
145
+ },
146
+ "displayName": "evtsqs-new-bus"
147
+ },
148
+ "Tree": {
149
+ "type": "cdk:tree",
150
+ "properties": {
151
+ "file": "tree.json"
152
+ }
153
+ }
154
+ }
155
+ }