cdk-comprehend-s3olap 2.0.121 → 2.0.122

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 (79) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
  6. package/node_modules/@esbuild/linux-x64/package.json +1 -1
  7. package/node_modules/aws-sdk/CHANGELOG.md +9 -1
  8. package/node_modules/aws-sdk/README.md +1 -1
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +196 -187
  10. package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +82 -15
  11. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +56 -32
  12. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +224 -138
  13. package/node_modules/aws-sdk/clients/connect.d.ts +15 -4
  14. package/node_modules/aws-sdk/clients/ecs.d.ts +24 -24
  15. package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +67 -7
  16. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -1
  17. package/node_modules/aws-sdk/clients/omics.d.ts +2 -2
  18. package/node_modules/aws-sdk/clients/rekognition.d.ts +114 -16
  19. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  20. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +2532 -875
  21. package/node_modules/aws-sdk/dist/aws-sdk.js +505 -343
  22. package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
  23. package/node_modules/aws-sdk/dist/xml2js.js +2579 -922
  24. package/node_modules/aws-sdk/lib/core.js +1 -1
  25. package/node_modules/aws-sdk/package.json +2 -2
  26. package/node_modules/esbuild/bin/esbuild +1 -1
  27. package/node_modules/esbuild/lib/main.js +8 -8
  28. package/node_modules/esbuild/package.json +23 -23
  29. package/node_modules/xml2js/README.md +108 -7
  30. package/node_modules/xml2js/lib/parser.js +35 -7
  31. package/node_modules/xml2js/lib/xml2js.js +2 -0
  32. package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +47 -0
  33. package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -21
  34. package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -85
  35. package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
  36. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
  37. package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
  38. package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
  39. package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
  40. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +11 -1
  41. package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
  42. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +86 -9
  43. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +10 -6
  44. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
  45. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +10 -6
  46. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
  47. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
  48. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
  49. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
  50. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +16 -11
  51. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +7 -4
  52. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +49 -8
  53. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +20 -5
  54. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +5 -2
  55. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +84 -5
  56. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +199 -5
  57. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +165 -39
  58. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
  59. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
  60. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +207 -20
  61. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
  62. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +403 -50
  63. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
  64. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
  65. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +19 -5
  66. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +6 -3
  67. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +94 -197
  68. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +6 -305
  69. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +109 -32
  70. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +43 -6
  71. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
  72. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
  73. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +397 -59
  74. package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +15 -3
  75. package/node_modules/xml2js/node_modules/xmlbuilder/package.json +5 -3
  76. package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
  77. package/node_modules/xml2js/package.json +11 -5
  78. package/package.json +4 -4
  79. package/node_modules/xml2js/node_modules/xmlbuilder/.npmignore +0 -5
@@ -43,6 +43,28 @@
43
43
  }
44
44
  }
45
45
  },
