aws-sdk 2.1597.0 → 2.1599.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. package/README.md +1 -1
  2. package/apis/batch-2016-08-10.min.json +47 -19
  3. package/apis/cloudformation-2010-05-15.min.json +54 -45
  4. package/apis/glue-2017-03-31.min.json +2 -0
  5. package/apis/healthlake-2017-07-01.min.json +21 -14
  6. package/apis/iam-2010-05-08.min.json +1 -2
  7. package/apis/kms-2014-11-01.examples.json +73 -8
  8. package/apis/kms-2014-11-01.min.json +71 -4
  9. package/apis/kms-2014-11-01.paginators.json +14 -0
  10. package/apis/medialive-2017-10-14.min.json +1992 -3
  11. package/apis/medialive-2017-10-14.paginators.json +30 -0
  12. package/apis/medialive-2017-10-14.waiters2.json +128 -0
  13. package/apis/mediatailor-2018-04-23.min.json +21 -17
  14. package/apis/monitoring-2010-08-01.min.json +36 -22
  15. package/apis/omics-2022-11-28.min.json +238 -221
  16. package/apis/redshift-2012-12-01.min.json +2 -1
  17. package/clients/batch.d.ts +50 -4
  18. package/clients/cloudformation.d.ts +36 -1
  19. package/clients/cloudfront.d.ts +60 -60
  20. package/clients/cloudwatch.d.ts +16 -1
  21. package/clients/codebuild.d.ts +1 -1
  22. package/clients/configservice.d.ts +4 -4
  23. package/clients/glue.d.ts +13 -5
  24. package/clients/healthlake.d.ts +17 -1
  25. package/clients/iam.d.ts +7 -7
  26. package/clients/iotfleethub.d.ts +19 -19
  27. package/clients/kms.d.ts +105 -12
  28. package/clients/medialive.d.ts +1419 -0
  29. package/clients/mediatailor.d.ts +17 -0
  30. package/clients/omics.d.ts +137 -94
  31. package/clients/outposts.d.ts +1 -1
  32. package/clients/rds.d.ts +10 -10
  33. package/clients/redshift.d.ts +4 -0
  34. package/clients/s3control.d.ts +36 -36
  35. package/clients/transfer.d.ts +4 -4
  36. package/dist/aws-sdk-core-react-native.js +1 -1
  37. package/dist/aws-sdk-react-native.js +15 -15
  38. package/dist/aws-sdk.js +181 -77
  39. package/dist/aws-sdk.min.js +66 -66
  40. package/lib/core.js +1 -1
  41. package/package.json +1 -1
@@ -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
  }
@@ -1085,14 +1085,15 @@
1085
1085
  "HlsConfiguration": {
1086
1086
  "shape": "S3e"
1087
1087
  },
1088
+ "InsertionMode": {},
1088
1089
  "LivePreRollConfiguration": {
1089
- "shape": "S3f"
1090
+ "shape": "S3g"
1090
1091
  },
1091
1092
  "LogConfiguration": {
1092
- "shape": "S3g"
1093
+ "shape": "S3h"
1093
1094
  },
1094
1095
  "ManifestProcessingRules": {
1095
- "shape": "S3h"
1096
+ "shape": "S3i"
1096
1097
  },
1097
1098
  "Name": {},
1098
1099
  "PersonalizationThresholdSeconds": {
@@ -1199,7 +1200,7 @@
1199
1200
  "shape": "Sp"
1200
1201
  },
1201
1202
  "RelatedResourceArns": {
1202
- "shape": "S3s"
1203
+ "shape": "S3t"
1203
1204
  },
1204
1205
  "ResourceArn": {}
1205
1206
  }
@@ -1391,14 +1392,15 @@
1391
1392
  "HlsConfiguration": {
1392
1393
  "shape": "S3e"
1393
1394
  },
1395
+ "InsertionMode": {},
1394
1396
  "LivePreRollConfiguration": {
1395
- "shape": "S3f"
1397
+ "shape": "S3g"
1396
1398
  },
1397
1399
  "LogConfiguration": {
1398
- "shape": "S3g"
1400
+ "shape": "S3h"
1399
1401
  },
1400
1402
  "ManifestProcessingRules": {
1401
- "shape": "S3h"
1403
+ "shape": "S3i"
1402
1404
  },
1403
1405
  "Name": {},
1404
1406
  "PersonalizationThresholdSeconds": {
@@ -1693,11 +1695,12 @@
1693
1695
  "OriginManifestType": {}
1694
1696
  }
1695
1697
  },
1698
+ "InsertionMode": {},
1696
1699
  "LivePreRollConfiguration": {
1697
- "shape": "S3f"
1700
+ "shape": "S3g"
1698
1701
  },
1699
1702
  "ManifestProcessingRules": {
1700
- "shape": "S3h"
1703
+ "shape": "S3i"
1701
1704
  },
1702
1705
  "Name": {},
