cdk-comprehend-s3olap 2.0.8 → 2.0.11

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/.jsii +5 -5
  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 +16 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.examples.json +5 -0
  8. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.min.json +767 -0
  9. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +278 -73
  11. package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +325 -98
  12. package/node_modules/aws-sdk/apis/metadata.json +6 -0
  13. package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +25 -16
  14. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.examples.json +5 -0
  15. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.min.json +1206 -0
  16. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.paginators.json +40 -0
  17. package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +841 -300
  18. package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.min.json +45 -0
  19. package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.paginators.json +6 -0
  20. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  21. package/node_modules/aws-sdk/clients/all.js +3 -1
  22. package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
  23. package/node_modules/aws-sdk/clients/connectcampaigns.d.ts +446 -0
  24. package/node_modules/aws-sdk/clients/connectcampaigns.js +18 -0
  25. package/node_modules/aws-sdk/clients/dynamodb.d.ts +18 -18
  26. package/node_modules/aws-sdk/clients/dynamodbstreams.d.ts +1 -1
  27. package/node_modules/aws-sdk/clients/finspacedata.d.ts +201 -4
  28. package/node_modules/aws-sdk/clients/guardduty.d.ts +186 -4
  29. package/node_modules/aws-sdk/clients/redshiftdata.d.ts +51 -14
  30. package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +1525 -0
  31. package/node_modules/aws-sdk/clients/redshiftserverless.js +18 -0
  32. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +6 -6
  33. package/node_modules/aws-sdk/clients/securityhub.d.ts +1020 -19
  34. package/node_modules/aws-sdk/clients/servicecatalogappregistry.d.ts +49 -2
  35. package/node_modules/aws-sdk/clients/workspaces.d.ts +10 -10
  36. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  37. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +84 -10
  38. package/node_modules/aws-sdk/dist/aws-sdk.js +9 -3
  39. package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
  40. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  41. package/node_modules/aws-sdk/lib/core.js +1 -1
  42. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +11 -11
  43. package/node_modules/aws-sdk/package.json +1 -1
  44. package/node_modules/esbuild/bin/esbuild +1 -0
  45. package/node_modules/esbuild/install.js +5 -4
  46. package/node_modules/esbuild/lib/main.d.ts +3 -1
  47. package/node_modules/esbuild/lib/main.js +15 -10
  48. package/node_modules/esbuild/package.json +21 -21
  49. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  50. package/node_modules/esbuild-linux-64/package.json +1 -1
  51. package/package.json +11 -11
@@ -12,6 +12,36 @@
12
12
  "uid": "guardduty-2017-11-28"
13
13
  },
14
14
  "operations": {
15
+ "AcceptAdministratorInvitation": {
16
+ "http": {
17
+ "requestUri": "/detector/{detectorId}/administrator",
18
+ "responseCode": 200
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "DetectorId",
24
+ "AdministratorId",
25
+ "InvitationId"
26
+ ],
27
+ "members": {
28
+ "DetectorId": {
29
+ "location": "uri",
30
+ "locationName": "detectorId"
31
+ },
32
+ "AdministratorId": {
33
+ "locationName": "administratorId"
34
+ },
35
+ "InvitationId": {
36
+ "locationName": "invitationId"
37
+ }
38
+ }
39
+ },
40
+ "output": {
41
+ "type": "structure",
42
+ "members": {}
43
+ }
44
+ },
15
45
  "AcceptInvitation": {
16
46
  "http": {
17
47
  "requestUri": "/detector/{detectorId}/master",
@@ -35,12 +65,18 @@
35
65
  "InvitationId": {
36
66
  "locationName": "invitationId"
37
67
  }
38
- }
68
+ },
69
+ "deprecated": true,
70
+ "deprecatedMessage": "This input is deprecated, use AcceptAdministratorInvitationRequest instead"
39
71
  },
40
72
  "output": {
41
73
  "type": "structure",
42
- "members": {}
43
- }
74
+ "members": {},
75
+ "deprecated": true,
76
+ "deprecatedMessage": "This output is deprecated, use AcceptAdministratorInvitationResponse instead"
77
+ },
78
+ "deprecated": true,
79
+ "deprecatedMessage": "This operation is deprecated, use AcceptAdministratorInvitation instead"
44
80
  },
45
81
  "ArchiveFindings": {
46
82
  "http": {
@@ -59,7 +95,7 @@
59
95
  "locationName": "detectorId"
60
96
  },
61
97
  "FindingIds": {
62
- "shape": "S6",
98
+ "shape": "S8",
63
99
  "locationName": "findingIds"
64
100
  }
65
101
  }
@@ -92,11 +128,11 @@
92
128
  "locationName": "findingPublishingFrequency"
93
129
  },