46
+ "DeleteResourcePolicy": {
47
+ "http": {
48
+ "method": "DELETE",
49
+ "requestUri": "/DeleteResourcePolicy"
50
+ },
51
+ "input": {
52
+ "type": "structure",
53
+ "required": [
54
+ "ResourceArn"
55
+ ],
56
+ "members": {
57
+ "ResourceArn": {
58
+ "location": "querystring",
59
+ "locationName": "resourceArn"
60
+ }
61
+ }
62
+ },
63
+ "output": {
64
+ "type": "structure",
65
+ "members": {}
66
+ }
67
+ },
46
68
  "DescribeChangeSet": {
47
69
  "http": {
48
70
  "method": "GET",
@@ -83,7 +105,7 @@
83
105
  "members": {
84
106
  "ChangeType": {},
85
107
  "Entity": {
86
- "shape": "Sg"
108
+ "shape": "Sj"
87
109
  },
88
110
  "Details": {},
89
111
  "ErrorDetailList": {
@@ -136,6 +158,30 @@
136
158
  }
137
159
  }
138
160
  },
161
+ "GetResourcePolicy": {
162
+ "http": {
163
+ "method": "GET",
164
+ "requestUri": "/GetResourcePolicy"
165
+ },
166
+ "input": {
167
+ "type": "structure",
168
+ "required": [
169
+ "ResourceArn"
170
+ ],
171
+ "members": {
172
+ "ResourceArn": {
173
+ "location": "querystring",
174
+ "locationName": "resourceArn"
175
+ }
176
+ }
177
+ },
178
+ "output": {
179
+ "type": "structure",
180
+ "members": {
181
+ "Policy": {}
182
+ }
183
+ }
184
+ },
139
185
  "ListChangeSets": {
140
186
  "http": {
141
187
  "requestUri": "/ListChangeSets"
@@ -148,10 +194,10 @@
148
194
  "members": {
149
195
  "Catalog": {},
150
196
  "FilterList": {
151
- "shape": "Sr"
197
+ "shape": "Sx"
152
198
  },
153
199
  "Sort": {
154
- "shape": "Sw"
200
+ "shape": "S12"
155
201
  },
156
202
  "MaxResults": {
157
203
  "type": "integer"
@@ -199,15 +245,16 @@
199
245
  "Catalog": {},
200
246
  "EntityType": {},
201
247
  "FilterList": {
202
- "shape": "Sr"
248
+ "shape": "Sx"
203
249
  },
204
250
  "Sort": {
205
- "shape": "Sw"
251
+ "shape": "S12"
206
252
  },
207
253
  "NextToken": {},
208
254
  "MaxResults": {
209
255
  "type": "integer"
210
- }
256
+ },
257
+ "OwnershipType": {}
211
258
  }
212
259
  },
213
260
  "output": {
@@ -249,11 +296,31 @@
249
296
  "members": {
250
297
  "ResourceArn": {},
251
298
  "Tags": {
252
- "shape": "S1e"
299
+ "shape": "S1l"
253
300
  }
254
301
  }
255
302
  }
256
303
  },
304
+ "PutResourcePolicy": {
305
+ "http": {
306
+ "requestUri": "/PutResourcePolicy"
307
+ },
308
+ "input": {
309
+ "type": "structure",
310
+ "required": [
311
+ "ResourceArn",
312
+ "Policy"
313
+ ],
314
+ "members": {
315
+ "ResourceArn": {},
316
+ "Policy": {}
317
+ }
318
+ },
319
+ "output": {
320
+ "type": "structure",
321
+ "members": {}
322
+ }
323
+ },
257
324
  "StartChangeSet": {
258
325
  "http": {
259
326
  "requestUri": "/StartChangeSet"
@@ -278,10 +345,10 @@
278
345
  "members": {
279
346
  "ChangeType": {},
280
347
  "Entity": {
281
- "shape": "Sg"
348
+ "shape": "Sj"
282
349
  },
283
350
  "EntityTags": {
284
- "shape": "S1e"
351
+ "shape": "S1l"
285
352
  },
286
353
  "Details": {},
287
354
  "ChangeName": {}
@@ -293,7 +360,7 @@
293
360
  "idempotencyToken": true
294
361
  },
295
362
  "ChangeSetTags": {
296
- "shape": "S1e"
363
+ "shape": "S1l"
297
364
  }
298
365
  }
299
366
  },
@@ -318,7 +385,7 @@
318
385
  "members": {
319
386
  "ResourceArn": {},
320
387
  "Tags": {
321
- "shape": "S1e"
388
+ "shape": "S1l"
322
389
  }
323
390
  }
324
391
  },
@@ -352,7 +419,7 @@
352
419
  }
353
420
  },