1703
1706
  "PersonalizationThresholdSeconds": {
@@ -1734,14 +1737,15 @@
1734
1737
  "HlsConfiguration": {
1735
1738
  "shape": "S3e"
1736
1739
  },
1740
+ "InsertionMode": {},
1737
1741
  "LivePreRollConfiguration": {
1738
- "shape": "S3f"
1742
+ "shape": "S3g"
1739
1743
  },
1740
1744
  "LogConfiguration": {
1741
- "shape": "S3g"
1745
+ "shape": "S3h"
1742
1746
  },
1743
1747
  "ManifestProcessingRules": {
1744
- "shape": "S3h"
1748
+ "shape": "S3i"
1745
1749
  },
1746
1750
  "Name": {},
1747
1751
  "PersonalizationThresholdSeconds": {
@@ -1850,7 +1854,7 @@
1850
1854
  "locationName": "ResourceArn"
1851
1855
  },
1852
1856
  "TagKeys": {
1853
- "shape": "S3s",
1857
+ "shape": "S3t",
1854
1858
  "location": "querystring",
1855
1859
  "locationName": "tagKeys"
1856
1860
  }
@@ -2551,7 +2555,7 @@
2551
2555
  "ManifestEndpointPrefix": {}
2552
2556
  }
2553
2557
  },
2554
- "S3f": {
2558
+ "S3g": {
2555
2559
  "type": "structure",
2556
2560
  "members": {
2557
2561
  "AdDecisionServerUrl": {},
@@ -2560,7 +2564,7 @@
2560
2564
  }
2561
2565
  }
2562
2566
  },
2563
- "S3g": {
2567
+ "S3h": {
2564
2568
  "type": "structure",
2565
2569
  "required": [
2566
2570
  "PercentEnabled"
@@ -2571,7 +2575,7 @@
2571
2575
  }
2572
2576
  }
2573
2577
  },
2574
- "S3h": {
2578
+ "S3i": {
2575
2579
  "type": "structure",
2576
2580
  "members": {
2577
2581
  "AdMarkerPassthrough": {
@@ -2584,7 +2588,7 @@
2584
2588
  }
2585
2589
  }
2586
2590
  },
2587
- "S3s": {
2591
+ "S3t": {
2588
2592
  "type": "list",
2589
2593
  "member": {}
2590
2594
  }
@@ -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": "S45"
666
+ "shape": "S47"
664
667
  }
665
668
  }
666
669
  }
667
670
  },
668
671
  "NextToken": {},
669
672
  "Messages": {
670
- "shape": "S45"
673
+ "shape": "S47"
671
674
  }
672
675
  }
673
676
  }
@@ -777,10 +780,10 @@
777
780
  "Arn": {},
778
781
  "Name": {},
779
782
  "IncludeFilters": {
780
- "shape": "S4j"
783
+ "shape": "S4l"
781
784
  },
782
785
  "ExcludeFilters": {
783
- "shape": "S4j"
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": "S4o"
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": "S5s"
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": "S5s"
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": "S5s"
1128
+ "shape": "S5u"
1123
1129
  }
1124
1130
  }
1125
1131
  },
@@ -1148,7 +1154,7 @@
1148
1154
  "TemplateName": {},
1149
1155
  "ResourceARN": {},
1150
1156
  "Tags": {
1151
- "shape": "S5s"
1157
+ "shape": "S5u"
1152
1158
  }
1153
1159
  }
1154
1160
  }
@@ -1215,7 +1221,7 @@
1215
1221
  "shape": "Sf"
1216
1222
  },
1217
1223
  "Tags": {
1218
- "shape": "S5s"
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": "S4j"
1319
+ "shape": "S4l"
1314
1320
  },
1315
1321
  "ExcludeFilters": {
1316
- "shape": "S4j"
1322
+ "shape": "S4l"
1317
1323
  },
1318
1324
  "FirehoseArn": {},
1319
1325
  "RoleArn": {},
1320
1326
  "OutputFormat": {},
1321
1327
  "Tags": {
1322
- "shape": "S5s"
1328
+ "shape": "S5u"
1323
1329
  },
1324
1330
  "StatisticsConfigurations": {
1325
- "shape": "S4o"
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": "S6n"
1370
+ "shape": "S6p"
1365
1371
  }
1366
1372
  }
1367
1373
  },
@@ -1379,7 +1385,7 @@
1379
1385
  ],
1380
1386
  "members": {
1381
1387
  "Names": {
1382
- "shape": "S6n"
1388
+ "shape": "S6p"
1383
1389
  }
1384
1390
  }
1385
1391
  },
@@ -1399,7 +1405,7 @@
1399
1405
  "members": {
1400
1406
  "ResourceARN": {},
1401
1407
  "Tags": {
1402
- "shape": "S5s"
1408
+ "shape": "S5u"
1403
1409
  }
1404
1410
  }
1405
1411
  },
@@ -1674,7 +1680,15 @@
1674
1680
  "MetricTimezone": {}
1675
1681
  }
1676
1682
  },
1677
- "S45": {
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
- "S4j": {
1701
+ "S4l": {
1688
1702
  "type": "list",
1689
1703
  "member": {
1690
1704
  "type": "structure",
@@ -1697,7 +1711,7 @@
1697
1711
  }
1698
1712
  }
1699
1713
  },
1700
- "S4o": {
1714
+ "S4q": {
1701
1715
  "type": "list",
1702
1716
  "member": {
1703
1717
  "type": "structure",
@@ -1727,7 +1741,7 @@
1727
1741
  }
1728
1742
  }
1729
1743
  },
1730
- "S5s": {
1744
+ "S5u": {
1731
1745
  "type": "list",
1732
1746
  "member": {
1733
1747
  "type": "structure",
@@ -1741,7 +1755,7 @@
1741
1755
  }
1742
1756
  }
1743
1757
  },
1744
- "S6n": {
1758
+ "S6p": {
1745
1759
  "type": "list",
1746
1760
  "member": {}
1747
1761
  }