cdk-comprehend-s3olap 2.0.75 → 2.0.78
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-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +18 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +350 -82
- package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +107 -91
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +2 -1
- package/node_modules/aws-sdk/apis/forecast-2018-06-26.min.json +428 -13
- package/node_modules/aws-sdk/apis/forecast-2018-06-26.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/forecastquery-2018-06-26.min.json +54 -21
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +44 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +64 -29
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +23 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +308 -162
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.examples.json +5 -0
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.min.json +267 -0
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.paginators.json +12 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +246 -4
- package/node_modules/aws-sdk/clients/configservice.d.ts +27 -7
- package/node_modules/aws-sdk/clients/docdb.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/forecastqueryservice.d.ts +35 -1
- package/node_modules/aws-sdk/clients/forecastservice.d.ts +559 -0
- package/node_modules/aws-sdk/clients/iam.d.ts +6 -6
- package/node_modules/aws-sdk/clients/ivs.d.ts +3 -3
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +49 -1
- package/node_modules/aws-sdk/clients/quicksight.d.ts +38 -4
- package/node_modules/aws-sdk/clients/rds.d.ts +21 -0
- package/node_modules/aws-sdk/clients/securityhub.d.ts +346 -70
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +6 -6
- package/node_modules/aws-sdk/clients/supportapp.d.ts +330 -0
- package/node_modules/aws-sdk/clients/supportapp.js +18 -0
- package/node_modules/aws-sdk/clients/transfer.d.ts +20 -20
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +989 -211
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +85 -85
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -25001,7 +25001,8 @@
|
|
25001
25001
|
"DisableApiStop": {
|
25002
25002
|
"type": "boolean"
|
25003
25003
|
}
|
25004
|
-
}
|
25004
|
+
},
|
25005
|
+
"sensitive": true
|
25005
25006
|
},
|
25006
25007
|
"Sed": {
|
25007
25008
|
"type": "list",
|
@@ -380,6 +380,88 @@
|
|
380
380
|
}
|
381
381
|
}
|
382
382
|
},
|
383
|
+
"CreateWhatIfAnalysis": {
|
384
|
+
"input": {
|
385
|
+
"type": "structure",
|
386
|
+
"required": [
|
387
|
+
"WhatIfAnalysisName",
|
388
|
+
"ForecastArn"
|
389
|
+
],
|
390
|
+
"members": {
|
391
|
+
"WhatIfAnalysisName": {},
|
392
|
+
"ForecastArn": {},
|
393
|
+
"TimeSeriesSelector": {
|
394
|
+
"shape": "S1s"
|
395
|
+
},
|
396
|
+
"Tags": {
|
397
|
+
"shape": "Sm"
|
398
|
+
}
|
399
|
+
}
|
400
|
+
},
|
401
|
+
"output": {
|
402
|
+
"type": "structure",
|
403
|
+
"members": {
|
404
|
+
"WhatIfAnalysisArn": {}
|
405
|
+
}
|
406
|
+
}
|
407
|
+
},
|
408
|
+
"CreateWhatIfForecast": {
|
409
|
+
"input": {
|
410
|
+
"type": "structure",
|
411
|
+
"required": [
|
412
|
+
"WhatIfForecastName",
|
413
|
+
"WhatIfAnalysisArn"
|
414
|
+
],
|
415
|
+
"members": {
|
416
|
+
"WhatIfForecastName": {},
|
417
|
+
"WhatIfAnalysisArn": {},
|
418
|
+
"TimeSeriesTransformations": {
|
419
|
+
"shape": "S2v"
|
420
|
+
},
|
421
|
+
"TimeSeriesReplacementsDataSource": {
|
422
|
+
"shape": "S33"
|
423
|
+
},
|
424
|
+
"Tags": {
|
425
|
+
"shape": "Sm"
|
426
|
+
}
|
427
|
+
}
|
428
|
+
},
|
429
|
+
"output": {
|
430
|
+
"type": "structure",
|
431
|
+
"members": {
|
432
|
+
"WhatIfForecastArn": {}
|
433
|
+
}
|
434
|
+
}
|
435
|
+
},
|
436
|
+
"CreateWhatIfForecastExport": {
|
437
|
+
"input": {
|
438
|
+
"type": "structure",
|
439
|
+
"required": [
|
440
|
+
"WhatIfForecastExportName",
|
441
|
+
"WhatIfForecastArns",
|
442
|
+
"Destination"
|
443
|
+
],
|
444
|
+
"members": {
|
445
|
+
"WhatIfForecastExportName": {},
|
446
|
+
"WhatIfForecastArns": {
|
447
|
+
"shape": "S37"
|
448
|
+
},
|
449
|
+
"Destination": {
|
450
|
+
"shape": "S1p"
|
451
|
+
},
|
452
|
+
"Tags": {
|
453
|
+
"shape": "Sm"
|
454
|
+
},
|
455
|
+
"Format": {}
|
456
|
+
}
|
457
|
+
},
|
458
|
+
"output": {
|
459
|
+
"type": "structure",
|
460
|
+
"members": {
|
461
|
+
"WhatIfForecastExportArn": {}
|
462
|
+
}
|
463
|
+
}
|
464
|
+
},
|
383
465
|
"DeleteDataset": {
|
384
466
|
"input": {
|
385
467
|
"type": "structure",
|
@@ -512,6 +594,42 @@
|
|
512
594
|
},
|
513
595
|
"idempotent": true
|
514
596
|
},
|
597
|
+
"DeleteWhatIfAnalysis": {
|
598
|
+
"input": {
|
599
|
+
"type": "structure",
|
600
|
+
"required": [
|
601
|
+
"WhatIfAnalysisArn"
|
602
|
+
],
|
603
|
+
"members": {
|
604
|
+
"WhatIfAnalysisArn": {}
|
605
|
+
}
|
606
|
+
},
|
607
|
+
"idempotent": true
|
608
|
+
},
|
609
|
+
"DeleteWhatIfForecast": {
|
610
|
+
"input": {
|
611
|
+
"type": "structure",
|
612
|
+
"required": [
|
613
|
+
"WhatIfForecastArn"
|
614
|
+
],
|
615
|
+
"members": {
|
616
|
+
"WhatIfForecastArn": {}
|
617
|
+
}
|
618
|
+
},
|
619
|
+
"idempotent": true
|
620
|
+
},
|
621
|
+
"DeleteWhatIfForecastExport": {
|
622
|
+
"input": {
|
623
|
+
"type": "structure",
|
624
|
+
"required": [
|
625
|
+
"WhatIfForecastExportArn"
|
626
|
+
],
|
627
|
+
"members": {
|
628
|
+
"WhatIfForecastExportArn": {}
|
629
|
+
}
|
630
|
+
},
|
631
|
+
"idempotent": true
|
632
|
+
},
|
515
633
|
"DescribeAutoPredictor": {
|
516
634
|
"input": {
|
517
635
|
"type": "structure",
|
@@ -547,7 +665,7 @@
|
|
547
665
|
"shape": "Si"
|
548
666
|
},
|
549
667
|
"ReferencePredictorSummary": {
|
550
|
-
"shape": "
|
668
|
+
"shape": "S3p"
|
551
669
|
},
|
552
670
|
"EstimatedTimeRemainingInMinutes": {
|
553
671
|
"type": "long"
|
@@ -1070,6 +1188,118 @@
|
|
1070
1188
|
},
|
1071
1189
|
"idempotent": true
|
1072
1190
|
},
|
1191
|
+
"DescribeWhatIfAnalysis": {
|
1192
|
+
"input": {
|
1193
|
+
"type": "structure",
|
1194
|
+
"required": [
|
1195
|
+
"WhatIfAnalysisArn"
|
1196
|
+
],
|
1197
|
+
"members": {
|
1198
|
+
"WhatIfAnalysisArn": {}
|
1199
|
+
}
|
1200
|
+
},
|
1201
|
+
"output": {
|
1202
|
+
"type": "structure",
|
1203
|
+
"members": {
|
1204
|
+
"WhatIfAnalysisName": {},
|
1205
|
+
"WhatIfAnalysisArn": {},
|
1206
|
+
"ForecastArn": {},
|
1207
|
+
"EstimatedTimeRemainingInMinutes": {
|
1208
|
+
"type": "long"
|
1209
|
+
},
|
1210
|
+
"Status": {},
|
1211
|
+
"Message": {},
|
1212
|
+
"CreationTime": {
|
1213
|
+
"type": "timestamp"
|
1214
|
+
},
|
1215
|
+
"LastModificationTime": {
|
1216
|
+
"type": "timestamp"
|
1217
|
+
},
|
1218
|
+
"TimeSeriesSelector": {
|
1219
|
+
"shape": "S1s"
|
1220
|
+
}
|
1221
|
+
}
|
1222
|
+
},
|
1223
|
+
"idempotent": true
|
1224
|
+
},
|
1225
|
+
"DescribeWhatIfForecast": {
|
1226
|
+
"input": {
|
1227
|
+
"type": "structure",
|
1228
|
+
"required": [
|
1229
|
+
"WhatIfForecastArn"
|
1230
|
+
],
|
1231
|
+
"members": {
|
1232
|
+
"WhatIfForecastArn": {}
|
1233
|
+
}
|
1234
|
+
},
|
1235
|
+
"output": {
|
1236
|
+
"type": "structure",
|
1237
|
+
"members": {
|
1238
|
+
"WhatIfForecastName": {},
|
1239
|
+
"WhatIfForecastArn": {},
|
1240
|
+
"WhatIfAnalysisArn": {},
|
1241
|
+
"EstimatedTimeRemainingInMinutes": {
|
1242
|
+
"type": "long"
|
1243
|
+
},
|
1244
|
+
"Status": {},
|
1245
|
+
"Message": {},
|
1246
|
+
"CreationTime": {
|
1247
|
+
"type": "timestamp"
|
1248
|
+
},
|
1249
|
+
"LastModificationTime": {
|
1250
|
+
"type": "timestamp"
|
1251
|
+
},
|
1252
|
+
"TimeSeriesTransformations": {
|
1253
|
+
"shape": "S2v"
|
1254
|
+
},
|
1255
|
+
"TimeSeriesReplacementsDataSource": {
|
1256
|
+
"shape": "S33"
|
1257
|
+
},
|
1258
|
+
"ForecastTypes": {
|
1259
|
+
"shape": "S4"
|
1260
|
+
}
|
1261
|
+
}
|
1262
|
+
},
|
1263
|
+
"idempotent": true
|
1264
|
+
},
|
1265
|
+
"DescribeWhatIfForecastExport": {
|
1266
|
+
"input": {
|
1267
|
+
"type": "structure",
|
1268
|
+
"required": [
|
1269
|
+
"WhatIfForecastExportArn"
|
1270
|
+
],
|
1271
|
+
"members": {
|
1272
|
+
"WhatIfForecastExportArn": {}
|
1273
|
+
}
|
1274
|
+
},
|
1275
|
+
"output": {
|
1276
|
+
"type": "structure",
|
1277
|
+
"members": {
|
1278
|
+
"WhatIfForecastExportArn": {},
|
1279
|
+
"WhatIfForecastExportName": {},
|
1280
|
+
"WhatIfForecastArns": {
|
1281
|
+
"type": "list",
|
1282
|
+
"member": {}
|
1283
|
+
},
|
1284
|
+
"Destination": {
|
1285
|
+
"shape": "S1p"
|
1286
|
+
},
|
1287
|
+
"Message": {},
|
1288
|
+
"Status": {},
|
1289
|
+
"CreationTime": {
|
1290
|
+
"type": "timestamp"
|
1291
|
+
},
|
1292
|
+
"EstimatedTimeRemainingInMinutes": {
|
1293
|
+
"type": "long"
|
1294
|
+
},
|
1295
|
+
"LastModificationTime": {
|
1296
|
+
"type": "timestamp"
|
1297
|
+
},
|
1298
|
+
"Format": {}
|
1299
|
+
}
|
1300
|
+
},
|
1301
|
+
"idempotent": true
|
1302
|
+
},
|
1073
1303
|
"GetAccuracyMetrics": {
|
1074
1304
|
"input": {
|
1075
1305
|
"type": "structure",
|
@@ -1210,7 +1440,7 @@
|
|
1210
1440
|
"type": "integer"
|
1211
1441
|
},
|
1212
1442
|
"Filters": {
|
1213
|
-
"shape": "
|
1443
|
+
"shape": "S5l"
|
1214
1444
|
}
|
1215
1445
|
}
|
1216
1446
|
},
|
@@ -1288,7 +1518,7 @@
|
|
1288
1518
|
"type": "integer"
|
1289
1519
|
},
|
1290
1520
|
"Filters": {
|
1291
|
-
"shape": "
|
1521
|
+
"shape": "S5l"
|
1292
1522
|
}
|
1293
1523
|
}
|
1294
1524
|
},
|
@@ -1331,7 +1561,7 @@
|
|
1331
1561
|
"type": "integer"
|
1332
1562
|
},
|
1333
1563
|
"Filters": {
|
1334
|
-
"shape": "
|
1564
|
+
"shape": "S5l"
|
1335
1565
|
}
|
1336
1566
|
}
|
1337
1567
|
},
|
@@ -1373,7 +1603,7 @@
|
|
1373
1603
|
"type": "integer"
|
1374
1604
|
},
|
1375
1605
|
"Filters": {
|
1376
|
-
"shape": "
|
1606
|
+
"shape": "S5l"
|
1377
1607
|
}
|
1378
1608
|
}
|
1379
1609
|
},
|
@@ -1415,7 +1645,7 @@
|
|
1415
1645
|
"type": "integer"
|
1416
1646
|
},
|
1417
1647
|
"Filters": {
|
1418
|
-
"shape": "
|
1648
|
+
"shape": "S5l"
|
1419
1649
|
}
|
1420
1650
|
}
|
1421
1651
|
},
|
@@ -1463,7 +1693,7 @@
|
|
1463
1693
|
},
|
1464
1694
|
"MonitorArn": {},
|
1465
1695
|
"Filters": {
|
1466
|
-
"shape": "
|
1696
|
+
"shape": "S5l"
|
1467
1697
|
}
|
1468
1698
|
}
|
1469
1699
|
},
|
@@ -1537,7 +1767,7 @@
|
|
1537
1767
|
"type": "integer"
|
1538
1768
|
},
|
1539
1769
|
"Filters": {
|
1540
|
-
"shape": "
|
1770
|
+
"shape": "S5l"
|
1541
1771
|
}
|
1542
1772
|
}
|
1543
1773
|
},
|
@@ -1576,7 +1806,7 @@
|
|
1576
1806
|
"type": "integer"
|
1577
1807
|
},
|
1578
1808
|
"Filters": {
|
1579
|
-
"shape": "
|
1809
|
+
"shape": "S5l"
|
1580
1810
|
}
|
1581
1811
|
}
|
1582
1812
|
},
|
@@ -1618,7 +1848,7 @@
|
|
1618
1848
|
"type": "integer"
|
1619
1849
|
},
|
1620
1850
|
"Filters": {
|
1621
|
-
"shape": "
|
1851
|
+
"shape": "S5l"
|
1622
1852
|
}
|
1623
1853
|
}
|
1624
1854
|
},
|
@@ -1637,7 +1867,7 @@
|
|
1637
1867
|
"type": "boolean"
|
1638
1868
|
},
|
1639
1869
|
"ReferencePredictorSummary": {
|
1640
|
-
"shape": "
|
1870
|
+
"shape": "S3p"
|
1641
1871
|
},
|
1642
1872
|
"Status": {},
|
1643
1873
|
"Message": {},
|
@@ -1674,6 +1904,131 @@
|
|
1674
1904
|
}
|
1675
1905
|
}
|
1676
1906
|
},
|
1907
|
+
"ListWhatIfAnalyses": {
|
1908
|
+
"input": {
|
1909
|
+
"type": "structure",
|
1910
|
+
"members": {
|
1911
|
+
"NextToken": {},
|
1912
|
+
"MaxResults": {
|
1913
|
+
"type": "integer"
|
1914
|
+
},
|
1915
|
+
"Filters": {
|
1916
|
+
"shape": "S5l"
|
1917
|
+
}
|
1918
|
+
}
|
1919
|
+
},
|
1920
|
+
"output": {
|
1921
|
+
"type": "structure",
|
1922
|
+
"members": {
|
1923
|
+
"WhatIfAnalyses": {
|
1924
|
+
"type": "list",
|
1925
|
+
"member": {
|
1926
|
+
"type": "structure",
|
1927
|
+
"members": {
|
1928
|
+
"WhatIfAnalysisArn": {},
|
1929
|
+
"WhatIfAnalysisName": {},
|
1930
|
+
"ForecastArn": {},
|
1931
|
+
"Status": {},
|
1932
|
+
"Message": {},
|
1933
|
+
"CreationTime": {
|
1934
|
+
"type": "timestamp"
|
1935
|
+
},
|
1936
|
+
"LastModificationTime": {
|
1937
|
+
"type": "timestamp"
|
1938
|
+
}
|
1939
|
+
}
|
1940
|
+
}
|
1941
|
+
},
|
1942
|
+
"NextToken": {}
|
1943
|
+
}
|
1944
|
+
},
|
1945
|
+
"idempotent": true
|
1946
|
+
},
|
1947
|
+
"ListWhatIfForecastExports": {
|
1948
|
+
"input": {
|
1949
|
+
"type": "structure",
|
1950
|
+
"members": {
|
1951
|
+
"NextToken": {},
|
1952
|
+
"MaxResults": {
|
1953
|
+
"type": "integer"
|
1954
|
+
},
|
1955
|
+
"Filters": {
|
1956
|
+
"shape": "S5l"
|
1957
|
+
}
|
1958
|
+
}
|
1959
|
+
},
|
1960
|
+
"output": {
|
1961
|
+
"type": "structure",
|
1962
|
+
"members": {
|
1963
|
+
"WhatIfForecastExports": {
|
1964
|
+
"type": "list",
|
1965
|
+
"member": {
|
1966
|
+
"type": "structure",
|
1967
|
+
"members": {
|
1968
|
+
"WhatIfForecastExportArn": {},
|
1969
|
+
"WhatIfForecastArns": {
|
1970
|
+
"shape": "S37"
|
1971
|
+
},
|
1972
|
+
"WhatIfForecastExportName": {},
|
1973
|
+
"Destination": {
|
1974
|
+
"shape": "S1p"
|
1975
|
+
},
|
1976
|
+
"Status": {},
|
1977
|
+
"Message": {},
|
1978
|
+
"CreationTime": {
|
1979
|
+
"type": "timestamp"
|
1980
|
+
},
|
1981
|
+
"LastModificationTime": {
|
1982
|
+
"type": "timestamp"
|
1983
|
+
}
|
1984
|
+
}
|
1985
|
+
}
|
1986
|
+
},
|
1987
|
+
"NextToken": {}
|
1988
|
+
}
|
1989
|
+
},
|
1990
|
+
"idempotent": true
|
1991
|
+
},
|
1992
|
+
"ListWhatIfForecasts": {
|
1993
|
+
"input": {
|
1994
|
+
"type": "structure",
|
1995
|
+
"members": {
|
1996
|
+
"NextToken": {},
|
1997
|
+
"MaxResults": {
|
1998
|
+
"type": "integer"
|
1999
|
+
},
|
2000
|
+
"Filters": {
|
2001
|
+
"shape": "S5l"
|
2002
|
+
}
|
2003
|
+
}
|
2004
|
+
},
|
2005
|
+
"output": {
|
2006
|
+
"type": "structure",
|
2007
|
+
"members": {
|
2008
|
+
"WhatIfForecasts": {
|
2009
|
+
"type": "list",
|
2010
|
+
"member": {
|
2011
|
+
"type": "structure",
|
2012
|
+
"members": {
|
2013
|
+
"WhatIfForecastArn": {},
|
2014
|
+
"WhatIfForecastName": {},
|
2015
|
+
"WhatIfAnalysisArn": {},
|
2016
|
+
"Status": {},
|
2017
|
+
"Message": {},
|
2018
|
+
"CreationTime": {
|
2019
|
+
"type": "timestamp"
|
2020
|
+
},
|
2021
|
+
"LastModificationTime": {
|
2022
|
+
"type": "timestamp"
|
2023
|
+
}
|
2024
|
+
}
|
2025
|
+
}
|
2026
|
+
},
|
2027
|
+
"NextToken": {}
|
2028
|
+
}
|
2029
|
+
},
|
2030
|
+
"idempotent": true
|
2031
|
+
},
|
1677
2032
|
"ResumeResource": {
|
1678
2033
|
"input": {
|
1679
2034
|
"type": "structure",
|
@@ -2095,14 +2450,74 @@
|
|
2095
2450
|
}
|
2096
2451
|
}
|
2097
2452
|
},
|
2098
|
-
"
|
2453
|
+
"S2v": {
|
2454
|
+
"type": "list",
|
2455
|
+
"member": {
|
2456
|
+
"type": "structure",
|
2457
|
+
"members": {
|
2458
|
+
"Action": {
|
2459
|
+
"type": "structure",
|
2460
|
+
"required": [
|
2461
|
+
"AttributeName",
|
2462
|
+
"Operation",
|
2463
|
+
"Value"
|
2464
|
+
],
|
2465
|
+
"members": {
|
2466
|
+
"AttributeName": {},
|
2467
|
+
"Operation": {},
|
2468
|
+
"Value": {
|
2469
|
+
"type": "double"
|
2470
|
+
}
|
2471
|
+
}
|
2472
|
+
},
|
2473
|
+
"TimeSeriesConditions": {
|
2474
|
+
"type": "list",
|
2475
|
+
"member": {
|
2476
|
+
"type": "structure",
|
2477
|
+
"required": [
|
2478
|
+
"AttributeName",
|
2479
|
+
"AttributeValue",
|
2480
|
+
"Condition"
|
2481
|
+
],
|
2482
|
+
"members": {
|
2483
|
+
"AttributeName": {},
|
2484
|
+
"AttributeValue": {},
|
2485
|
+
"Condition": {}
|
2486
|
+
}
|
2487
|
+
}
|
2488
|
+
}
|
2489
|
+
}
|
2490
|
+
}
|
2491
|
+
},
|
2492
|
+
"S33": {
|
2493
|
+
"type": "structure",
|
2494
|
+
"required": [
|
2495
|
+
"S3Config",
|
2496
|
+
"Schema"
|
2497
|
+
],
|
2498
|
+
"members": {
|
2499
|
+
"S3Config": {
|
2500
|
+
"shape": "S1a"
|
2501
|
+
},
|
2502
|
+
"Schema": {
|
2503
|
+
"shape": "S10"
|
2504
|
+
},
|
2505
|
+
"Format": {},
|
2506
|
+
"TimestampFormat": {}
|
2507
|
+
}
|
2508
|
+
},
|
2509
|
+
"S37": {
|
2510
|
+
"type": "list",
|
2511
|
+
"member": {}
|
2512
|
+
},
|
2513
|
+
"S3p": {
|
2099
2514
|
"type": "structure",
|
2100
2515
|
"members": {
|
2101
2516
|
"Arn": {},
|
2102
2517
|
"State": {}
|
2103
2518
|
}
|
2104
2519
|
},
|
2105
|
-
"
|
2520
|
+
"S5l": {
|
2106
2521
|
"type": "list",
|
2107
2522
|
"member": {
|
2108
2523
|
"type": "structure",
|
@@ -65,6 +65,24 @@
|
|
65
65
|
"limit_key": "MaxResults",
|
66
66
|
"output_token": "NextToken",
|
67
67
|
"result_key": "Predictors"
|
68
|
+
},
|
69
|
+
"ListWhatIfAnalyses": {
|
70
|
+
"input_token": "NextToken",
|
71
|
+
"limit_key": "MaxResults",
|
72
|
+
"output_token": "NextToken",
|
73
|
+
"result_key": "WhatIfAnalyses"
|
74
|
+
},
|
75
|
+
"ListWhatIfForecastExports": {
|
76
|
+
"input_token": "NextToken",
|
77
|
+
"limit_key": "MaxResults",
|
78
|
+
"output_token": "NextToken",
|
79
|
+
"result_key": "WhatIfForecastExports"
|
80
|
+
},
|
81
|
+
"ListWhatIfForecasts": {
|
82
|
+
"input_token": "NextToken",
|
83
|
+
"limit_key": "MaxResults",
|
84
|
+
"output_token": "NextToken",
|
85
|
+
"result_key": "WhatIfForecasts"
|
68
86
|
}
|
69
87
|
}
|
70
88
|
}
|
@@ -25,9 +25,7 @@
|
|
25
25
|
"StartDate": {},
|
26
26
|
"EndDate": {},
|
27
27
|
"Filters": {
|
28
|
-
"
|
29
|
-
"key": {},
|
30
|
-
"value": {}
|
28
|
+
"shape": "S4"
|
31
29
|
},
|
32
30
|
"NextToken": {}
|
33
31
|
}
|
@@ -36,22 +34,58 @@
|
|
36
34
|
"type": "structure",
|
37
35
|
"members": {
|
38
36
|
"Forecast": {
|
39
|
-
"
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
37
|
+
"shape": "S9"
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
},
|
42
|
+
"QueryWhatIfForecast": {
|
43
|
+
"input": {
|
44
|
+
"type": "structure",
|
45
|
+
"required": [
|
46
|
+
"WhatIfForecastArn",
|
47
|
+
"Filters"
|
48
|
+
],
|
49
|
+
"members": {
|
50
|
+
"WhatIfForecastArn": {},
|
51
|
+
"StartDate": {},
|
52
|
+
"EndDate": {},
|
53
|
+
"Filters": {
|
54
|
+
"shape": "S4"
|
55
|
+
},
|
56
|
+
"NextToken": {}
|
57
|
+
}
|
58
|
+
},
|
59
|
+
"output": {
|
60
|
+
"type": "structure",
|
61
|
+
"members": {
|
62
|
+
"Forecast": {
|
63
|
+
"shape": "S9"
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
},
|
69
|
+
"shapes": {
|
70
|
+
"S4": {
|
71
|
+
"type": "map",
|
72
|
+
"key": {},
|
73
|
+
"value": {}
|
74
|
+
},
|
75
|
+
"S9": {
|
76
|
+
"type": "structure",
|
77
|
+
"members": {
|
78
|
+
"Predictions": {
|
79
|
+
"type": "map",
|
80
|
+
"key": {},
|
81
|
+
"value": {
|
82
|
+
"type": "list",
|
83
|
+
"member": {
|
84
|
+
"type": "structure",
|
85
|
+
"members": {
|
86
|
+
"Timestamp": {},
|
87
|
+
"Value": {
|
88
|
+
"type": "double"
|
55
89
|
}
|
56
90
|
}
|
57
91
|
}
|
@@ -59,6 +93,5 @@
|
|
59
93
|
}
|
60
94
|
}
|
61
95
|
}
|
62
|
-
}
|
63
|
-
"shapes": {}
|
96
|
+
}
|
64
97
|
}
|