cdk-comprehend-s3olap 2.0.95 → 2.0.97

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 (28) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +10 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +651 -18
  8. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.paginators.json +11 -0
  9. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1377 -1108
  10. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +510 -494
  11. package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +632 -0
  12. package/node_modules/aws-sdk/clients/dynamodb.d.ts +7 -7
  13. package/node_modules/aws-sdk/clients/ec2.d.ts +267 -3
  14. package/node_modules/aws-sdk/clients/sagemaker.d.ts +32 -10
  15. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +24 -11
  16. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -25
  17. package/node_modules/aws-sdk/dist/aws-sdk.js +1380 -1111
  18. package/node_modules/aws-sdk/dist/aws-sdk.min.js +70 -70
  19. package/node_modules/aws-sdk/lib/core.js +1 -1
  20. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +3 -3
  21. package/node_modules/aws-sdk/package.json +1 -1
  22. package/node_modules/is-callable/.editorconfig +5 -0
  23. package/node_modules/is-callable/CHANGELOG.md +12 -0
  24. package/node_modules/is-callable/README.md +13 -0
  25. package/node_modules/is-callable/index.js +23 -10
  26. package/node_modules/is-callable/package.json +1 -1
  27. package/node_modules/is-callable/test/index.js +40 -4
  28. package/package.json +3 -3
@@ -93,6 +93,81 @@
93
93
  },
94
94
  "idempotent": true
95
95
  },
96
+ "CreateForm": {
97
+ "http": {
98
+ "requestUri": "/app/{appId}/environment/{environmentName}/forms",
99
+ "responseCode": 200
100
+ },
101
+ "input": {
102
+ "type": "structure",
103
+ "required": [
104
+ "appId",
105
+ "environmentName",
106
+ "formToCreate"
107
+ ],
108
+ "members": {
109
+ "appId": {
110
+ "location": "uri",
111
+ "locationName": "appId"
112
+ },
113
+ "clientToken": {
114
+ "idempotencyToken": true,
115
+ "location": "querystring",
116
+ "locationName": "clientToken"
117
+ },
118
+ "environmentName": {
119
+ "location": "uri",
120
+ "locationName": "environmentName"
121
+ },
122
+ "formToCreate": {
123
+ "type": "structure",
124
+ "required": [
125
+ "dataType",
126
+ "fields",
127
+ "formActionType",
128
+ "name",
129
+ "schemaVersion",
130
+ "sectionalElements",
131
+ "style"
132
+ ],
133
+ "members": {
134
+ "cta": {
135
+ "shape": "S19"
136
+ },
137
+ "dataType": {
138
+ "shape": "S1e"
139
+ },
140
+ "fields": {
141
+ "shape": "S1g"
142
+ },
143
+ "formActionType": {},
144
+ "name": {},
145
+ "schemaVersion": {},
146
+ "sectionalElements": {
147
+ "shape": "S1v"
148
+ },
149
+ "style": {
150
+ "shape": "S1x"
151
+ },
152
+ "tags": {
153
+ "shape": "Sx"
154
+ }
155
+ }
156
+ }
157
+ },
158
+ "payload": "formToCreate"
159
+ },
160
+ "output": {
161
+ "type": "structure",
162
+ "members": {
163
+ "entity": {
164
+ "shape": "S20"
165
+ }
166
+ },
167
+ "payload": "entity"
168
+ },
169
+ "idempotent": true
170
+ },
96
171
  "CreateTheme": {
97
172
  "http": {
98
173
  "requestUri": "/app/{appId}/environment/{environmentName}/themes",
@@ -128,13 +203,13 @@
128
203
  "members": {
129
204
  "name": {},
130
205
  "overrides": {
131
- "shape": "S1a"
206
+ "shape": "S24"
132
207
  },
133
208
  "tags": {
134
209
  "shape": "Sx"
135
210
  },
136
211
  "values": {
137
- "shape": "S1a"
212
+ "shape": "S24"
138
213
  }
139
214
  }
140
215
  }
@@ -145,7 +220,7 @@
145
220
  "type": "structure",
146
221
  "members": {
147
222
  "entity": {
148
- "shape": "S1e"
223
+ "shape": "S28"
149
224
  }
150
225
  },
151
226
  "payload": "entity"
@@ -182,6 +257,36 @@
182
257
  },