354
421
  "shapes": {
355
- "Sg": {
422
+ "Sj": {
356
423
  "type": "structure",
357
424
  "required": [
358
425
  "Type"
@@ -362,7 +429,7 @@
362
429
  "Identifier": {}
363
430
  }
364
431
  },
365
- "Sr": {
432
+ "Sx": {
366
433
  "type": "list",
367
434
  "member": {
368
435
  "type": "structure",
@@ -375,14 +442,14 @@
375
442
  }
376
443
  }
377
444
  },
378
- "Sw": {
445
+ "S12": {
379
446
  "type": "structure",
380
447
  "members": {
381
448
  "SortBy": {},
382
449
  "SortOrder": {}
383
450
  }
384
451
  },
385
- "S1e": {
452
+ "S1l": {
386
453
  "type": "list",
387
454
  "member": {
388
455
  "type": "structure",
@@ -159,7 +159,7 @@
159
159
  "locationName": "queue"
160
160
  },
161
161
  "Settings": {
162
- "shape": "Sku",
162
+ "shape": "Skw",
163
163
  "locationName": "settings"
164
164
  },
165
165
  "StatusUpdateInterval": {
@@ -179,7 +179,7 @@
179
179
  "type": "structure",
180
180
  "members": {
181
181
  "JobTemplate": {
182
- "shape": "Sky",
182
+ "shape": "Sl0",
183
183
  "locationName": "jobTemplate"
184
184
  }
185
185
  }
@@ -203,7 +203,7 @@
203
203
  "locationName": "name"
204
204
  },
205
205
  "Settings": {
206
- "shape": "Sl1",
206
+ "shape": "Sl3",
207
207
  "locationName": "settings"
208
208
  },
209
209
  "Tags": {
@@ -220,7 +220,7 @@
220
220
  "type": "structure",
221
221
  "members": {
222
222
  "Preset": {
223
- "shape": "Sl5",
223
+ "shape": "Sl7",
224
224
  "locationName": "preset"
225
225
  }
226
226
  }
@@ -244,7 +244,7 @@
244
244
  "locationName": "pricingPlan"
245
245
  },
246
246
  "ReservationPlanSettings": {
247
- "shape": "Sl8",
247
+ "shape": "Sla",
248
248
  "locationName": "reservationPlanSettings"
249
249
  },
250
250
  "Status": {
@@ -263,7 +263,7 @@
263
263
  "type": "structure",
264
264
  "members": {
265
265
  "Queue": {
266
- "shape": "Sld",
266
+ "shape": "Slf",
267
267
  "locationName": "queue"
268
268
  }
269
269
  }
@@ -467,7 +467,7 @@
467
467
  "type": "structure",
468
468
  "members": {
469
469
  "JobTemplate": {
470
- "shape": "Sky",
470
+ "shape": "Sl0",
471
471
  "locationName": "jobTemplate"
472
472
  }
473
473
  }
@@ -487,7 +487,7 @@
487
487
  "type": "structure",
488
488
  "members": {
489
489
  "Policy": {
490
- "shape": "Sm1",
490
+ "shape": "Sm3",
491
491
  "locationName": "policy"
492
492
  }
493
493
  }
@@ -515,7 +515,7 @@
515
515
  "type": "structure",
516
516
  "members": {
517
517
  "Preset": {
518
- "shape": "Sl5",
518
+ "shape": "Sl7",
519
519
  "locationName": "preset"
520
520
  }
521
521
  }
@@ -543,7 +543,7 @@
543
543
  "type": "structure",
544
544
  "members": {
545
545
  "Queue": {
546
- "shape": "Sld",
546
+ "shape": "Slf",
547
547
  "locationName": "queue"
548
548
  }
549
549
  }
@@ -588,7 +588,7 @@
588
588
  "locationName": "jobTemplates",
589
589
  "type": "list",
590
590
  "member": {
591
- "shape": "Sky"
591
+ "shape": "Sl0"
592
592
  }
593
593
  },
594
594
  "NextToken": {
@@ -687,7 +687,7 @@
687
687
  "locationName": "presets",
688
688
  "type": "list",
689
689
  "member": {
690
- "shape": "Sl5"
690
+ "shape": "Sl7"
691
691
  }
692
692
  }
693
693
  }
@@ -731,7 +731,7 @@
731
731
  "locationName": "queues",
732
732
  "type": "list",
733
733
  "member": {
734
- "shape": "Sld"
734
+ "shape": "Slf"
735
735
  }
736
736
  }
737
737
  }
@@ -784,7 +784,7 @@
784
784
  "type": "structure",
785
785
  "members": {
786
786
  "Policy": {
787
- "shape": "Sm1",
787
+ "shape": "Sm3",
788
788
  "locationName": "policy"
789
789
  }
790
790
  },
@@ -796,7 +796,7 @@
796
796
  "type": "structure",
797
797
  "members": {
798
798
  "Policy": {
799
- "shape": "Sm1",
799
+ "shape": "Sm3",
800
800
  "locationName": "policy"
801
801
  }
802
802
  }
@@ -890,7 +890,7 @@
890
890
  "locationName": "queue"
891
891
  },
892
892
  "Settings": {
893
- "shape": "Sku",
893
+ "shape": "Skw",
894
894
  "locationName": "settings"
895
895
  },
896
896
  "StatusUpdateInterval": {
@@ -905,7 +905,7 @@
905
905
  "type": "structure",
906
906
  "members": {
907
907
  "JobTemplate": {
908
- "shape": "Sky",
908
+ "shape": "Sl0",
909
909
  "locationName": "jobTemplate"
910
910
  }
911
911
  }
@@ -931,7 +931,7 @@
931
931
  "location": "uri"
932
932
  },
933
933
  "Settings": {
934
- "shape": "Sl1",
934
+ "shape": "Sl3",
935
935
  "locationName": "settings"
936
936
  }
937
937
  },
@@ -943,7 +943,7 @@
943
943
  "type": "structure",
944
944
  "members": {
945
945
  "Preset": {
946
- "shape": "Sl5",
946
+ "shape": "Sl7",
947
947
  "locationName": "preset"
948
948
  }
949
949
  }
@@ -966,7 +966,7 @@
966
966
  "location": "uri"
967
967
  },
