aws-sdk 2.1495.0 → 2.1497.0

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 (51) hide show
  1. package/CHANGELOG.md +27 -1
  2. package/README.md +1 -1
  3. package/apis/autoscaling-2011-01-01.examples.json +3 -0
  4. package/apis/autoscaling-2011-01-01.min.json +117 -94
  5. package/apis/backup-2018-11-15.min.json +222 -9
  6. package/apis/backup-2018-11-15.paginators.json +15 -0
  7. package/apis/cleanrooms-2022-02-17.min.json +133 -74
  8. package/apis/cloudtrail-2013-11-01.min.json +37 -31
  9. package/apis/codecatalyst-2022-09-28.min.json +361 -16
  10. package/apis/codecatalyst-2022-09-28.paginators.json +12 -0
  11. package/apis/connect-2017-08-08.min.json +20 -10
  12. package/apis/ec2-2016-11-15.min.json +423 -268
  13. package/apis/finspace-2021-03-12.min.json +15 -5
  14. package/apis/finspace-data-2020-07-13.min.json +93 -31
  15. package/apis/glue-2017-03-31.min.json +538 -304
  16. package/apis/glue-2017-03-31.paginators.json +5 -0
  17. package/apis/iot-2015-05-28.min.json +193 -161
  18. package/apis/mwaa-2020-07-01.min.json +31 -26
  19. package/apis/pipes-2015-10-07.min.json +136 -53
  20. package/apis/redshift-2012-12-01.min.json +6 -2
  21. package/apis/resource-explorer-2-2022-07-28.min.json +69 -5
  22. package/apis/resource-explorer-2-2022-07-28.paginators.json +6 -0
  23. package/apis/s3control-2018-08-20.min.json +562 -53
  24. package/apis/s3control-2018-08-20.paginators.json +4 -0
  25. package/apis/sagemaker-2017-07-24.min.json +1 -3
  26. package/apis/states-2016-11-23.min.json +100 -22
  27. package/clients/autoscaling.d.ts +33 -4
  28. package/clients/backup.d.ts +279 -0
  29. package/clients/cleanrooms.d.ts +58 -10
  30. package/clients/cloudtrail.d.ts +29 -4
  31. package/clients/codecatalyst.d.ts +370 -5
  32. package/clients/connect.d.ts +13 -0
  33. package/clients/ec2.d.ts +179 -1
  34. package/clients/glue.d.ts +352 -2
  35. package/clients/iot.d.ts +46 -5
  36. package/clients/lambda.d.ts +1 -1
  37. package/clients/mwaa.d.ts +28 -5
  38. package/clients/pipes.d.ts +143 -18
  39. package/clients/rds.d.ts +1 -1
  40. package/clients/redshift.d.ts +6 -2
  41. package/clients/resourceexplorer2.d.ts +90 -9
  42. package/clients/s3control.d.ts +359 -7
  43. package/clients/sagemaker.d.ts +2 -2
  44. package/clients/signer.d.ts +35 -35
  45. package/clients/stepfunctions.d.ts +123 -18
  46. package/dist/aws-sdk-core-react-native.js +1 -1
  47. package/dist/aws-sdk-react-native.js +24 -24
  48. package/dist/aws-sdk.js +799 -569
  49. package/dist/aws-sdk.min.js +100 -100
  50. package/lib/core.js +1 -1
  51. package/package.json +1 -1
@@ -562,7 +562,8 @@
562
562
  "type": "long"
563
563
  }
564
564
  },
565
- "ResourceName": {}
565
+ "ResourceName": {},
566
+ "MessageCategory": {}
566
567
  }
567
568
  },
568
569
  "idempotent": true
@@ -1278,6 +1279,75 @@
1278
1279
  }
1279
1280
  }
1280
1281
  },