94
130
  "DataSources": {
95
- "shape": "Sd",
131
+ "shape": "Sf",
96
132
  "locationName": "dataSources"
97
133
  },
98
134
  "Tags": {
99
- "shape": "Sh",
135
+ "shape": "Sj",
100
136
  "locationName": "tags"
101
137
  }
102
138
  }
@@ -141,7 +177,7 @@
141
177
  "type": "integer"
142
178
  },
143
179
  "FindingCriteria": {
144
- "shape": "Sq",
180
+ "shape": "Ss",
145
181
  "locationName": "findingCriteria"
146
182
  },
147
183
  "ClientToken": {
@@ -149,7 +185,7 @@
149
185
  "locationName": "clientToken"
150
186
  },
151
187
  "Tags": {
152
- "shape": "Sh",
188
+ "shape": "Sj",
153
189
  "locationName": "tags"
154
190
  }
155
191
  }
@@ -203,7 +239,7 @@
203
239
  "locationName": "clientToken"
204
240
  },
205
241
  "Tags": {
206
- "shape": "Sh",
242
+ "shape": "Sj",
207
243
  "locationName": "tags"
208
244
  }
209
245
  }
@@ -264,7 +300,7 @@
264
300
  ],
265
301
  "members": {
266
302
  "UnprocessedAccounts": {
267
- "shape": "S1b",
303
+ "shape": "S1d",
268
304
  "locationName": "unprocessedAccounts"
269
305
  }
270
306
  }
@@ -291,7 +327,7 @@
291
327
  "locationName": "destinationType"
292
328
  },
293
329
  "DestinationProperties": {
294
- "shape": "S1f",
330
+ "shape": "S1h",
295
331
  "locationName": "destinationProperties"
296
332
  },
297
333
  "ClientToken": {
@@ -376,7 +412,7 @@
376
412
  "locationName": "clientToken"
377
413
  },
378
414
  "Tags": {
379
- "shape": "Sh",
415
+ "shape": "Sj",
380
416
  "locationName": "tags"
381
417
  }
382
418
  }
@@ -405,7 +441,7 @@
405
441
  ],
406
442
  "members": {
407
443
  "AccountIds": {
408
- "shape": "S1p",
444
+ "shape": "S1r",
409
445
  "locationName": "accountIds"
410
446
  }
411
447
  }
@@ -417,7 +453,7 @@
417
453
  ],
418
454
  "members": {
419
455
  "UnprocessedAccounts": {
420
- "shape": "S1b",
456
+ "shape": "S1d",
421
457
  "locationName": "unprocessedAccounts"
422
458
  }
423
459
  }
@@ -514,7 +550,7 @@
514
550
  ],
515
551
  "members": {
516
552
  "AccountIds": {
517
- "shape": "S1p",
553
+ "shape": "S1r",
518
554
  "locationName": "accountIds"
519
555
  }
520
556
  }
@@ -526,7 +562,7 @@
526
562
  ],
527
563
  "members": {
528
564
  "UnprocessedAccounts": {
529
- "shape": "S1b",
565
+ "shape": "S1d",
530
566
  "locationName": "unprocessedAccounts"
531
567
  }
532
568
  }
@@ -549,7 +585,7 @@
549
585
  "locationName": "detectorId"
550
586
  },
551
587
  "AccountIds": {
552
- "shape": "S1p",
588
+ "shape": "S1r",
553
589
  "locationName": "accountIds"
554
590
  }
555
591
  }
@@ -561,7 +597,7 @@
561
597
  ],
562
598
  "members": {
563
599
  "UnprocessedAccounts": {
564
- "shape": "S1b",
600
+ "shape": "S1d",
565
601
  "locationName": "unprocessedAccounts"
566
602
  }
567
603
  }
@@ -750,7 +786,7 @@
750
786
  "type": "long"
751
787
  },
752
788
  "DestinationProperties": {
753
- "shape": "S1f",
789
+ "shape": "S1h",
754
790
  "locationName": "destinationProperties"
755
791
  }
756
792
  }
@@ -777,9 +813,9 @@
777
813
  "members": {}
778
814
  }
779
815
  },