968
968
  "ReservationPlanSettings": {
969
- "shape": "Sl8",
969
+ "shape": "Sla",
970
970
  "locationName": "reservationPlanSettings"
971
971
  },
972
972
  "Status": {
@@ -981,7 +981,7 @@
981
981
  "type": "structure",
982
982
  "members": {
983
983
  "Queue": {
984
- "shape": "Sld",
984
+ "shape": "Slf",
985
985
  "locationName": "queue"
986
986
  }
987
987
  }
@@ -5035,6 +5035,9 @@
5035
5035
  "BillingTagsSource": {
5036
5036
  "locationName": "billingTagsSource"
5037
5037
  },
5038
+ "ClientRequestToken": {
5039
+ "locationName": "clientRequestToken"
5040
+ },
5038
5041
  "CreatedAt": {
5039
5042
  "shape": "Skg",
5040
5043
  "locationName": "createdAt"
@@ -5180,11 +5183,32 @@
5180
5183
  "UserMetadata": {
5181
5184
  "shape": "Skc",
5182
5185
  "locationName": "userMetadata"
5186
+ },
5187
+ "Warnings": {
5188
+ "locationName": "warnings",
5189
+ "type": "list",
5190
+ "member": {
5191
+ "type": "structure",
5192
+ "members": {
5193
+ "Code": {
5194
+ "locationName": "code",
5195
+ "type": "integer"
5196
+ },
5197
+ "Count": {
5198
+ "locationName": "count",
5199
+ "type": "integer"
5200
+ }
5201
+ },
5202
+ "required": [
5203
+ "Count",
5204
+ "Code"
5205
+ ]
5206
+ }
5183
5207
  }
5184
5208
  },
5185
5209
  "required": [
5186
- "Role",
5187
- "Settings"
5210
+ "Settings",
5211
+ "Role"
5188
5212
  ]
5189
5213
  },
5190
5214
  "Skg": {
@@ -5195,7 +5219,7 @@
5195
5219
  "type": "list",
5196
5220
  "member": {}
5197
5221
  },
5198
- "Sku": {
5222
+ "Skw": {
5199
5223
  "type": "structure",
5200
5224
  "members": {
5201
5225
  "AdAvailOffset": {
@@ -5317,7 +5341,7 @@
5317
5341
  }
5318
5342
  }
5319
5343
  },
5320
- "Sky": {
5344
+ "Sl0": {
5321
5345
  "type": "structure",
5322
5346
  "members": {
5323
5347
  "AccelerationSettings": {
@@ -5356,7 +5380,7 @@
5356
5380
  "locationName": "queue"
5357
5381
  },
5358
5382
  "Settings": {
5359
- "shape": "Sku",
5383
+ "shape": "Skw",
5360
5384
  "locationName": "settings"
5361
5385
  },
5362
5386
  "StatusUpdateInterval": {
@@ -5371,7 +5395,7 @@
5371
5395
  "Name"
5372
5396
  ]
5373
5397
  },
5374
- "Sl1": {
5398
+ "Sl3": {
5375
5399
  "type": "structure",
5376
5400
  "members": {
5377
5401
  "AudioDescriptions": {
@@ -5410,7 +5434,7 @@
5410
5434
  }
5411
5435
  }
5412
5436
  },
5413
- "Sl5": {
5437
+ "Sl7": {
5414
5438
  "type": "structure",
5415
5439
  "members": {
5416
5440
  "Arn": {
@@ -5434,7 +5458,7 @@
5434
5458
  "locationName": "name"
5435
5459
  },
5436
5460
  "Settings": {
5437
- "shape": "Sl1",
5461
+ "shape": "Sl3",
5438
5462
  "locationName": "settings"
5439
5463
  },
5440
5464
  "Type": {
@@ -5446,7 +5470,7 @@
5446
5470
  "Name"
5447
5471
  ]
5448
5472
  },
5449
- "Sl8": {
5473
+ "Sla": {
5450
5474
  "type": "structure",
5451
5475
  "members": {
5452
5476
  "Commitment": {
@@ -5466,7 +5490,7 @@
5466
5490
  "RenewalType"
5467
5491
  ]
5468
5492
  },
5469
- "Sld": {
5493
+ "Slf": {
5470
5494
  "type": "structure",
5471
5495
  "members": {
5472
5496
  "Arn": {
@@ -5535,7 +5559,7 @@
5535
5559
  "Name"
5536
5560
  ]
5537
5561
  },
5538
- "Sm1": {
5562
+ "Sm3": {
5539
5563
  "type": "structure",
5540
5564
  "members": {
5541
5565
  "HttpInputs": {