cdk-lambda-subminute 2.0.428 → 2.0.429
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 +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +47 -19
- package/node_modules/aws-sdk/apis/iam-2010-05-08.min.json +1 -2
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +1992 -3
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.paginators.json +30 -0
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.waiters2.json +128 -0
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +36 -22
- package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +238 -221
- package/node_modules/aws-sdk/clients/batch.d.ts +50 -4
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +60 -60
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +16 -1
- package/node_modules/aws-sdk/clients/codebuild.d.ts +1 -1
- package/node_modules/aws-sdk/clients/iam.d.ts +7 -7
- package/node_modules/aws-sdk/clients/medialive.d.ts +1419 -0
- package/node_modules/aws-sdk/clients/omics.d.ts +137 -94
- package/node_modules/aws-sdk/clients/rds.d.ts +10 -10
- package/node_modules/aws-sdk/clients/s3control.d.ts +36 -36
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +40 -27
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +39 -39
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -59,6 +59,36 @@
|
|
59
59
|
"output_token": "NextToken",
|
60
60
|
"limit_key": "MaxResults",
|
61
61
|
"result_key": "InputDeviceTransfers"
|
62
|
+
},
|
63
|
+
"ListSignalMaps": {
|
64
|
+
"input_token": "NextToken",
|
65
|
+
"output_token": "NextToken",
|
66
|
+
"limit_key": "MaxResults",
|
67
|
+
"result_key": "SignalMaps"
|
68
|
+
},
|
69
|
+
"ListCloudWatchAlarmTemplates": {
|
70
|
+
"input_token": "NextToken",
|
71
|
+
"output_token": "NextToken",
|
72
|
+
"limit_key": "MaxResults",
|
73
|
+
"result_key": "CloudWatchAlarmTemplates"
|
74
|
+
},
|
75
|
+
"ListCloudWatchAlarmTemplateGroups": {
|
76
|
+
"input_token": "NextToken",
|
77
|
+
"output_token": "NextToken",
|
78
|
+
"limit_key": "MaxResults",
|
79
|
+
"result_key": "CloudWatchAlarmTemplateGroups"
|
80
|
+
},
|
81
|
+
"ListEventBridgeRuleTemplates": {
|
82
|
+
"input_token": "NextToken",
|
83
|
+
"output_token": "NextToken",
|
84
|
+
"limit_key": "MaxResults",
|
85
|
+
"result_key": "EventBridgeRuleTemplates"
|
86
|
+
},
|
87
|
+
"ListEventBridgeRuleTemplateGroups": {
|
88
|
+
"input_token": "NextToken",
|
89
|
+
"output_token": "NextToken",
|
90
|
+
"limit_key": "MaxResults",
|
91
|
+
"result_key": "EventBridgeRuleTemplateGroups"
|
62
92
|
}
|
63
93
|
}
|
64
94
|
}
|
@@ -293,6 +293,134 @@
|
|
293
293
|
"expected": 500
|
294
294
|
}
|
295
295
|
]
|
296
|
+
},
|
297
|
+
"SignalMapCreated": {
|
298
|
+
"description": "Wait until a signal map has been created",
|
299
|
+
"delay": 5,
|
300
|
+
"maxAttempts": 60,
|
301
|
+
"operation": "GetSignalMap",
|
302
|
+
"acceptors": [
|
303
|
+
{
|
304
|
+
"matcher": "path",
|
305
|
+
"argument": "Status",
|
306
|
+
"state": "success",
|
307
|
+
"expected": "CREATE_COMPLETE"
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"matcher": "path",
|
311
|
+
"argument": "Status",
|
312
|
+
"state": "retry",
|
313
|
+
"expected": "CREATE_IN_PROGRESS"
|
314
|
+
},
|
315
|
+
{
|
316
|
+
"matcher": "path",
|
317
|
+
"argument": "Status",
|
318
|
+
"state": "failure",
|
319
|
+
"expected": "CREATE_FAILED"
|
320
|
+
}
|
321
|
+
]
|
322
|
+
},
|
323
|
+
"SignalMapMonitorDeleted": {
|
324
|
+
"description": "Wait until a signal map's monitor has been deleted",
|
325
|
+
"delay": 5,
|
326
|
+
"maxAttempts": 120,
|
327
|
+
"operation": "GetSignalMap",
|
328
|
+
"acceptors": [
|
329
|
+
{
|
330
|
+
"matcher": "path",
|
331
|
+
"argument": "MonitorDeployment.Status",
|
332
|
+
"state": "success",
|
333
|
+
"expected": "DELETE_COMPLETE"
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"matcher": "path",
|
337
|
+
"argument": "MonitorDeployment.Status",
|
338
|
+
"state": "retry",
|
339
|
+
"expected": "DELETE_IN_PROGRESS"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"matcher": "path",
|
343
|
+
"argument": "MonitorDeployment.Status",
|
344
|
+
"state": "failure",
|
345
|
+
"expected": "DELETE_FAILED"
|
346
|
+
}
|
347
|
+
]
|
348
|
+
},
|
349
|
+
"SignalMapMonitorDeployed": {
|
350
|
+
"description": "Wait until a signal map's monitor has been deployed",
|
351
|
+
"delay": 5,
|
352
|
+
"maxAttempts": 120,
|
353
|
+
"operation": "GetSignalMap",
|
354
|
+
"acceptors": [
|
355
|
+
{
|
356
|
+
"matcher": "path",
|
357
|
+
"argument": "MonitorDeployment.Status",
|
358
|
+
"state": "success",
|
359
|
+
"expected": "DRY_RUN_DEPLOYMENT_COMPLETE"
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"matcher": "path",
|
363
|
+
"argument": "MonitorDeployment.Status",
|
364
|
+
"state": "success",
|
365
|
+
"expected": "DEPLOYMENT_COMPLETE"
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"matcher": "path",
|
369
|
+
"argument": "MonitorDeployment.Status",
|
370
|
+
"state": "retry",
|
371
|
+
"expected": "DRY_RUN_DEPLOYMENT_IN_PROGRESS"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"matcher": "path",
|
375
|
+
"argument": "MonitorDeployment.Status",
|
376
|
+
"state": "retry",
|
377
|
+
"expected": "DEPLOYMENT_IN_PROGRESS"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"matcher": "path",
|
381
|
+
"argument": "MonitorDeployment.Status",
|
382
|
+
"state": "failure",
|
383
|
+
"expected": "DRY_RUN_DEPLOYMENT_FAILED"
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"matcher": "path",
|
387
|
+
"argument": "MonitorDeployment.Status",
|
388
|
+
"state": "failure",
|
389
|
+
"expected": "DEPLOYMENT_FAILED"
|
390
|
+
}
|
391
|
+
]
|
392
|
+
},
|
393
|
+
"SignalMapUpdated": {
|
394
|
+
"description": "Wait until a signal map has been updated",
|
395
|
+
"delay": 5,
|
396
|
+
"maxAttempts": 60,
|
397
|
+
"operation": "GetSignalMap",
|
398
|
+
"acceptors": [
|
399
|
+
{
|
400
|
+
"matcher": "path",
|
401
|
+
"argument": "Status",
|
402
|
+
"state": "success",
|
403
|
+
"expected": "UPDATE_COMPLETE"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"matcher": "path",
|
407
|
+
"argument": "Status",
|
408
|
+
"state": "retry",
|
409
|
+
"expected": "UPDATE_IN_PROGRESS"
|
410
|
+
},
|
411
|
+
{
|
412
|
+
"matcher": "path",
|
413
|
+
"argument": "Status",
|
414
|
+
"state": "failure",
|
415
|
+
"expected": "UPDATE_FAILED"
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"matcher": "path",
|
419
|
+
"argument": "Status",
|
420
|
+
"state": "failure",
|
421
|
+
"expected": "UPDATE_REVERTED"
|
422
|
+
}
|
423
|
+
]
|
296
424
|
}
|
297
425
|
}
|
298
426
|
}
|
@@ -341,6 +341,9 @@
|
|
341
341
|
"shape": "S2n"
|
342
342
|
},
|
343
343
|
"StateValue": {},
|
344
|
+
"MetricCharacteristics": {
|
345
|
+
"shape": "S2s"
|
346
|
+
},
|
344
347
|
"SingleMetricAnomalyDetector": {
|
345
348
|
"shape": "Sc"
|
346
349
|
},
|
@@ -660,14 +663,14 @@
|
|
660
663
|
},
|
661
664
|
"StatusCode": {},
|
662
665
|
"Messages": {
|
663
|
-
"shape": "
|
666
|
+
"shape": "S47"
|
664
667
|
}
|
665
668
|
}
|
666
669
|
}
|
667
670
|
},
|
668
671
|
"NextToken": {},
|
669
672
|
"Messages": {
|
670
|
-
"shape": "
|
673
|
+
"shape": "S47"
|
671
674
|
}
|
672
675
|
}
|
673
676
|
}
|
@@ -777,10 +780,10 @@
|
|
777
780
|
"Arn": {},
|
778
781
|
"Name": {},
|
779
782
|
"IncludeFilters": {
|
780
|
-
"shape": "
|
783
|
+
"shape": "S4l"
|
781
784
|
},
|
782
785
|
"ExcludeFilters": {
|
783
|
-
"shape": "
|
786
|
+
"shape": "S4l"
|
784
787
|
},
|
785
788
|
"FirehoseArn": {},
|
786
789
|
"RoleArn": {},
|
@@ -793,7 +796,7 @@
|
|
793
796
|
},
|
794
797
|
"OutputFormat": {},
|
795
798
|
"StatisticsConfigurations": {
|
796
|
-
"shape": "
|
799
|
+
"shape": "S4q"
|
797
800
|
},
|
798
801
|
"IncludeLinkedAccountsMetrics": {
|
799
802
|
"type": "boolean"
|
@@ -999,7 +1002,7 @@
|
|
999
1002
|
"type": "structure",
|
1000
1003
|
"members": {
|
1001
1004
|
"Tags": {
|
1002
|
-
"shape": "
|
1005
|
+
"shape": "S5u"
|
1003
1006
|
}
|
1004
1007
|
}
|
1005
1008
|
}
|
@@ -1028,6 +1031,9 @@
|
|
1028
1031
|
"Configuration": {
|
1029
1032
|
"shape": "S2n"
|
1030
1033
|
},
|
1034
|
+
"MetricCharacteristics": {
|
1035
|
+
"shape": "S2s"
|
1036
|
+
},
|
1031
1037
|
"SingleMetricAnomalyDetector": {
|
1032
1038
|
"shape": "Sc"
|
1033
1039
|
},
|
@@ -1066,7 +1072,7 @@
|
|
1066
1072
|
"shape": "S1t"
|
1067
1073
|
},
|
1068
1074
|
"Tags": {
|
1069
|
-
"shape": "
|
1075
|
+
"shape": "S5u"
|
1070
1076
|
},
|
1071
1077
|
"ActionsSuppressor": {},
|
1072
1078
|
"ActionsSuppressorWaitPeriod": {
|
@@ -1119,7 +1125,7 @@
|
|
1119
1125
|
"RuleState": {},
|
1120
1126
|
"RuleDefinition": {},
|
1121
1127
|
"Tags": {
|
1122
|
-
"shape": "
|
1128
|
+
"shape": "S5u"
|
1123
1129
|
}
|
1124
1130
|
}
|
1125
1131
|
},
|
@@ -1148,7 +1154,7 @@
|
|
1148
1154
|
"TemplateName": {},
|
1149
1155
|
"ResourceARN": {},
|
1150
1156
|
"Tags": {
|
1151
|
-
"shape": "
|
1157
|
+
"shape": "S5u"
|
1152
1158
|
}
|
1153
1159
|
}
|
1154
1160
|
}
|
@@ -1215,7 +1221,7 @@
|
|
1215
1221
|
"shape": "Sf"
|
1216
1222
|
},
|
1217
1223
|
"Tags": {
|
1218
|
-
"shape": "
|
1224
|
+
"shape": "S5u"
|
1219
1225
|
},
|
1220
1226
|
"ThresholdMetricId": {}
|
1221
1227
|
}
|
@@ -1310,19 +1316,19 @@
|
|
1310
1316
|
"members": {
|
1311
1317
|
"Name": {},
|
1312
1318
|
"IncludeFilters": {
|
1313
|
-
"shape": "
|
1319
|
+
"shape": "S4l"
|
1314
1320
|
},
|
1315
1321
|
"ExcludeFilters": {
|
1316
|
-
"shape": "
|
1322
|
+
"shape": "S4l"
|
1317
1323
|
},
|
1318
1324
|
"FirehoseArn": {},
|
1319
1325
|
"RoleArn": {},
|
1320
1326
|
"OutputFormat": {},
|
1321
1327
|
"Tags": {
|
1322
|
-
"shape": "
|
1328
|
+
"shape": "S5u"
|
1323
1329
|
},
|
1324
1330
|
"StatisticsConfigurations": {
|
1325
|
-
"shape": "
|
1331
|
+
"shape": "S4q"
|
1326
1332
|
},
|
1327
1333
|
"IncludeLinkedAccountsMetrics": {
|
1328
1334
|
"type": "boolean"
|
@@ -1361,7 +1367,7 @@
|
|
1361
1367
|
],
|
1362
1368
|
"members": {
|
1363
1369
|
"Names": {
|
1364
|
-
"shape": "
|
1370
|
+
"shape": "S6p"
|
1365
1371
|
}
|
1366
1372
|
}
|
1367
1373
|
},
|
@@ -1379,7 +1385,7 @@
|
|
1379
1385
|
],
|
1380
1386
|
"members": {
|
1381
1387
|
"Names": {
|
1382
|
-
"shape": "
|
1388
|
+
"shape": "S6p"
|
1383
1389
|
}
|
1384
1390
|
}
|
1385
1391
|
},
|
@@ -1399,7 +1405,7 @@
|
|
1399
1405
|
"members": {
|
1400
1406
|
"ResourceARN": {},
|
1401
1407
|
"Tags": {
|
1402
|
-
"shape": "
|
1408
|
+
"shape": "S5u"
|
1403
1409
|
}
|
1404
1410
|
}
|
1405
1411
|
},
|
@@ -1674,7 +1680,15 @@
|
|
1674
1680
|
"MetricTimezone": {}
|
1675
1681
|
}
|
1676
1682
|
},
|
1677
|
-
"
|
1683
|
+
"S2s": {
|
1684
|
+
"type": "structure",
|
1685
|
+
"members": {
|
1686
|
+
"PeriodicSpikes": {
|
1687
|
+
"type": "boolean"
|
1688
|
+
}
|
1689
|
+
}
|
1690
|
+
},
|
1691
|
+
"S47": {
|
1678
1692
|
"type": "list",
|
1679
1693
|
"member": {
|
1680
1694
|
"type": "structure",
|
@@ -1684,7 +1698,7 @@
|
|
1684
1698
|
}
|
1685
1699
|
}
|
1686
1700
|
},
|
1687
|
-
"
|
1701
|
+
"S4l": {
|
1688
1702
|
"type": "list",
|
1689
1703
|
"member": {
|
1690
1704
|
"type": "structure",
|
@@ -1697,7 +1711,7 @@
|
|
1697
1711
|
}
|
1698
1712
|
}
|
1699
1713
|
},
|
1700
|
-
"
|
1714
|
+
"S4q": {
|
1701
1715
|
"type": "list",
|
1702
1716
|
"member": {
|
1703
1717
|
"type": "structure",
|
@@ -1727,7 +1741,7 @@
|
|
1727
1741
|
}
|
1728
1742
|
}
|
1729
1743
|
},
|
1730
|
-
"
|
1744
|
+
"S5u": {
|
1731
1745
|
"type": "list",
|
1732
1746
|
"member": {
|
1733
1747
|
"type": "structure",
|
@@ -1741,7 +1755,7 @@
|
|
1741
1755
|
}
|
1742
1756
|
}
|
1743
1757
|
},
|
1744
|
-
"
|
1758
|
+
"S6p": {
|
1745
1759
|
"type": "list",
|
1746
1760
|
"member": {}
|
1747
1761
|
}
|