780
- "DisassociateFromMasterAccount": {
816
+ "DisassociateFromAdministratorAccount": {
781
817
  "http": {
782
- "requestUri": "/detector/{detectorId}/master/disassociate",
818
+ "requestUri": "/detector/{detectorId}/administrator/disassociate",
783
819
  "responseCode": 200
784
820
  },
785
821
  "input": {
@@ -799,6 +835,34 @@
799
835
  "members": {}
800
836
  }
801
837
  },
838
+ "DisassociateFromMasterAccount": {
839
+ "http": {
840
+ "requestUri": "/detector/{detectorId}/master/disassociate",
841
+ "responseCode": 200
842
+ },
843
+ "input": {
844
+ "type": "structure",
845
+ "required": [
846
+ "DetectorId"
847
+ ],
848
+ "members": {
849
+ "DetectorId": {
850
+ "location": "uri",
851
+ "locationName": "detectorId"
852
+ }
853
+ },
854
+ "deprecated": true,
855
+ "deprecatedMessage": "This input is deprecated, use DisassociateFromAdministratorAccountRequest instead"
856
+ },
857
+ "output": {
858
+ "type": "structure",
859
+ "members": {},
860
+ "deprecated": true,
861
+ "deprecatedMessage": "This output is deprecated, use DisassociateFromAdministratorAccountResponse instead"
862
+ },
863
+ "deprecated": true,
864
+ "deprecatedMessage": "This operation is deprecated, use DisassociateFromAdministratorAccount instead"
865
+ },
802
866
  "DisassociateMembers": {
803
867
  "http": {
804
868
  "requestUri": "/detector/{detectorId}/member/disassociate",
@@ -816,7 +880,7 @@
816
880
  "locationName": "detectorId"
817
881
  },
818
882
  "AccountIds": {
819
- "shape": "S1p",
883
+ "shape": "S1r",
820
884
  "locationName": "accountIds"
821
885
  }
822
886
  }
@@ -828,7 +892,7 @@
828
892
  ],
829
893
  "members": {
830
894
  "UnprocessedAccounts": {
831
- "shape": "S1b",
895
+ "shape": "S1d",
832
896
  "locationName": "unprocessedAccounts"
833
897
  }
834
898
  }
@@ -855,6 +919,51 @@
855
919
  "members": {}
856
920
  }
857
921
  },
922
+ "GetAdministratorAccount": {
923
+ "http": {
924
+ "method": "GET",
925
+ "requestUri": "/detector/{detectorId}/administrator",
926
+ "responseCode": 200
927
+ },
928
+ "input": {
929
+ "type": "structure",
930
+ "required": [
931
+ "DetectorId"
932
+ ],
933
+ "members": {
934
+ "DetectorId": {
935
+ "location": "uri",
936
+ "locationName": "detectorId"
937
+ }
938
+ }
939
+ },
940
+ "output": {
941
+ "type": "structure",
942
+ "required": [
943
+ "Administrator"
944
+ ],
945
+ "members": {
946
+ "Administrator": {
947
+ "locationName": "administrator",
948
+ "type": "structure",
949
+ "members": {
950
+ "AccountId": {
951
+ "locationName": "accountId"
952
+ },
953
+ "InvitationId": {
954
+ "locationName": "invitationId"
955
+ },
956
+ "RelationshipStatus": {
957
+ "locationName": "relationshipStatus"
958
+ },
959
+ "InvitedAt": {
960
+ "locationName": "invitedAt"
961
+ }
962
+ }
963
+ }
964
+ }
965
+ }
966
+ },
858
967
  "GetDetector": {
859
968
  "http": {
860
969
  "method": "GET",
@@ -896,11 +1005,11 @@
896
1005
  "locationName": "updatedAt"
897
1006
  },
898
1007
  "DataSources": {
899
- "shape": "S2p",
1008
+ "shape": "S2w",
900
1009
  "locationName": "dataSources"
901
1010
  },
902
1011
  "Tags": {
903
- "shape": "Sh",
1012
+ "shape": "Sj",
904
1013
  "locationName": "tags"
905
1014
  }
906
1015
  }
@@ -951,11 +1060,11 @@
951
1060
  "type": "integer"
952
1061
  },
953
1062
  "FindingCriteria": {
954
- "shape": "Sq",
1063
+ "shape": "Ss",
955
1064
  "locationName": "findingCriteria"
956
1065
  },
957
1066
  "Tags": {
958
- "shape": "Sh",
1067
+ "shape": "Sj",
959
1068
  "locationName": "tags"
960
1069
  }
961
1070
  }
@@ -978,11 +1087,11 @@
978
1087
  "locationName": "detectorId"
979
1088
  },
980
1089
  "FindingIds": {
981
- "shape": "S6",
1090
+ "shape": "S8",
982
1091
  "locationName": "findingIds"
983
1092
  },
984
1093
  "SortCriteria": {
985
- "shape": "S30",
1094
+ "shape": "S37",
986
1095
  "locationName": "sortCriteria"
987
1096
  }
988
1097
  }
@@ -1087,7 +1196,7 @@
1087
1196
  }
1088
1197
  },
1089
1198
  "Tags": {
1090
- "shape": "S3c",
1199
+ "shape": "S3j",
1091
1200
  "locationName": "tags"
1092
1201
  },
1093
1202
  "DefaultServerSideEncryption": {
@@ -1143,7 +1252,7 @@
1143
1252
  }
1144
1253
  },