183
258
  "idempotent": true
184
259
  },
260
+ "DeleteForm": {
261
+ "http": {
262
+ "method": "DELETE",
263
+ "requestUri": "/app/{appId}/environment/{environmentName}/forms/{id}",
264
+ "responseCode": 200
265
+ },
266
+ "input": {
267
+ "type": "structure",
268
+ "required": [
269
+ "appId",
270
+ "environmentName",
271
+ "id"
272
+ ],
273
+ "members": {
274
+ "appId": {
275
+ "location": "uri",
276
+ "locationName": "appId"
277
+ },
278
+ "environmentName": {
279
+ "location": "uri",
280
+ "locationName": "environmentName"
281
+ },
282
+ "id": {
283
+ "location": "uri",
284
+ "locationName": "id"
285
+ }
286
+ }
287
+ },
288
+ "idempotent": true
289
+ },
185
290
  "DeleteTheme": {
186
291
  "http": {
187
292
  "method": "DELETE",
@@ -236,7 +341,7 @@
236
341
  ],
237
342
  "members": {
238
343
  "code": {
239
- "shape": "S1k"
344
+ "shape": "S2f"
240
345
  },
241
346
  "redirectUri": {}
242
347
  }
@@ -253,13 +358,13 @@
253
358
  ],
254
359
  "members": {
255
360
  "accessToken": {
256
- "shape": "S1k"
361
+ "shape": "S2f"
257
362
  },
258
363
  "expiresIn": {
259
364
  "type": "integer"
260
365
  },
261
366
  "refreshToken": {
262
- "shape": "S1k"
367
+ "shape": "S2f"
263
368
  }
264
369
  }
265
370
  }
@@ -307,6 +412,49 @@
307
412
  }
308
413
  }
309
414
  },
415
+ "ExportForms": {
416
+ "http": {
417
+ "method": "GET",
418
+ "requestUri": "/export/app/{appId}/environment/{environmentName}/forms",
419
+ "responseCode": 200
420
+ },
421
+ "input": {
422
+ "type": "structure",
423
+ "required": [
424
+ "appId",
425
+ "environmentName"
426
+ ],
427
+ "members": {
428
+ "appId": {
429
+ "location": "uri",
430
+ "locationName": "appId"
431
+ },
432
+ "environmentName": {
433
+ "location": "uri",
434
+ "locationName": "environmentName"
435
+ },
436
+ "nextToken": {
437
+ "location": "querystring",
438
+ "locationName": "nextToken"
439
+ }
440
+ }
441
+ },
442
+ "output": {
443
+ "type": "structure",
444
+ "required": [
445
+ "entities"
446
+ ],
447
+ "members": {
448
+ "entities": {
449
+ "type": "list",
450
+ "member": {
451
+ "shape": "S20"
452
+ }
453
+ },
454
+ "nextToken": {}
455
+ }
456
+ }
457
+ },
310
458
  "ExportThemes": {
311
459
  "http": {
312
460
  "method": "GET",
@@ -343,7 +491,7 @@
343
491
  "entities": {
344
492
  "type": "list",
345
493
  "member": {
346
- "shape": "S1e"
494
+ "shape": "S28"
347
495
  }
348
496
  },
349
497
  "nextToken": {}
@@ -388,6 +536,81 @@
388
536
  "payload": "component"
389
537
  }
390
538
  },