1282
+ "ListBackupJobSummaries": {
1283
+ "http": {
1284
+ "method": "GET",
1285
+ "requestUri": "/audit/backup-job-summaries"
1286
+ },
1287
+ "input": {
1288
+ "type": "structure",
1289
+ "members": {
1290
+ "AccountId": {
1291
+ "location": "querystring",
1292
+ "locationName": "AccountId"
1293
+ },
1294
+ "State": {
1295
+ "location": "querystring",
1296
+ "locationName": "State"
1297
+ },
1298
+ "ResourceType": {
1299
+ "location": "querystring",
1300
+ "locationName": "ResourceType"
1301
+ },
1302
+ "MessageCategory": {
1303
+ "location": "querystring",
1304
+ "locationName": "MessageCategory"
1305
+ },
1306
+ "AggregationPeriod": {
1307
+ "location": "querystring",
1308
+ "locationName": "AggregationPeriod"
1309
+ },
1310
+ "MaxResults": {
1311
+ "location": "querystring",
1312
+ "locationName": "MaxResults",
1313
+ "type": "integer"
1314
+ },
1315
+ "NextToken": {
1316
+ "location": "querystring",
1317
+ "locationName": "NextToken"
1318
+ }
1319
+ }
1320
+ },
1321
+ "output": {
1322
+ "type": "structure",
1323
+ "members": {
1324
+ "BackupJobSummaries": {
1325
+ "type": "list",
1326
+ "member": {
1327
+ "type": "structure",
1328
+ "members": {
1329
+ "Region": {},
1330
+ "AccountId": {},
1331
+ "State": {},
1332
+ "ResourceType": {},
1333
+ "MessageCategory": {},
1334
+ "Count": {
1335
+ "type": "integer"
1336
+ },
1337
+ "StartTime": {
1338
+ "type": "timestamp"
1339
+ },
1340
+ "EndTime": {
1341
+ "type": "timestamp"
1342
+ }
1343
+ }
1344
+ }
1345
+ },
1346
+ "AggregationPeriod": {},
1347
+ "NextToken": {}
1348
+ }
1349
+ }
1350
+ },
1281
1351
  "ListBackupJobs": {
1282
1352
  "http": {
1283
1353
  "method": "GET",
@@ -1338,6 +1408,10 @@
1338
1408
  "ByParentJobId": {
1339
1409
  "location": "querystring",
1340
1410
  "locationName": "parentJobId"
1411
+ },
1412
+ "ByMessageCategory": {
1413
+ "location": "querystring",
1414
+ "locationName": "messageCategory"
1341
1415
  }
1342
1416
  }
1343
1417
  },
@@ -1389,7 +1463,8 @@
1389
1463
  "IsParent": {
1390
1464
  "type": "boolean"
1391
1465
  },
1392
- "ResourceName": {}
1466
+ "ResourceName": {},
1467
+ "MessageCategory": {}
1393
1468
  }
1394
1469
  }
1395
1470
  },
@@ -1467,7 +1542,7 @@
1467
1542
  "BackupPlanVersionsList": {
1468
1543
  "type": "list",
1469
1544
  "member": {
1470
- "shape": "S51"
1545
+ "shape": "S59"
1471
1546
  }
1472
1547
  }
1473
1548
  }
@@ -1505,7 +1580,7 @@
1505
1580
  "BackupPlansList": {
1506
1581
  "type": "list",
1507
1582
  "member": {
1508
- "shape": "S51"
1583
+ "shape": "S59"
1509
1584
  }
1510
1585
  }
1511
1586
  }
@@ -1628,6 +1703,75 @@
1628
1703
  },
1629
1704
  "idempotent": true
1630
1705
  },
1706
+ "ListCopyJobSummaries": {
1707
+ "http": {
1708
+ "method": "GET",
1709
+ "requestUri": "/audit/copy-job-summaries"
1710
+ },
1711
+ "input": {
1712
+ "type": "structure",
1713
+ "members": {
1714
+ "AccountId": {
1715
+ "location": "querystring",
1716
+ "locationName": "AccountId"
1717
+ },
1718
+ "State": {
1719
+ "location": "querystring",
1720
+ "locationName": "State"
1721
+ },
1722
+ "ResourceType": {
1723
+ "location": "querystring",
1724
+ "locationName": "ResourceType"
1725
+ },
1726
+ "MessageCategory": {
1727
+ "location": "querystring",
1728
+ "locationName": "MessageCategory"
1729
+ },
1730
+ "AggregationPeriod": {
1731
+ "location": "querystring",
1732
+ "locationName": "AggregationPeriod"
1733
+ },
1734
+ "MaxResults": {
1735
+ "location": "querystring",
1736
+ "locationName": "MaxResults",
1737
+ "type": "integer"
1738
+ },
1739
+ "NextToken": {
1740
+ "location": "querystring",
1741
+ "locationName": "NextToken"
1742
+ }
1743
+ }
1744
+ },
1745
+ "output": {
1746
+ "type": "structure",
1747
+ "members": {
1748
+ "CopyJobSummaries": {
1749
+ "type": "list",
1750
+ "member": {
1751
+ "type": "structure",
1752
+ "members": {
1753
+ "Region": {},
1754
+ "AccountId": {},
1755
+ "State": {},
1756
+ "ResourceType": {},
1757
+ "MessageCategory": {},
1758
+ "Count": {
1759
+ "type": "integer"
1760
+ },
1761
+ "StartTime": {
1762
+ "type": "timestamp"
1763
+ },
1764
+ "EndTime": {
1765
+ "type": "timestamp"
1766
+ }
1767
+ }
1768
+ }
1769
+ },
1770
+ "AggregationPeriod": {},
1771
+ "NextToken": {}
1772
+ }
1773
+ }
1774
+ },
1631
1775
  "ListCopyJobs": {
1632
1776
  "http": {
1633
1777
  "method": "GET",
@@ -1688,6 +1832,10 @@
1688
1832
  "ByParentJobId": {
1689
1833
  "location": "querystring",
1690
1834
  "locationName": "parentJobId"
1835
+ },
1836
+ "ByMessageCategory": {
1837
+ "location": "querystring",
1838
+ "locationName": "messageCategory"
1691
1839
  }
1692
1840
  }
1693
1841
  },