1145
1254
  "BlockPublicAccess": {
1146
- "shape": "S3k",
1255
+ "shape": "S3r",
1147
1256
  "locationName": "blockPublicAccess"
1148
1257
  }
1149
1258
  }
@@ -1153,7 +1262,7 @@
1153
1262
  "type": "structure",
1154
1263
  "members": {
1155
1264
  "BlockPublicAccess": {
1156
- "shape": "S3k",
1265
+ "shape": "S3r",
1157
1266
  "locationName": "blockPublicAccess"
1158
1267
  }
1159
1268
  }
@@ -1283,16 +1392,16 @@
1283
1392
  "type": "structure",
1284
1393
  "members": {
1285
1394
  "Code": {
1286
- "locationName": "code"
1395
+ "locationName": "productCodeId"
1287
1396
  },
1288
1397
  "ProductType": {
1289
- "locationName": "productType"
1398
+ "locationName": "productCodeType"
1290
1399
  }
1291
1400
  }
1292
1401
  }
1293
1402
  },
1294
1403
  "Tags": {
1295
- "shape": "S3c",
1404
+ "shape": "S3j",
1296
1405
  "locationName": "tags"
1297
1406
  }
1298
1407
  }
@@ -1314,7 +1423,7 @@
1314
1423
  "locationName": "status"
1315
1424
  },
1316
1425
  "Tags": {
1317
- "shape": "S3c",
1426
+ "shape": "S3j",
1318
1427
  "locationName": "tags"
1319
1428
  },
1320
1429
  "CreatedAt": {
@@ -1483,7 +1592,7 @@
1483
1592
  "locationName": "userAgent"
1484
1593
  },
1485
1594
  "RemoteIpDetails": {
1486
- "shape": "S4e",
1595
+ "shape": "S4l",
1487
1596
  "locationName": "remoteIpDetails"
1488
1597
  },
1489
1598
  "ServiceName": {
@@ -1501,6 +1610,12 @@
1501
1610
  "type": "boolean"
1502
1611
  }
1503
1612
  }
1613
+ },
1614
+ "AffectedResources": {
1615
+ "locationName": "affectedResources",
1616
+ "type": "map",
1617
+ "key": {},
1618
+ "value": {}
1504
1619
  }
1505
1620
  }
1506
1621
  },
@@ -1510,6 +1625,13 @@
1510
1625
  "members": {
1511
1626
  "Domain": {
1512
1627
  "locationName": "domain"
1628
+ },
1629
+ "Protocol": {
1630
+ "locationName": "protocol"
1631
+ },
1632
+ "Blocked": {
1633
+ "locationName": "blocked",
1634
+ "type": "boolean"
1513
1635
  }
1514
1636
  }
1515
1637
  },
@@ -1525,18 +1647,18 @@
1525
1647
  "locationName": "connectionDirection"
1526
1648
  },
1527
1649
  "LocalPortDetails": {
1528
- "shape": "S4m",
1650
+ "shape": "S4u",
1529
1651
  "locationName": "localPortDetails"
1530
1652
  },
1531
1653
  "Protocol": {
1532
1654
  "locationName": "protocol"
1533
1655
  },
1534
1656
  "LocalIpDetails": {
1535
- "shape": "S4n",
1657
+ "shape": "S4v",
1536
1658
  "locationName": "localIpDetails"
1537
1659
  },
1538
1660
  "RemoteIpDetails": {
1539
- "shape": "S4e",
1661
+ "shape": "S4l",
1540
1662
  "locationName": "remoteIpDetails"
1541
1663
  },
1542
1664
  "RemotePortDetails": {
@@ -1569,15 +1691,15 @@
1569
1691
  "type": "structure",
1570
1692
  "members": {
1571
1693
  "LocalPortDetails": {
1572
- "shape": "S4m",
1694
+ "shape": "S4u",
1573
1695
  "locationName": "localPortDetails"
1574
1696
  },
1575
1697
  "LocalIpDetails": {
1576
- "shape": "S4n",
1698
+ "shape": "S4v",
1577
1699
  "locationName": "localIpDetails"
1578
1700
  },
1579
1701
  "RemoteIpDetails": {
1580
- "shape": "S4e",
1702
+ "shape": "S4l",
1581
1703
  "locationName": "remoteIpDetails"
1582
1704
  }
1583
1705
  }
@@ -1604,7 +1726,7 @@
1604
1726
  "locationName": "userAgent"
1605
1727
  },
1606
1728
  "RemoteIpDetails": {
1607
- "shape": "S4e",
1729
+ "shape": "S4l",
1608
1730
  "locationName": "remoteIpDetails"
1609
1731
  },
1610
1732
  "StatusCode": {
@@ -1666,6 +1788,18 @@
1666
1788
  },