539
+ "GetForm": {
540
+ "http": {
541
+ "method": "GET",
542
+ "requestUri": "/app/{appId}/environment/{environmentName}/forms/{id}",
543
+ "responseCode": 200
544
+ },
545
+ "input": {
546
+ "type": "structure",
547
+ "required": [
548
+ "appId",
549
+ "environmentName",
550
+ "id"
551
+ ],
552
+ "members": {
553
+ "appId": {
554
+ "location": "uri",
555
+ "locationName": "appId"
556
+ },
557
+ "environmentName": {
558
+ "location": "uri",
559
+ "locationName": "environmentName"
560
+ },
561
+ "id": {
562
+ "location": "uri",
563
+ "locationName": "id"
564
+ }
565
+ }
566
+ },
567
+ "output": {
568
+ "type": "structure",
569
+ "members": {
570
+ "form": {
571
+ "shape": "S20"
572
+ }
573
+ },
574
+ "payload": "form"
575
+ }
576
+ },
577
+ "GetMetadata": {
578
+ "http": {
579
+ "method": "GET",
580
+ "requestUri": "/app/{appId}/environment/{environmentName}/metadata",
581
+ "responseCode": 200
582
+ },
583
+ "input": {
584
+ "type": "structure",
585
+ "required": [
586
+ "appId",
587
+ "environmentName"
588
+ ],
589
+ "members": {
590
+ "appId": {
591
+ "location": "uri",
592
+ "locationName": "appId"
593
+ },
594
+ "environmentName": {
595
+ "location": "uri",
596
+ "locationName": "environmentName"
597
+ }
598
+ }
599
+ },
600
+ "output": {
601
+ "type": "structure",
602
+ "required": [
603
+ "features"
604
+ ],
605
+ "members": {
606
+ "features": {
607
+ "type": "map",
608
+ "key": {},
609
+ "value": {}
610
+ }
611
+ }
612
+ }
613
+ },
391
614
  "GetTheme": {
392
615
  "http": {
393
616
  "method": "GET",
@@ -420,7 +643,7 @@
420
643
  "type": "structure",
421
644
  "members": {
422
645
  "theme": {
423
- "shape": "S1e"
646
+ "shape": "S28"
424
647
  }
425
648
  },
426
649
  "payload": "theme"
@@ -488,6 +711,72 @@
488
711
  }
489
712
  }
490
713
  },
714
+ "ListForms": {
715
+ "http": {
716
+ "method": "GET",
717
+ "requestUri": "/app/{appId}/environment/{environmentName}/forms",
718
+ "responseCode": 200
719
+ },
720
+ "input": {
721
+ "type": "structure",
722
+ "required": [
723
+ "appId",
724
+ "environmentName"
725
+ ],
726
+ "members": {
727
+ "appId": {
728
+ "location": "uri",
729
+ "locationName": "appId"
730
+ },
731
+ "environmentName": {
732
+ "location": "uri",
733
+ "locationName": "environmentName"
734
+ },
735
+ "maxResults": {
736
+ "location": "querystring",
737
+ "locationName": "maxResults",
738
+ "type": "integer"
739
+ },
740
+ "nextToken": {
741
+ "location": "querystring",
742
+ "locationName": "nextToken"
743
+ }
744
+ }
745
+ },
746
+ "output": {
747
+ "type": "structure",
748
+ "required": [
749
+ "entities"
750
+ ],
751
+ "members": {
752
+ "entities": {
753
+ "type": "list",
754
+ "member": {
755
+ "type": "structure",
756
+ "required": [
757
+ "appId",
758
+ "dataType",
759
+ "environmentName",
760
+ "formActionType",
761
+ "id",
762
+ "name"
763
+ ],
764
+ "members": {
765
+ "appId": {},
766
+ "dataType": {
767
+ "shape": "S1e"
768
+ },
769
+ "environmentName": {},
770
+ "formActionType": {},
771
+ "id": {},
772
+ "name": {}
773
+ }
774
+ }
775
+ },
776
+ "nextToken": {}
777
+ }
778
+ }
779
+ },
491
780
  "ListThemes": {
492
781
  "http": {
493
782
  "method": "GET",
@@ -548,6 +837,46 @@
548
837
  }
549
838
  }
550
839
  },
