aws-sdk 2.1611.0 → 2.1612.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.
- package/README.md +1 -1
- package/apis/dynamodb-2012-08-10.min.json +249 -180
- package/apis/ec2-2016-11-15.min.json +107 -70
- package/apis/personalize-2018-05-22.min.json +153 -44
- package/apis/redshift-serverless-2021-04-21.min.json +7 -1
- package/clients/dynamodb.d.ts +80 -11
- package/clients/ec2.d.ts +47 -0
- package/clients/personalize.d.ts +160 -1
- package/clients/redshiftserverless.d.ts +17 -7
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +512 -297
- package/dist/aws-sdk.min.js +79 -78
- package/lib/core.js +1 -1
- package/lib/dynamodb/document_client.d.ts +76 -7
- package/package.json +1 -1
@@ -5,6 +5,9 @@
|
|
5
5
|
"endpointPrefix": "personalize",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "json",
|
8
|
+
"protocols": [
|
9
|
+
"json"
|
10
|
+
],
|
8
11
|
"serviceFullName": "Amazon Personalize",
|
9
12
|
"serviceId": "Personalize",
|
10
13
|
"signatureVersion": "v4",
|
@@ -121,6 +124,34 @@
|
|
121
124
|
},
|
122
125
|
"idempotent": true
|
123
126
|
},
|
127
|
+
"CreateDataDeletionJob": {
|
128
|
+
"input": {
|
129
|
+
"type": "structure",
|
130
|
+
"required": [
|
131
|
+
"jobName",
|
132
|
+
"datasetGroupArn",
|
133
|
+
"dataSource",
|
134
|
+
"roleArn"
|
135
|
+
],
|
136
|
+
"members": {
|
137
|
+
"jobName": {},
|
138
|
+
"datasetGroupArn": {},
|
139
|
+
"dataSource": {
|
140
|
+
"shape": "Sy"
|
141
|
+
},
|
142
|
+
"roleArn": {},
|
143
|
+
"tags": {
|
144
|
+
"shape": "Sf"
|
145
|
+
}
|
146
|
+
}
|
147
|
+
},
|
148
|
+
"output": {
|
149
|
+
"type": "structure",
|
150
|
+
"members": {
|
151
|
+
"dataDeletionJobArn": {}
|
152
|
+
}
|
153
|
+
}
|
154
|
+
},
|
124
155
|
"CreateDataset": {
|
125
156
|
"input": {
|
126
157
|
"type": "structure",
|
@@ -163,7 +194,7 @@
|
|
163
194
|
"ingestionMode": {},
|
164
195
|
"roleArn": {},
|
165
196
|
"jobOutput": {
|
166
|
-
"shape": "
|
197
|
+
"shape": "S15"
|
167
198
|
},
|
168
199
|
"tags": {
|
169
200
|
"shape": "Sf"
|
@@ -215,7 +246,7 @@
|
|
215
246
|
"jobName": {},
|
216
247
|
"datasetArn": {},
|
217
248
|
"dataSource": {
|
218
|
-
"shape": "
|
249
|
+
"shape": "Sy"
|
219
250
|
},
|
220
251
|
"roleArn": {},
|
221
252
|
"tags": {
|
@@ -270,7 +301,7 @@
|
|
270
301
|
"name": {},
|
271
302
|
"datasetGroupArn": {},
|
272
303
|
"filterExpression": {
|
273
|
-
"shape": "
|
304
|
+
"shape": "S1h"
|
274
305
|
},
|
275
306
|
"tags": {
|
276
307
|
"shape": "Sf"
|
@@ -297,10 +328,10 @@
|
|
297
328
|
"name": {},
|
298
329
|
"datasetGroupArn": {},
|
299
330
|
"metrics": {
|
300
|
-
"shape": "
|
331
|
+
"shape": "S1k"
|
301
332
|
},
|
302
333
|
"metricsOutputConfig": {
|
303
|
-
"shape": "
|
334
|
+
"shape": "S1p"
|
304
335
|
}
|
305
336
|
}
|
306
337
|
},
|
@@ -324,7 +355,7 @@
|
|
324
355
|
"datasetGroupArn": {},
|
325
356
|
"recipeArn": {},
|
326
357
|
"recommenderConfig": {
|
327
|
-
"shape": "
|
358
|
+
"shape": "S1s"
|
328
359
|
},
|
329
360
|
"tags": {
|
330
361
|
"shape": "Sf"
|
@@ -382,7 +413,7 @@
|
|
382
413
|
"datasetGroupArn": {},
|
383
414
|
"eventType": {},
|
384
415
|
"solutionConfig": {
|
385
|
-
"shape": "
|
416
|
+
"shape": "S23"
|
386
417
|
},
|
387
418
|
"tags": {
|
388
419
|
"shape": "Sf"
|
@@ -602,7 +633,7 @@
|
|
602
633
|
"members": {
|
603
634
|
"name": {},
|
604
635
|
"values": {
|
605
|
-
"shape": "
|
636
|
+
"shape": "S2m"
|
606
637
|
},
|
607
638
|
"isTunable": {
|
608
639
|
"type": "boolean"
|
@@ -785,6 +816,46 @@
|
|
785
816
|
},
|
786
817
|
"idempotent": true
|
787
818
|
},
|
819
|
+
"DescribeDataDeletionJob": {
|
820
|
+
"input": {
|
821
|
+
"type": "structure",
|
822
|
+
"required": [
|
823
|
+
"dataDeletionJobArn"
|
824
|
+
],
|
825
|
+
"members": {
|
826
|
+
"dataDeletionJobArn": {}
|
827
|
+
}
|
828
|
+
},
|
829
|
+
"output": {
|
830
|
+
"type": "structure",
|
831
|
+
"members": {
|
832
|
+
"dataDeletionJob": {
|
833
|
+
"type": "structure",
|
834
|
+
"members": {
|
835
|
+
"jobName": {},
|
836
|
+
"dataDeletionJobArn": {},
|
837
|
+
"datasetGroupArn": {},
|
838
|
+
"dataSource": {
|
839
|
+
"shape": "Sy"
|
840
|
+
},
|
841
|
+
"roleArn": {},
|
842
|
+
"status": {},
|
843
|
+
"numDeleted": {
|
844
|
+
"type": "integer"
|
845
|
+
},
|
846
|
+
"creationDateTime": {
|
847
|
+
"type": "timestamp"
|
848
|
+
},
|
849
|
+
"lastUpdatedDateTime": {
|
850
|
+
"type": "timestamp"
|
851
|
+
},
|
852
|
+
"failureReason": {}
|
853
|
+
}
|
854
|
+
}
|
855
|
+
}
|
856
|
+
},
|
857
|
+
"idempotent": true
|
858
|
+
},
|
788
859
|
"DescribeDataset": {
|
789
860
|
"input": {
|
790
861
|
"type": "structure",
|
@@ -857,7 +928,7 @@
|
|
857
928
|
"roleArn": {},
|
858
929
|
"status": {},
|
859
930
|
"jobOutput": {
|
860
|
-
"shape": "
|
931
|
+
"shape": "S15"
|
861
932
|
},
|
862
933
|
"creationDateTime": {
|
863
934
|
"type": "timestamp"
|
@@ -927,7 +998,7 @@
|
|
927
998
|
"datasetImportJobArn": {},
|
928
999
|
"datasetArn": {},
|
929
1000
|
"dataSource": {
|
930
|
-
"shape": "
|
1001
|
+
"shape": "Sy"
|
931
1002
|
},
|
932
1003
|
"roleArn": {},
|
933
1004
|
"status": {},
|
@@ -1045,7 +1116,7 @@
|
|
1045
1116
|
"datasetGroupArn": {},
|
1046
1117
|
"failureReason": {},
|
1047
1118
|
"filterExpression": {
|
1048
|
-
"shape": "
|
1119
|
+
"shape": "S1h"
|
1049
1120
|
},
|
1050
1121
|
"status": {}
|
1051
1122
|
}
|
@@ -1074,7 +1145,7 @@
|
|
1074
1145
|
"metricAttributionArn": {},
|
1075
1146
|
"datasetGroupArn": {},
|
1076
1147
|
"metricsOutputConfig": {
|
1077
|
-
"shape": "
|
1148
|
+
"shape": "S1p"
|
1078
1149
|
},
|
1079
1150
|
"status": {},
|
1080
1151
|
"creationDateTime": {
|
@@ -1145,7 +1216,7 @@
|
|
1145
1216
|
"name": {},
|
1146
1217
|
"recipeArn": {},
|
1147
1218
|
"recommenderConfig": {
|
1148
|
-
"shape": "
|
1219
|
+
"shape": "S1s"
|
1149
1220
|
},
|
1150
1221
|
"creationDateTime": {
|
1151
1222
|
"type": "timestamp"
|
@@ -1159,7 +1230,7 @@
|
|
1159
1230
|
"type": "structure",
|
1160
1231
|
"members": {
|
1161
1232
|
"recommenderConfig": {
|
1162
|
-
"shape": "
|
1233
|
+
"shape": "S1s"
|
1163
1234
|
},
|
1164
1235
|
"creationDateTime": {
|
1165
1236
|
"type": "timestamp"
|
@@ -1172,7 +1243,7 @@
|
|
1172
1243
|
}
|
1173
1244
|
},
|
1174
1245
|
"modelMetrics": {
|
1175
|
-
"shape": "
|
1246
|
+
"shape": "S55"
|
1176
1247
|
}
|
1177
1248
|
}
|
1178
1249
|
}
|
@@ -1243,7 +1314,7 @@
|
|
1243
1314
|
"datasetGroupArn": {},
|
1244
1315
|
"eventType": {},
|
1245
1316
|
"solutionConfig": {
|
1246
|
-
"shape": "
|
1317
|
+
"shape": "S23"
|
1247
1318
|
},
|
1248
1319
|
"autoMLResult": {
|
1249
1320
|
"type": "structure",
|
@@ -1259,7 +1330,7 @@
|
|
1259
1330
|
"type": "timestamp"
|
1260
1331
|
},
|
1261
1332
|
"latestSolutionVersion": {
|
1262
|
-
"shape": "
|
1333
|
+
"shape": "S5f"
|
1263
1334
|
}
|
1264
1335
|
}
|
1265
1336
|
}
|
@@ -1296,7 +1367,7 @@
|
|
1296
1367
|
"eventType": {},
|
1297
1368
|
"datasetGroupArn": {},
|
1298
1369
|
"solutionConfig": {
|
1299
|
-
"shape": "
|
1370
|
+
"shape": "S23"
|
1300
1371
|
},
|
1301
1372
|
"trainingHours": {
|
1302
1373
|
"type": "double"
|
@@ -1340,7 +1411,7 @@
|
|
1340
1411
|
"members": {
|
1341
1412
|
"solutionVersionArn": {},
|
1342
1413
|
"metrics": {
|
1343
|
-
"shape": "
|
1414
|
+
"shape": "S55"
|
1344
1415
|
}
|
1345
1416
|
}
|
1346
1417
|
}
|
@@ -1459,6 +1530,44 @@
|
|
1459
1530
|
},
|
1460
1531
|
"idempotent": true
|
1461
1532
|
},
|
1533
|
+
"ListDataDeletionJobs": {
|
1534
|
+
"input": {
|
1535
|
+
"type": "structure",
|
1536
|
+
"members": {
|
1537
|
+
"datasetGroupArn": {},
|
1538
|
+
"nextToken": {},
|
1539
|
+
"maxResults": {
|
1540
|
+
"type": "integer"
|
1541
|
+
}
|
1542
|
+
}
|
1543
|
+
},
|
1544
|
+
"output": {
|
1545
|
+
"type": "structure",
|
1546
|
+
"members": {
|
1547
|
+
"dataDeletionJobs": {
|
1548
|
+
"type": "list",
|
1549
|
+
"member": {
|
1550
|
+
"type": "structure",
|
1551
|
+
"members": {
|
1552
|
+
"dataDeletionJobArn": {},
|
1553
|
+
"datasetGroupArn": {},
|
1554
|
+
"jobName": {},
|
1555
|
+
"status": {},
|
1556
|
+
"creationDateTime": {
|
1557
|
+
"type": "timestamp"
|
1558
|
+
},
|
1559
|
+
"lastUpdatedDateTime": {
|
1560
|
+
"type": "timestamp"
|
1561
|
+
},
|
1562
|
+
"failureReason": {}
|
1563
|
+
}
|
1564
|
+
}
|
1565
|
+
},
|
1566
|
+
"nextToken": {}
|
1567
|
+
}
|
1568
|
+
},
|
1569
|
+
"idempotent": true
|
1570
|
+
},
|
1462
1571
|
"ListDatasetExportJobs": {
|
1463
1572
|
"input": {
|
1464
1573
|
"type": "structure",
|
@@ -1697,7 +1806,7 @@
|
|
1697
1806
|
"type": "structure",
|
1698
1807
|
"members": {
|
1699
1808
|
"metrics": {
|
1700
|
-
"shape": "
|
1809
|
+
"shape": "S1k"
|
1701
1810
|
},
|
1702
1811
|
"nextToken": {}
|
1703
1812
|
}
|
@@ -1803,7 +1912,7 @@
|
|
1803
1912
|
"datasetGroupArn": {},
|
1804
1913
|
"recipeArn": {},
|
1805
1914
|
"recommenderConfig": {
|
1806
|
-
"shape": "
|
1915
|
+
"shape": "S1s"
|
1807
1916
|
},
|
1808
1917
|
"status": {},
|
1809
1918
|
"creationDateTime": {
|
@@ -1872,7 +1981,7 @@
|
|
1872
1981
|
"solutionVersions": {
|
1873
1982
|
"type": "list",
|
1874
1983
|
"member": {
|
1875
|
-
"shape": "
|
1984
|
+
"shape": "S5f"
|
1876
1985
|
}
|
1877
1986
|
},
|
1878
1987
|
"nextToken": {}
|
@@ -2073,14 +2182,14 @@
|
|
2073
2182
|
"type": "structure",
|
2074
2183
|
"members": {
|
2075
2184
|
"addMetrics": {
|
2076
|
-
"shape": "
|
2185
|
+
"shape": "S1k"
|
2077
2186
|
},
|
2078
2187
|
"removeMetrics": {
|
2079
2188
|
"type": "list",
|
2080
2189
|
"member": {}
|
2081
2190
|
},
|
2082
2191
|
"metricsOutputConfig": {
|
2083
|
-
"shape": "
|
2192
|
+
"shape": "S1p"
|
2084
2193
|
},
|
2085
2194
|
"metricAttributionArn": {}
|
2086
2195
|
}
|
@@ -2102,7 +2211,7 @@
|
|
2102
2211
|
"members": {
|
2103
2212
|
"recommenderArn": {},
|
2104
2213
|
"recommenderConfig": {
|
2105
|
-
"shape": "
|
2214
|
+
"shape": "S1s"
|
2106
2215
|
}
|
2107
2216
|
}
|
2108
2217
|
},
|
@@ -2228,7 +2337,13 @@
|
|
2228
2337
|
}
|
2229
2338
|
}
|
2230
2339
|
},
|
2231
|
-
"
|
2340
|
+
"Sy": {
|
2341
|
+
"type": "structure",
|
2342
|
+
"members": {
|
2343
|
+
"dataLocation": {}
|
2344
|
+
}
|
2345
|
+
},
|
2346
|
+
"S15": {
|
2232
2347
|
"type": "structure",
|
2233
2348
|
"required": [
|
2234
2349
|
"s3DataDestination"
|
@@ -2239,17 +2354,11 @@
|
|
2239
2354
|
}
|
2240
2355
|
}
|
2241
2356
|
},
|
2242
|
-
"
|
2243
|
-
"type": "structure",
|
2244
|
-
"members": {
|
2245
|
-
"dataLocation": {}
|
2246
|
-
}
|
2247
|
-
},
|
2248
|
-
"S1f": {
|
2357
|
+
"S1h": {
|
2249
2358
|
"type": "string",
|
2250
2359
|
"sensitive": true
|
2251
2360
|
},
|
2252
|
-
"
|
2361
|
+
"S1k": {
|
2253
2362
|
"type": "list",
|
2254
2363
|
"member": {
|
2255
2364
|
"type": "structure",
|
@@ -2265,7 +2374,7 @@
|
|
2265
2374
|
}
|
2266
2375
|
}
|
2267
2376
|
},
|
2268
|
-
"
|
2377
|
+
"S1p": {
|
2269
2378
|
"type": "structure",
|
2270
2379
|
"required": [
|
2271
2380
|
"roleArn"
|
@@ -2277,7 +2386,7 @@
|
|
2277
2386
|
"roleArn": {}
|
2278
2387
|
}
|
2279
2388
|
},
|
2280
|
-
"
|
2389
|
+
"S1s": {
|
2281
2390
|
"type": "structure",
|
2282
2391
|
"members": {
|
2283
2392
|
"itemExplorationConfig": {
|
@@ -2287,14 +2396,14 @@
|
|
2287
2396
|
"type": "integer"
|
2288
2397
|
},
|
2289
2398
|
"trainingDataConfig": {
|
2290
|
-
"shape": "
|
2399
|
+
"shape": "S1t"
|
2291
2400
|
},
|
2292
2401
|
"enableMetadataWithRecommendations": {
|
2293
2402
|
"type": "boolean"
|
2294
2403
|
}
|
2295
2404
|
}
|
2296
2405
|
},
|
2297
|
-
"
|
2406
|
+
"S1t": {
|
2298
2407
|
"type": "structure",
|
2299
2408
|
"members": {
|
2300
2409
|
"excludedDatasetColumns": {
|
@@ -2307,7 +2416,7 @@
|
|
2307
2416
|
}
|
2308
2417
|
}
|
2309
2418
|
},
|
2310
|
-
"
|
2419
|
+
"S23": {
|
2311
2420
|
"type": "structure",
|
2312
2421
|
"members": {
|
2313
2422
|
"eventValueThreshold": {},
|
@@ -2369,7 +2478,7 @@
|
|
2369
2478
|
"members": {
|
2370
2479
|
"name": {},
|
2371
2480
|
"values": {
|
2372
|
-
"shape": "
|
2481
|
+
"shape": "S2m"
|
2373
2482
|
}
|
2374
2483
|
}
|
2375
2484
|
}
|
@@ -2404,7 +2513,7 @@
|
|
2404
2513
|
}
|
2405
2514
|
},
|
2406
2515
|
"trainingDataConfig": {
|
2407
|
-
"shape": "
|
2516
|
+
"shape": "S1t"
|
2408
2517
|
},
|
2409
2518
|
"autoTrainingConfig": {
|
2410
2519
|
"type": "structure",
|
@@ -2414,18 +2523,18 @@
|
|
2414
2523
|
}
|
2415
2524
|
}
|
2416
2525
|
},
|
2417
|
-
"
|
2526
|
+
"S2m": {
|
2418
2527
|
"type": "list",
|
2419
2528
|
"member": {}
|
2420
2529
|
},
|
2421
|
-
"
|
2530
|
+
"S55": {
|
2422
2531
|
"type": "map",
|
2423
2532
|
"key": {},
|
2424
2533
|
"value": {
|
2425
2534
|
"type": "double"
|
2426
2535
|
}
|
2427
2536
|
},
|
2428
|
-
"
|
2537
|
+
"S5f": {
|
2429
2538
|
"type": "structure",
|
2430
2539
|
"members": {
|
2431
2540
|
"solutionVersionArn": {},
|