1667
1789
  "UserFeedback": {
1668
1790
  "locationName": "userFeedback"
1791
+ },
1792
+ "AdditionalInfo": {
1793
+ "locationName": "additionalInfo",
1794
+ "type": "structure",
1795
+ "members": {
1796
+ "Value": {
1797
+ "locationName": "value"
1798
+ },
1799
+ "Type": {
1800
+ "locationName": "type"
1801
+ }
1802
+ }
1669
1803
  }
1670
1804
  }
1671
1805
  },
@@ -1710,7 +1844,7 @@
1710
1844
  "member": {}
1711
1845
  },
1712
1846
  "FindingCriteria": {
1713
- "shape": "Sq",
1847
+ "shape": "Ss",
1714
1848
  "locationName": "findingCriteria"
1715
1849
  }
1716
1850
  }
@@ -1783,7 +1917,7 @@
1783
1917
  "locationName": "status"
1784
1918
  },
1785
1919
  "Tags": {
1786
- "shape": "Sh",
1920
+ "shape": "Sj",
1787
1921
  "locationName": "tags"
1788
1922
  }
1789
1923
  }
@@ -1825,7 +1959,9 @@
1825
1959
  "location": "uri",
1826
1960
  "locationName": "detectorId"
1827
1961
  }
1828
- }
1962
+ },
1963
+ "deprecated": true,
1964
+ "deprecatedMessage": "This input is deprecated, use GetAdministratorAccountRequest instead"
1829
1965
  },
1830
1966
  "output": {
1831
1967
  "type": "structure",
@@ -1851,8 +1987,12 @@
1851
1987
  }
1852
1988
  }
1853
1989
  }
1854
- }
1855
- }
1990
+ },
1991
+ "deprecated": true,
1992
+ "deprecatedMessage": "This output is deprecated, use GetAdministratorAccountResponse instead"
1993
+ },
1994
+ "deprecated": true,
1995
+ "deprecatedMessage": "This operation is deprecated, use GetAdministratorAccount instead"
1856
1996
  },
1857
1997
  "GetMemberDetectors": {
1858
1998
  "http": {
@@ -1871,7 +2011,7 @@
1871
2011
  "locationName": "detectorId"
1872
2012
  },
1873
2013
  "AccountIds": {
1874
- "shape": "S1p",
2014
+ "shape": "S1r",
1875
2015
  "locationName": "accountIds"
1876
2016
  }
1877
2017
  }
@@ -1897,14 +2037,14 @@
1897
2037
  "locationName": "accountId"
1898
2038
  },
1899
2039
  "DataSources": {
1900
- "shape": "S2p",
2040
+ "shape": "S2w",
1901
2041
  "locationName": "dataSources"
1902
2042
  }
1903
2043
  }
1904
2044
  }
1905
2045
  },
1906
2046
  "UnprocessedAccounts": {
1907
- "shape": "S1b",
2047
+ "shape": "S1d",
1908
2048
  "locationName": "unprocessedAccounts"
1909
2049
  }
1910
2050
  }
@@ -1927,7 +2067,7 @@
1927
2067
  "locationName": "detectorId"
1928
2068
  },
1929
2069
  "AccountIds": {
1930
- "shape": "S1p",
2070
+ "shape": "S1r",
1931
2071
  "locationName": "accountIds"
1932
2072
  }
1933
2073
  }
@@ -1940,11 +2080,86 @@
1940
2080
  ],