@@ -1817,7 +1965,7 @@
1817
1965
  "type": "structure",
1818
1966
  "members": {
1819
1967
  "Results": {
1820
- "shape": "S5r"
1968
+ "shape": "S64"
1821
1969
  },
1822
1970
  "NextToken": {}
1823
1971
  }
@@ -1858,7 +2006,7 @@
1858
2006
  "type": "structure",
1859
2007
  "members": {
1860
2008
  "Results": {
1861
- "shape": "S5r"
2009
+ "shape": "S64"
1862
2010
  },
1863
2011
  "NextToken": {}
1864
2012
  }
@@ -2162,6 +2310,70 @@
2162
2310
  }
2163
2311
  }
2164
2312
  },
2313
+ "ListRestoreJobSummaries": {
2314
+ "http": {
2315
+ "method": "GET",
2316
+ "requestUri": "/audit/restore-job-summaries"
2317
+ },
2318
+ "input": {
2319
+ "type": "structure",
2320
+ "members": {
2321
+ "AccountId": {
2322
+ "location": "querystring",
2323
+ "locationName": "AccountId"
2324
+ },
2325
+ "State": {
2326
+ "location": "querystring",
2327
+ "locationName": "State"
2328
+ },
2329
+ "ResourceType": {
2330
+ "location": "querystring",
2331
+ "locationName": "ResourceType"
2332
+ },
2333
+ "AggregationPeriod": {
2334
+ "location": "querystring",
2335
+ "locationName": "AggregationPeriod"
2336
+ },
2337
+ "MaxResults": {
2338
+ "location": "querystring",
2339
+ "locationName": "MaxResults",
2340
+ "type": "integer"
2341
+ },
2342
+ "NextToken": {
2343
+ "location": "querystring",
2344
+ "locationName": "NextToken"
2345
+ }
2346
+ }
2347
+ },
2348
+ "output": {
2349
+ "type": "structure",
2350
+ "members": {
2351
+ "RestoreJobSummaries": {
2352
+ "type": "list",
2353
+ "member": {
2354
+ "type": "structure",
2355
+ "members": {
2356
+ "Region": {},
2357
+ "AccountId": {},
2358
+ "State": {},
2359
+ "ResourceType": {},
2360
+ "Count": {
2361
+ "type": "integer"
2362
+ },
2363
+ "StartTime": {
2364
+ "type": "timestamp"
2365
+ },
2366
+ "EndTime": {
2367
+ "type": "timestamp"
2368
+ }
2369
+ }
2370
+ }
2371
+ },
2372
+ "AggregationPeriod": {},
2373
+ "NextToken": {}
2374
+ }
2375
+ }
2376
+ },
2165
2377
  "ListRestoreJobs": {
2166
2378
  "http": {
2167
2379
  "method": "GET",
@@ -3071,7 +3283,8 @@
3071
3283
  "type": "long"
3072
3284
  }
3073
3285
  },
3074
- "ResourceName": {}
3286
+ "ResourceName": {},
3287
+ "MessageCategory": {}
3075
3288
  }
3076
3289
  },
3077
3290
  "S33": {
@@ -3211,7 +3424,7 @@
3211
3424
  "value": {},
3212
3425
  "sensitive": true
3213
3426
  },
3214
- "S51": {
3427
+ "S59": {
3215
3428
  "type": "structure",
3216
3429
  "members": {
3217
3430
  "BackupPlanArn": {},
@@ -3233,7 +3446,7 @@
3233
3446
  }
3234
3447
  }
3235
3448
  },
3236
- "S5r": {
3449
+ "S64": {
3237
3450
  "type": "list",
3238
3451
  "member": {
3239
3452
  "type": "structure",
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListBackupJobSummaries": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
3
8
  "ListBackupJobs": {
4
9
  "input_token": "NextToken",
5
10
  "output_token": "NextToken",
@@ -36,6 +41,11 @@
36
41
  "limit_key": "MaxResults",
37
42
  "result_key": "BackupVaultList"
38
43
  },
44
+ "ListCopyJobSummaries": {
45
+ "input_token": "NextToken",
46
+ "output_token": "NextToken",
47
+ "limit_key": "MaxResults"
48
+ },
39
49
  "ListCopyJobs": {
40
50
  "input_token": "NextToken",
41
51
  "output_token": "NextToken",
@@ -93,6 +103,11 @@
93
103
  "output_token": "NextToken",
94
104
  "limit_key": "MaxResults"
95
105
  },
106
+ "ListRestoreJobSummaries": {
107
+ "input_token": "NextToken",
108
+ "output_token": "NextToken",
109
+ "limit_key": "MaxResults"
110
+ },
96
111
  "ListRestoreJobs": {
97
112
  "input_token": "NextToken",
98
113
  "output_token": "NextToken",