840
+ "PutMetadataFlag": {
841
+ "http": {
842
+ "method": "PUT",
843
+ "requestUri": "/app/{appId}/environment/{environmentName}/metadata/features/{featureName}",
844
+ "responseCode": 200
845
+ },
846
+ "input": {
847
+ "type": "structure",
848
+ "required": [
849
+ "appId",
850
+ "body",
851
+ "environmentName",
852
+ "featureName"
853
+ ],
854
+ "members": {
855
+ "appId": {
856
+ "location": "uri",
857
+ "locationName": "appId"
858
+ },
859
+ "body": {
860
+ "type": "structure",
861
+ "required": [
862
+ "newValue"
863
+ ],
864
+ "members": {
865
+ "newValue": {}
866
+ }
867
+ },
868
+ "environmentName": {
869
+ "location": "uri",
870
+ "locationName": "environmentName"
871
+ },
872
+ "featureName": {
873
+ "location": "uri",
874
+ "locationName": "featureName"
875
+ }
876
+ },
877
+ "payload": "body"
878
+ }
879
+ },
551
880
  "RefreshToken": {
552
881
  "http": {
553
882
  "requestUri": "/tokens/{provider}/refresh",
@@ -571,7 +900,7 @@
571
900
  ],
572
901
  "members": {
573
902
  "token": {
574
- "shape": "S1k"
903
+ "shape": "S2f"
575
904
  }
576
905
  }
577
906
  }
@@ -586,7 +915,7 @@
586
915
  ],
587
916
  "members": {
588
917
  "accessToken": {
589
- "shape": "S1k"
918
+ "shape": "S2f"
590
919
  },
591
920
  "expiresIn": {
592
921
  "type": "integer"
@@ -671,6 +1000,75 @@
671
1000
  },
672
1001
  "idempotent": true
673
1002
  },
1003
+ "UpdateForm": {
1004
+ "http": {
1005
+ "method": "PATCH",
1006
+ "requestUri": "/app/{appId}/environment/{environmentName}/forms/{id}",
1007
+ "responseCode": 200
1008
+ },
1009
+ "input": {
1010
+ "type": "structure",
1011
+ "required": [
1012
+ "appId",
1013
+ "environmentName",
1014
+ "id",
1015
+ "updatedForm"
1016
+ ],
1017
+ "members": {
1018
+ "appId": {
1019
+ "location": "uri",
1020
+ "locationName": "appId"
1021
+ },
1022
+ "clientToken": {
1023
+ "idempotencyToken": true,
1024
+ "location": "querystring",
1025
+ "locationName": "clientToken"
1026
+ },
1027
+ "environmentName": {
1028
+ "location": "uri",
1029
+ "locationName": "environmentName"
1030
+ },
1031
+ "id": {
1032
+ "location": "uri",
1033
+ "locationName": "id"
1034
+ },
1035
+ "updatedForm": {
1036
+ "type": "structure",
1037
+ "members": {
1038
+ "cta": {
1039
+ "shape": "S19"
1040
+ },
1041
+ "dataType": {
1042
+ "shape": "S1e"
1043
+ },
1044
+ "fields": {
1045
+ "shape": "S1g"
1046
+ },
1047
+ "formActionType": {},
1048
+ "name": {},
1049
+ "schemaVersion": {},
1050
+ "sectionalElements": {
1051
+ "shape": "S1v"
1052
+ },
1053
+ "style": {
1054
+ "shape": "S1x"
1055
+ }
1056
+ }
1057
+ }
1058
+ },
1059
+ "payload": "updatedForm"
1060
+ },
1061
+ "output": {
1062
+ "type": "structure",
1063
+ "members": {
1064
+ "entity": {
1065
+ "shape": "S20"
1066
+ }
1067
+ },
1068
+ "payload": "entity"
1069
+ },
1070
+ "idempotent": true
1071
+ },
674
1072
  "UpdateTheme": {
675
1073
  "http": {
676
1074
  "method": "PATCH",
@@ -712,10 +1110,10 @@
712
1110
  "id": {},
713
1111
  "name": {},
714
1112
  "overrides": {
715
- "shape": "S1a"
1113
+ "shape": "S24"
716
1114
  },
717
1115
  "values": {
718
- "shape": "S1a"
1116
+ "shape": "S24"
719
1117
  }
720
1118
  }
721
1119
  }
@@ -726,7 +1124,7 @@
726
1124
  "type": "structure",