1941
2081
  "members": {
1942
2082
  "Members": {
1943
- "shape": "S5i",
2083
+ "shape": "S5r",
1944
2084
  "locationName": "members"
1945
2085
  },
1946
2086
  "UnprocessedAccounts": {
1947
- "shape": "S1b",
2087
+ "shape": "S1d",
2088
+ "locationName": "unprocessedAccounts"
2089
+ }
2090
+ }
2091
+ }
2092
+ },
2093
+ "GetRemainingFreeTrialDays": {
2094
+ "http": {
2095
+ "requestUri": "/detector/{detectorId}/freeTrial/daysRemaining",
2096
+ "responseCode": 200
2097
+ },
2098
+ "input": {
2099
+ "type": "structure",
2100
+ "required": [
2101
+ "DetectorId"
2102
+ ],
2103
+ "members": {
2104
+ "DetectorId": {
2105
+ "location": "uri",
2106
+ "locationName": "detectorId"
2107
+ },
2108
+ "AccountIds": {
2109
+ "shape": "S1r",
2110
+ "locationName": "accountIds"
2111
+ }
2112
+ }
2113
+ },
2114
+ "output": {
2115
+ "type": "structure",
2116
+ "members": {
2117
+ "Accounts": {
2118
+ "locationName": "accounts",
2119
+ "type": "list",
2120
+ "member": {
2121
+ "type": "structure",
2122
+ "members": {
2123
+ "AccountId": {
2124
+ "locationName": "accountId"
2125
+ },
2126
+ "DataSources": {
2127
+ "locationName": "dataSources",
2128
+ "type": "structure",
2129
+ "members": {
2130
+ "CloudTrail": {
2131
+ "shape": "S5y",
2132
+ "locationName": "cloudTrail"
2133
+ },
2134
+ "DnsLogs": {
2135
+ "shape": "S5y",
2136
+ "locationName": "dnsLogs"
2137
+ },
2138
+ "FlowLogs": {
2139
+ "shape": "S5y",
2140
+ "locationName": "flowLogs"
2141
+ },
2142
+ "S3Logs": {
2143
+ "shape": "S5y",
2144
+ "locationName": "s3Logs"
2145
+ },
2146
+ "Kubernetes": {
2147
+ "locationName": "kubernetes",
2148
+ "type": "structure",
2149
+ "members": {
2150
+ "AuditLogs": {
2151
+ "shape": "S5y",
2152
+ "locationName": "auditLogs"
2153
+ }
2154
+ }
2155
+ }
2156
+ }
2157
+ }
2158
+ }
2159
+ }
2160
+ },
2161
+ "UnprocessedAccounts": {
2162
+ "shape": "S1d",
1948
2163
  "locationName": "unprocessedAccounts"
1949
2164
  }
1950
2165
  }
@@ -1995,7 +2210,7 @@
1995
2210
  "locationName": "status"
1996
2211
  },
1997
2212
  "Tags": {
1998
- "shape": "Sh",
2213
+ "shape": "Sj",
1999
2214
  "locationName": "tags"
2000
2215
  }
2001
2216
  }
@@ -2029,7 +2244,7 @@
2029
2244
  ],
2030
2245
  "members": {
2031
2246
  "AccountIds": {
2032
- "shape": "S1p",
2247
+ "shape": "S1r",
2033
2248
  "locationName": "accountIds"
2034
2249
  },
2035
2250
  "DataSources": {
@@ -2073,7 +2288,7 @@
2073
2288
  "locationName": "accountId"
2074
2289
  },
2075
2290
  "Total": {
2076
- "shape": "S5y",
2291
+ "shape": "S6e",
2077
2292
  "locationName": "total"
2078
2293
  }
2079
2294
  }
@@ -2089,18 +2304,18 @@
2089
2304
  "locationName": "dataSource"
2090
2305
  },
2091
2306
  "Total": {
2092
- "shape": "S5y",
2307
+ "shape": "S6e",
2093
2308
  "locationName": "total"
2094
2309
  }
2095
2310
  }
2096
2311
  }
2097
2312
  },
2098
2313
  "SumByResource": {
2099
- "shape": "S61",
2314
+ "shape": "S6h",
2100
2315
  "locationName": "sumByResource"
2101
2316
  },
2102
2317
  "TopResources": {
2103
- "shape": "S61",
2318
+ "shape": "S6h",
2104
2319
  "locationName": "topResources"
2105
2320
  }
2106
2321
  }
@@ -2128,7 +2343,7 @@
2128
2343
  "locationName": "detectorId"
2129
2344
  },
2130
2345
  "AccountIds": {
2131
- "shape": "S1p",
2346
+ "shape": "S1r",
2132
2347
  "locationName": "accountIds"
2133
2348
  },
2134
2349
  "DisableEmailNotification": {
@@ -2147,7 +2362,7 @@
2147
2362
  ],
2148
2363
  "members": {
2149
2364
  "UnprocessedAccounts": {
2150
- "shape": "S1b",
2365
+ "shape": "S1d",
2151
2366
  "locationName": "unprocessedAccounts"
2152
2367
  }
2153
2368
  }
@@ -2250,11 +2465,11 @@
2250
2465
  "locationName": "detectorId"
2251
2466
  },
2252
2467
  "FindingCriteria": {
2253
- "shape": "Sq",
2468
+ "shape": "Ss",
2254
2469
  "locationName": "findingCriteria"
2255
2470
  },
2256
2471
  "SortCriteria": {
2257
- "shape": "S30",
2472
+ "shape": "S37",
2258
2473
  "locationName": "sortCriteria"
2259
2474
  },
2260
2475
  "MaxResults": {
@@ -2273,7 +2488,7 @@
2273
2488
  ],
2274
2489
  "members": {
2275
2490
  "FindingIds": {
2276
- "shape": "S6",
2491
+ "shape": "S8",
2277
2492
  "locationName": "findingIds"
2278
2493
  },
2279
2494
  "NextToken": {
@@ -2411,7 +2626,7 @@
2411
2626
  "type": "structure",
2412
2627
  "members": {
2413
2628
  "Members": {
2414
- "shape": "S5i",
2629
+ "shape": "S5r",
2415
2630
  "locationName": "members"
2416
2631
  },
2417
2632
  "NextToken": {
@@ -2548,7 +2763,7 @@
2548
2763
  "type": "structure",
2549
2764
  "members": {
2550
2765
  "Tags": {
2551
- "shape": "Sh",
2766
+ "shape": "Sj",
2552
2767
  "locationName": "tags"
2553
2768
  }
2554
2769
  }
@@ -2615,7 +2830,7 @@
2615
2830
  "locationName": "detectorId"
2616
2831
  },
2617
2832
  "AccountIds": {
2618
- "shape": "S1p",
2833
+ "shape": "S1r",
2619
2834
  "locationName": "accountIds"
2620
2835
  }
2621
2836
  }
@@ -2627,7 +2842,7 @@
2627
2842
  ],
2628
2843
  "members": {
2629
2844
  "UnprocessedAccounts": {
2630
- "shape": "S1b",
2845
+ "shape": "S1d",
2631
2846
  "locationName": "unprocessedAccounts"
2632
2847
  }
2633
2848
  }
@@ -2650,7 +2865,7 @@
2650
2865
  "locationName": "detectorId"
2651
2866
  },
2652
2867
  "AccountIds": {
2653
- "shape": "S1p",
2868
+ "shape": "S1r",
2654
2869
  "locationName": "accountIds"
2655
2870
  }
2656
2871
  }
@@ -2662,7 +2877,7 @@
2662
2877
  ],
2663
2878
  "members": {
2664
2879
  "UnprocessedAccounts": {
2665
- "shape": "S1b",
2880
+ "shape": "S1d",
2666
2881
  "locationName": "unprocessedAccounts"
2667
2882
  }
2668
2883
  }
@@ -2685,7 +2900,7 @@
2685
2900
  "locationName": "resourceArn"
2686
2901
  },
2687
2902
  "Tags": {
2688
- "shape": "Sh",
2903
+ "shape": "Sj",
2689
2904
  "locationName": "tags"
2690
2905
  }
2691
2906
  }
@@ -2712,7 +2927,7 @@
2712
2927
  "locationName": "detectorId"
2713
2928
  },
2714
2929
  "FindingIds": {
2715
- "shape": "S6",
2930
+ "shape": "S8",
2716
2931
  "locationName": "findingIds"
2717
2932
  }
2718
2933
  }
@@ -2775,7 +2990,7 @@
2775
2990
  "locationName": "findingPublishingFrequency"
2776
2991
  },
2777
2992
  "DataSources": {
2778
- "shape": "Sd",
2993
+ "shape": "Sf",
2779
2994
  "locationName": "dataSources"
2780
2995
  }
2781
2996
  }
@@ -2816,7 +3031,7 @@
2816
3031
  "type": "integer"
2817
3032
  },
2818
3033
  "FindingCriteria": {
2819
- "shape": "Sq",
3034
+ "shape": "Ss",
2820
3035
  "locationName": "findingCriteria"
2821
3036
  }
2822
3037
  }
@@ -2851,7 +3066,7 @@
2851
3066
  "locationName": "detectorId"
2852
3067
  },
2853
3068
  "FindingIds": {
2854
- "shape": "S6",
3069
+ "shape": "S8",
2855
3070
  "locationName": "findingIds"
2856
3071
  },
2857
3072
  "Feedback": {
@@ -2921,11 +3136,11 @@
2921
3136
  "locationName": "detectorId"
2922
3137
  },
2923
3138
  "AccountIds": {
2924
- "shape": "S1p",
3139
+ "shape": "S1r",
2925
3140
  "locationName": "accountIds"
2926
3141
  },
2927
3142
  "DataSources": {
2928
- "shape": "Sd",
3143
+ "shape": "Sf",
2929
3144
  "locationName": "dataSources"
2930
3145
  }
2931
3146
  }
@@ -2937,7 +3152,7 @@
2937
3152
  ],
2938
3153
  "members": {
2939
3154
  "UnprocessedAccounts": {
2940
- "shape": "S1b",
3155
+ "shape": "S1d",
2941
3156
  "locationName": "unprocessedAccounts"
2942
3157
  }
2943
3158
  }
@@ -3032,7 +3247,7 @@
3032
3247
  "locationName": "destinationId"
3033
3248
  },
3034
3249
  "DestinationProperties": {
3035
- "shape": "S1f",
3250
+ "shape": "S1h",
3036
3251
  "locationName": "destinationProperties"
3037
3252
  }
3038
3253
  }
@@ -3081,11 +3296,11 @@
3081
3296
  }
3082
3297
  },