727
1125
  "members": {
728
1126
  "entity": {
729
- "shape": "S1e"
1127
+ "shape": "S28"
730
1128
  }
731
1129
  },
732
1130
  "payload": "entity"
@@ -752,6 +1150,7 @@
752
1150
  "predicates": {
753
1151
  "shape": "S7"
754
1152
  },
1153
+ "slotName": {},
755
1154
  "userAttribute": {}
756
1155
  }
757
1156
  },
@@ -1057,7 +1456,241 @@
1057
1456
  "type": "timestamp",
1058
1457
  "timestampFormat": "iso8601"
1059
1458
  },
1459
+ "S19": {
1460
+ "type": "structure",
1461
+ "members": {
1462
+ "cancel": {
1463
+ "shape": "S1a"
1464
+ },
1465
+ "clear": {
1466
+ "shape": "S1a"
1467
+ },
1468
+ "position": {},
1469
+ "submit": {
1470
+ "shape": "S1a"
1471
+ }
1472
+ }
1473
+ },
1060
1474
  "S1a": {
1475
+ "type": "structure",
1476
+ "members": {
1477
+ "children": {},
1478
+ "excluded": {
1479
+ "type": "boolean"
1480
+ },
1481
+ "position": {
1482
+ "shape": "S1b"
1483
+ }
1484
+ }
1485
+ },
1486
+ "S1b": {
1487
+ "type": "structure",
1488
+ "members": {
1489
+ "below": {},
1490
+ "fixed": {},
1491
+ "rightOf": {}
1492
+ },
1493
+ "union": true
1494
+ },
1495
+ "S1e": {
1496
+ "type": "structure",
1497
+ "required": [
1498
+ "dataSourceType",
1499
+ "dataTypeName"
1500
+ ],
1501
+ "members": {
1502
+ "dataSourceType": {},
1503
+ "dataTypeName": {}
1504
+ }
1505
+ },
1506
+ "S1g": {
1507
+ "type": "map",
1508
+ "key": {},
1509
+ "value": {
1510
+ "type": "structure",
1511
+ "members": {
1512
+ "excluded": {
1513
+ "type": "boolean"
1514
+ },
1515
+ "inputType": {
1516
+ "type": "structure",
1517
+ "required": [
1518
+ "type"
1519
+ ],
1520
+ "members": {
1521
+ "defaultChecked": {
1522
+ "type": "boolean"
1523
+ },
1524
+ "defaultCountryCode": {},
1525
+ "defaultValue": {},
1526
+ "descriptiveText": {},
1527
+ "maxValue": {
1528
+ "type": "float"
1529
+ },
1530
+ "minValue": {
1531
+ "type": "float"
1532
+ },
1533
+ "name": {},
1534
+ "placeholder": {},
1535
+ "readOnly": {
1536
+ "type": "boolean"
1537
+ },
1538
+ "required": {
1539
+ "type": "boolean"
1540
+ },
1541
+ "step": {
1542
+ "type": "float"
1543
+ },
1544
+ "type": {},
1545
+ "value": {},
1546
+ "valueMappings": {
1547
+ "type": "structure",
1548
+ "required": [
1549
+ "values"
1550
+ ],
1551
+ "members": {
1552
+ "values": {
1553
+ "type": "list",
1554
+ "member": {
1555
+ "type": "structure",
1556
+ "required": [
1557
+ "value"
1558
+ ],
1559
+ "members": {
1560
+ "displayValue": {
1561
+ "shape": "S1n"
1562
+ },
1563
+ "value": {
1564
+ "shape": "S1n"
1565
+ }
1566
+ }
1567
+ }
1568
+ }
1569
+ }
1570
+ }
1571
+ }
1572
+ },
1573
+ "label": {},
1574
+ "position": {
1575
+ "shape": "S1b"
1576
+ },
1577
+ "validations": {
1578
+ "type": "list",
1579
+ "member": {
1580
+ "type": "structure",
1581
+ "required": [
1582
+ "type"
1583
+ ],
1584
+ "members": {
1585
+ "numValues": {
1586
+ "type": "list",
1587
+ "member": {
1588
+ "type": "integer"
1589
+ }
1590
+ },
1591
+ "strValues": {
1592
+ "type": "list",
1593
+ "member": {}
1594
+ },
1595
+ "type": {},
1596
+ "validationMessage": {}
1597
+ }
1598
+ }
1599
+ }
1600
+ }
1601
+ }
1602
+ },
1603
+ "S1n": {
1604
+ "type": "structure",
1605
+ "members": {
1606
+ "value": {}
1607
+ }
1608
+ },
1609
+ "S1v": {
1610
+ "type": "map",
1611
+ "key": {},
1612
+ "value": {
1613
+ "type": "structure",
1614
+ "required": [
1615
+ "type"
1616
+ ],
1617
+ "members": {
1618
+ "level": {
1619
+ "type": "integer"
1620
+ },
1621
+ "orientation": {},
1622
+ "position": {
1623
+ "shape": "S1b"
1624
+ },
1625
+ "text": {},
1626
+ "type": {}
1627
+ }
1628
+ }
1629
+ },
1630
+ "S1x": {
1631
+ "type": "structure",
1632
+ "members": {
1633
+ "horizontalGap": {
1634
+ "shape": "S1y"
1635
+ },
1636
+ "outerPadding": {
1637
+ "shape": "S1y"
1638
+ },
1639
+ "verticalGap": {
1640
+ "shape": "S1y"
1641
+ }
1642
+ }
1643
+ },
1644
+ "S1y": {
1645
+ "type": "structure",
1646
+ "members": {
1647
+ "tokenReference": {},
1648
+ "value": {}
1649
+ },
1650
+ "union": true
1651
+ },
1652
+ "S20": {
1653
+ "type": "structure",
1654
+ "required": [
1655
+ "appId",
1656
+ "dataType",
1657
+ "environmentName",
1658
+ "fields",
1659
+ "formActionType",
1660
+ "id",
1661
+ "name",
1662
+ "schemaVersion",
1663
+ "sectionalElements",
1664
+ "style"
1665
+ ],
1666
+ "members": {
1667
+ "appId": {},
1668
+ "cta": {
1669
+ "shape": "S19"
1670
+ },
1671
+ "dataType": {
1672
+ "shape": "S1e"
1673
+ },
1674
+ "environmentName": {},
1675
+ "fields": {
1676
+ "shape": "S1g"
1677
+ },
1678
+ "formActionType": {},
1679
+ "id": {},
1680
+ "name": {},
1681
+ "schemaVersion": {},
1682
+ "sectionalElements": {
1683
+ "shape": "S1v"
1684
+ },
1685
+ "style": {
1686
+ "shape": "S1x"
1687
+ },
1688
+ "tags": {
1689
+ "shape": "Sx"
1690
+ }
1691
+ }
1692
+ },
1693
+ "S24": {
1061
1694
  "type": "list",
1062
1695
  "member": {
1063
1696
  "type": "structure",
@@ -1067,7 +1700,7 @@
1067
1700
  "type": "structure",
1068
1701
  "members": {
1069
1702
  "children": {
1070
- "shape": "S1a"
1703
+ "shape": "S24"
1071
1704
  },
1072
1705
  "value": {}
1073
1706
  }
@@ -1075,7 +1708,7 @@
1075
1708
  }
1076
1709
  }
1077
1710
  },
1078
- "S1e": {
1711
+ "S28": {
1079
1712
  "type": "structure",
1080
1713
  "required": [
1081
1714
  "appId",
@@ -1097,17 +1730,17 @@
1097
1730
  },
1098
1731
  "name": {},
1099
1732
  "overrides": {
1100
- "shape": "S1a"
1733
+ "shape": "S24"
1101
1734
  },
1102
1735
  "tags": {
1103
1736
  "shape": "Sx"
1104
1737
  },
1105
1738
  "values": {
1106
- "shape": "S1a"
1739
+ "shape": "S24"
1107
1740
  }
1108
1741
  }
1109
1742
  },
1110
- "S1k": {
1743
+ "S2f": {
1111
1744
  "type": "string",
1112
1745
  "sensitive": true
1113
1746
  }