3083
3298
  "shapes": {
3084
- "S6": {
3299
+ "S8": {
3085
3300
  "type": "list",
3086
3301
  "member": {}
3087
3302
  },
3088
- "Sd": {
3303
+ "Sf": {
3089
3304
  "type": "structure",
3090
3305
  "members": {
3091
3306
  "S3Logs": {
@@ -3125,12 +3340,12 @@
3125
3340
  }
3126
3341
  }
3127
3342
  },
3128
- "Sh": {
3343
+ "Sj": {
3129
3344
  "type": "map",
3130
3345
  "key": {},
3131
3346
  "value": {}
3132
3347
  },
3133
- "Sq": {
3348
+ "Ss": {
3134
3349
  "type": "structure",
3135
3350
  "members": {
3136
3351
  "Criterion": {
@@ -3203,7 +3418,7 @@
3203
3418
  }
3204
3419
  }
3205
3420
  },
3206
- "S1b": {
3421
+ "S1d": {
3207
3422
  "type": "list",
3208
3423
  "member": {
3209
3424
  "type": "structure",
@@ -3221,7 +3436,7 @@
3221
3436
  }
3222
3437
  }
3223
3438
  },
3224
- "S1f": {
3439
+ "S1h": {
3225
3440
  "type": "structure",
3226
3441
  "members": {
3227
3442
  "DestinationArn": {
@@ -3232,11 +3447,11 @@
3232
3447
  }
3233
3448
  }
3234
3449
  },
3235
- "S1p": {
3450
+ "S1r": {
3236
3451
  "type": "list",
3237
3452
  "member": {}
3238
3453
  },
3239
- "S2p": {
3454
+ "S2w": {
3240
3455
  "type": "structure",
3241
3456
  "required": [
3242
3457
  "CloudTrail",
@@ -3316,7 +3531,7 @@
3316
3531
  }
3317
3532
  }
3318
3533
  },
3319
- "S30": {
3534
+ "S37": {
3320
3535
  "type": "structure",
3321
3536
  "members": {
3322
3537
  "AttributeName": {
@@ -3327,7 +3542,7 @@
3327
3542
  }
3328
3543
  }
3329
3544
  },
3330
- "S3c": {
3545
+ "S3j": {
3331
3546
  "type": "list",
3332
3547
  "member": {
3333
3548
  "type": "structure",
@@ -3341,7 +3556,7 @@
3341
3556
  }
3342
3557
  }
3343
3558
  },
3344
- "S3k": {
3559
+ "S3r": {
3345
3560
  "type": "structure",
3346
3561
  "members": {
3347
3562
  "IgnorePublicAcls": {
@@ -3362,7 +3577,7 @@
3362
3577
  }
3363
3578
  }
3364
3579
  },
3365
- "S4e": {
3580
+ "S4l": {
3366
3581
  "type": "structure",
3367
3582
  "members": {
3368
3583
  "City": {
@@ -3423,7 +3638,7 @@
3423
3638
  }
3424
3639
  }
3425
3640
  },
3426
- "S4m": {
3641
+ "S4u": {
3427
3642
  "type": "structure",
3428
3643
  "members": {
3429
3644
  "Port": {
@@ -3435,7 +3650,7 @@
3435
3650
  }
3436
3651
  }
3437
3652
  },
3438
- "S4n": {
3653
+ "S4v": {
3439
3654
  "type": "structure",
3440
3655
  "members": {
3441
3656
  "IpAddressV4": {
@@ -3443,7 +3658,7 @@
3443
3658
  }
3444
3659
  }
3445
3660
  },
3446
- "S5i": {
3661
+ "S5r": {
3447
3662
  "type": "list",
3448
3663
  "member": {
3449
3664
  "type": "structure",
@@ -3475,11 +3690,23 @@
3475
3690
  },
3476
3691
  "UpdatedAt": {
3477
3692
  "locationName": "updatedAt"
3693
+ },
3694
+ "AdministratorId": {
3695
+ "locationName": "administratorId"
3478
3696
  }
3479
3697
  }
3480
3698
  }
3481
3699
  },
3482
3700
  "S5y": {
3701
+ "type": "structure",
3702
+ "members": {
3703
+ "FreeTrialDaysRemaining": {
3704
+ "locationName": "freeTrialDaysRemaining",
3705
+ "type": "integer"
3706
+ }
3707
+ }
3708
+ },
3709
+ "S6e": {
3483
3710
  "type": "structure",
3484
3711
  "members": {
3485
3712
  "Amount": {
@@ -3490,7 +3717,7 @@
3490
3717
  }
3491
3718
  }
3492
3719
  },
3493
- "S61": {
3720
+ "S6h": {
3494
3721
  "type": "list",
3495
3722
  "member": {
3496
3723
  "type": "structure",
@@ -3499,7 +3726,7 @@
3499
3726
  "locationName": "resource"
3500
3727
  },
3501
3728
  "Total": {
3502
- "shape": "S5y",
3729
+ "shape": "S6e",
3503
3730
  "locationName": "total"
3504
3731
  }
3505
3732
  }