cdk-comprehend-s3olap 2.0.71 → 2.0.74

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 (36) hide show
  1. package/.jsii +4 -4
  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 +13 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +464 -31
  8. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +119 -39
  10. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +9 -0
  11. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +227 -33
  12. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.paginators.json +5 -0
  13. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +601 -558
  14. package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +70 -69
  15. package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +54 -0
  16. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +104 -22
  17. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +11 -0
  18. package/node_modules/aws-sdk/apis/networkmanager-2019-07-05.min.json +52 -51
  19. package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +472 -43
  20. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +100 -2
  21. package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +2 -2
  22. package/node_modules/aws-sdk/clients/connect.d.ts +246 -160
  23. package/node_modules/aws-sdk/clients/dynamodb.d.ts +276 -2
  24. package/node_modules/aws-sdk/clients/ec2.d.ts +53 -0
  25. package/node_modules/aws-sdk/clients/ivschat.d.ts +5 -5
  26. package/node_modules/aws-sdk/clients/kendra.d.ts +57 -52
  27. package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +72 -3
  28. package/node_modules/aws-sdk/clients/networkmanager.d.ts +5 -0
  29. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  30. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +13 -13
  31. package/node_modules/aws-sdk/dist/aws-sdk.js +1079 -655
  32. package/node_modules/aws-sdk/dist/aws-sdk.min.js +74 -74
  33. package/node_modules/aws-sdk/lib/core.js +1 -1
  34. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +252 -2
  35. package/node_modules/aws-sdk/package.json +1 -1
  36. package/package.json +8 -8
@@ -383,7 +383,10 @@
383
383
  "Name": {},
384
384
  "State": {},
385
385
  "Schema": {},
386
- "Definition": {}
386
+ "Definition": {},
387
+ "ManagedRule": {
388
+ "type": "boolean"
389
+ }
387
390
  }
388
391
  }
389
392
  }
@@ -657,14 +660,14 @@
657
660
  },
658
661
  "StatusCode": {},
659
662
  "Messages": {
660
- "shape": "S43"
663
+ "shape": "S44"
661
664
  }
662
665
  }
663
666
  }
664
667
  },
665
668
  "NextToken": {},
666
669
  "Messages": {
667
- "shape": "S43"
670
+ "shape": "S44"
668
671
  }
669
672
  }
670
673
  }
@@ -774,10 +777,10 @@
774
777
  "Arn": {},
775
778
  "Name": {},
776
779
  "IncludeFilters": {
777
- "shape": "S4h"
780
+ "shape": "S4i"
778
781
  },
779
782
  "ExcludeFilters": {
780
- "shape": "S4h"
783
+ "shape": "S4i"
781
784
  },
782
785
  "FirehoseArn": {},
783
786
  "RoleArn": {},
@@ -790,7 +793,7 @@
790
793
  },
791
794
  "OutputFormat": {},
792
795
  "StatisticsConfigurations": {
793
- "shape": "S4l"
796
+ "shape": "S4m"
794
797
  }
795
798
  }
796
799
  }
@@ -848,6 +851,49 @@
848
851
  }
849
852
  }
850
853
  },
854
+ "ListManagedInsightRules": {
855
+ "input": {
856
+ "type": "structure",
857
+ "required": [
858
+ "ResourceARN"
859
+ ],
860
+ "members": {
861
+ "ResourceARN": {},
862
+ "NextToken": {},
863
+ "MaxResults": {
864
+ "type": "integer"
865
+ }
866
+ }
867
+ },
868
+ "output": {
869
+ "resultWrapper": "ListManagedInsightRulesResult",
870
+ "type": "structure",
871
+ "members": {
872
+ "ManagedRules": {
873
+ "type": "list",
874
+ "member": {
875
+ "type": "structure",
876
+ "members": {
877
+ "TemplateName": {},
878
+ "ResourceARN": {},
879
+ "RuleState": {
880
+ "type": "structure",
881
+ "required": [
882
+ "RuleName",
883
+ "State"
884
+ ],
885
+ "members": {
886
+ "RuleName": {},
887
+ "State": {}
888
+ }
889
+ }
890
+ }
891
+ }
892
+ },
893
+ "NextToken": {}
894
+ }
895
+ }
896
+ },
851
897
  "ListMetricStreams": {
852
898
  "input": {
853
899
  "type": "structure",
@@ -941,7 +987,7 @@
941
987
  "type": "structure",
942
988
  "members": {
943
989
  "Tags": {
944
- "shape": "S5g"
990
+ "shape": "S5n"
945
991
  }
946
992
  }
947
993
  }
@@ -1008,7 +1054,7 @@
1008
1054
  "shape": "S1t"
1009
1055
  },
1010
1056
  "Tags": {
1011
- "shape": "S5g"
1057
+ "shape": "S5n"
1012
1058
  },
1013
1059
  "ActionsSuppressor": {},
1014
1060
  "ActionsSuppressorWaitPeriod": {
@@ -1061,7 +1107,7 @@
1061
1107
  "RuleState": {},
1062
1108
  "RuleDefinition": {},
1063
1109
  "Tags": {
1064
- "shape": "S5g"
1110
+ "shape": "S5n"
1065
1111
  }
1066
1112
  }
1067
1113
  },
@@ -1071,6 +1117,42 @@
1071
1117
  "members": {}
1072
1118
  }
1073
1119
  },
1120
+ "PutManagedInsightRules": {
1121
+ "input": {
1122
+ "type": "structure",
1123
+ "required": [
1124
+ "ManagedRules"
1125
+ ],
1126
+ "members": {
1127
+ "ManagedRules": {
1128
+ "type": "list",
1129
+ "member": {
1130
+ "type": "structure",
1131
+ "required": [
1132
+ "TemplateName",
1133
+ "ResourceARN"
1134
+ ],
1135
+ "members": {
1136
+ "TemplateName": {},
1137
+ "ResourceARN": {},
1138
+ "Tags": {
1139
+ "shape": "S5n"
1140
+ }
1141
+ }
1142
+ }
1143
+ }
1144
+ }
1145
+ },
1146
+ "output": {
1147
+ "resultWrapper": "PutManagedInsightRulesResult",
1148
+ "type": "structure",
1149
+ "members": {
1150
+ "Failures": {
1151
+ "shape": "Sz"
1152
+ }
1153
+ }
1154
+ }
1155
+ },
1074
1156
  "PutMetricAlarm": {
1075
1157
  "input": {
1076
1158
  "type": "structure",
@@ -1121,7 +1203,7 @@
1121
1203
  "shape": "Se"
1122
1204
  },
1123
1205
  "Tags": {
1124
- "shape": "S5g"
1206
+ "shape": "S5n"
1125
1207
  },
1126
1208
  "ThresholdMetricId": {}
1127
1209
  }
@@ -1211,19 +1293,19 @@
1211
1293
  "members": {
1212
1294
  "Name": {},
1213
1295
  "IncludeFilters": {
1214
- "shape": "S4h"
1296
+ "shape": "S4i"
1215
1297
  },
1216
1298
  "ExcludeFilters": {
1217
- "shape": "S4h"
1299
+ "shape": "S4i"
1218
1300
  },
1219
1301
  "FirehoseArn": {},
1220
1302
  "RoleArn": {},
1221
1303
  "OutputFormat": {},
1222
1304
  "Tags": {
1223
- "shape": "S5g"
1305
+ "shape": "S5n"
1224
1306
  },
1225
1307
  "StatisticsConfigurations": {
1226
- "shape": "S4l"
1308
+ "shape": "S4m"
1227
1309
  }
1228
1310
  }
1229
1311
  },
@@ -1259,7 +1341,7 @@
1259
1341
  ],
1260
1342
  "members": {
1261
1343
  "Names": {
1262
- "shape": "S67"
1344
+ "shape": "S6i"
1263
1345
  }
1264
1346
  }
1265
1347
  },
@@ -1277,7 +1359,7 @@
1277
1359
  ],
1278
1360
  "members": {
1279
1361
  "Names": {
1280
- "shape": "S67"
1362
+ "shape": "S6i"
1281
1363
  }
1282
1364
  }
1283
1365
  },
@@ -1297,7 +1379,7 @@
1297
1379
  "members": {
1298
1380
  "ResourceARN": {},
1299
1381
  "Tags": {
1300
- "shape": "S5g"
1382
+ "shape": "S5n"
1301
1383
  }
1302
1384
  }
1303
1385
  },
@@ -1565,7 +1647,7 @@
1565
1647
  "MetricTimezone": {}
1566
1648
  }
1567
1649
  },
1568
- "S43": {
1650
+ "S44": {
1569
1651
  "type": "list",
1570
1652
  "member": {
1571
1653
  "type": "structure",
@@ -1575,7 +1657,7 @@
1575
1657
  }
1576
1658
  }
1577
1659
  },
1578
- "S4h": {
1660
+ "S4i": {
1579
1661
  "type": "list",
1580
1662
  "member": {
1581
1663
  "type": "structure",
@@ -1584,7 +1666,7 @@
1584
1666
  }
1585
1667
  }
1586
1668
  },
1587
- "S4l": {
1669
+ "S4m": {
1588
1670
  "type": "list",
1589
1671
  "member": {
1590
1672
  "type": "structure",
@@ -1614,7 +1696,7 @@
1614
1696
  }
1615
1697
  }
1616
1698
  },
1617
- "S5g": {
1699
+ "S5n": {
1618
1700
  "type": "list",
1619
1701
  "member": {
1620
1702
  "type": "structure",
@@ -1628,7 +1710,7 @@
1628
1710
  }
1629
1711
  }
1630
1712
  },
1631
- "S67": {
1713
+ "S6i": {
1632
1714
  "type": "list",
1633
1715
  "member": {}
1634
1716
  }
@@ -18,6 +18,12 @@
18
18
  "DescribeAlarmsForMetric": {
19
19
  "result_key": "MetricAlarms"
20
20
  },
21
+ "DescribeAnomalyDetectors": {
22
+ "input_token": "NextToken",
23
+ "limit_key": "MaxResults",
24
+ "output_token": "NextToken",
25
+ "result_key": "AnomalyDetectors"
26
+ },
21
27
  "DescribeInsightRules": {
22
28
  "input_token": "NextToken",
23
29
  "limit_key": "MaxResults",
@@ -37,6 +43,11 @@
37
43
  "output_token": "NextToken",
38
44
  "result_key": "DashboardEntries"
39
45
  },
46
+ "ListManagedInsightRules": {
47
+ "input_token": "NextToken",
48
+ "limit_key": "MaxResults",
49
+ "output_token": "NextToken"
50
+ },
40
51
  "ListMetricStreams": {
41
52
  "input_token": "NextToken",
42
53
  "limit_key": "MaxResults",
@@ -517,7 +517,7 @@
517
517
  "type": "structure",
518
518
  "members": {
519
519
  "TransitGatewayRouteTableAttachment": {
520
- "shape": "S37"
520
+ "shape": "S38"
521
521
  }
522
522
  }
523
523
  }
@@ -537,10 +537,10 @@
537
537
  "CoreNetworkId": {},
538
538
  "VpcArn": {},
539
539
  "SubnetArns": {
540
- "shape": "S3a"
540
+ "shape": "S3b"
541
541
  },
542
542
  "Options": {
543
- "shape": "S3b"
543
+ "shape": "S3c"
544
544
  },
545
545
  "Tags": {
546
546
  "shape": "Se"
@@ -554,7 +554,7 @@
554
554
  "type": "structure",
555
555
  "members": {
556
556
  "VpcAttachment": {
557
- "shape": "S3e"
557
+ "shape": "S3f"
558
558
  }
559
559
  }
560
560
  }
@@ -695,7 +695,7 @@
695
695
  "type": "structure",
696
696
  "members": {
697
697
  "CoreNetworkPolicy": {
698
- "shape": "S3p"
698
+ "shape": "S3q"
699
699
  }
700
700
  }
701
701
  }
@@ -893,7 +893,7 @@
893
893
  "type": "structure",
894
894
  "members": {
895
895
  "TransitGatewayRegistration": {
896
- "shape": "S49"
896
+ "shape": "S4a"
897
897
  }
898
898
  }
899
899
  }
@@ -1371,10 +1371,10 @@
1371
1371
  "Action": {},
1372
1372
  "Identifier": {},
1373
1373
  "PreviousValues": {
1374
- "shape": "S5i"
1374
+ "shape": "S5j"
1375
1375
  },
1376
1376
  "NewValues": {
1377
- "shape": "S5i"
1377
+ "shape": "S5j"
1378
1378
  },
1379
1379
  "IdentifierPath": {}
1380
1380
  }
@@ -1414,7 +1414,7 @@
1414
1414
  "type": "structure",
1415
1415
  "members": {
1416
1416
  "CoreNetworkPolicy": {
1417
- "shape": "S3p"
1417
+ "shape": "S3q"
1418
1418
  }
1419
1419
  }
1420
1420
  }
@@ -1806,7 +1806,7 @@
1806
1806
  "shape": "Se"
1807
1807
  },
1808
1808
  "Metadata": {
1809
- "shape": "S6c"
1809
+ "shape": "S6d"
1810
1810
  }
1811
1811
  }
1812
1812
  }
@@ -1835,7 +1835,7 @@
1835
1835
  "members": {
1836
1836
  "TransitGatewayRouteTableArn": {},
1837
1837
  "CoreNetworkSegmentEdge": {
1838
- "shape": "S6f"
1838
+ "shape": "S6g"
1839
1839
  }
1840
1840
  }
1841
1841
  },
@@ -1877,7 +1877,7 @@
1877
1877
  "members": {
1878
1878
  "RouteTableArn": {},
1879
1879
  "CoreNetworkSegmentEdge": {
1880
- "shape": "S6f"
1880
+ "shape": "S6g"
1881
1881
  },
1882
1882
  "RouteTableType": {},
1883
1883
  "RouteTableTimestamp": {
@@ -2047,7 +2047,7 @@
2047
2047
  "type": "structure",
2048
2048
  "members": {
2049
2049
  "RouteAnalysis": {
2050
- "shape": "S77"
2050
+ "shape": "S78"
2051
2051
  }
2052
2052
  }
2053
2053
  }
@@ -2232,7 +2232,7 @@
2232
2232
  "TransitGatewayRegistrations": {
2233
2233
  "type": "list",
2234
2234
  "member": {
2235
- "shape": "S49"
2235
+ "shape": "S4a"
2236
2236
  }
2237
2237
  },
2238
2238
  "NextToken": {}
@@ -2260,7 +2260,7 @@
2260
2260
  "type": "structure",
2261
2261
  "members": {
2262
2262
  "TransitGatewayRouteTableAttachment": {
2263
- "shape": "S37"
2263
+ "shape": "S38"
2264
2264
  }
2265
2265
  }
2266
2266
  }
@@ -2286,7 +2286,7 @@
2286
2286
  "type": "structure",
2287
2287
  "members": {
2288
2288
  "VpcAttachment": {
2289
- "shape": "S3e"
2289
+ "shape": "S3f"
2290
2290
  }
2291
2291
  }
2292
2292
  }
@@ -2509,7 +2509,7 @@
2509
2509
  "type": "structure",
2510
2510
  "members": {
2511
2511
  "OrganizationStatus": {
2512
- "shape": "S8m"
2512
+ "shape": "S8n"
2513
2513
  },
2514
2514
  "NextToken": {}
2515
2515
  }
@@ -2620,7 +2620,7 @@
2620
2620
  "type": "structure",
2621
2621
  "members": {
2622
2622
  "CoreNetworkPolicy": {
2623
- "shape": "S3p"
2623
+ "shape": "S3q"
2624
2624
  }
2625
2625
  }
2626
2626
  }
@@ -2672,7 +2672,7 @@
2672
2672
  "type": "structure",
2673
2673
  "members": {
2674
2674
  "TransitGatewayRegistration": {
2675
- "shape": "S49"
2675
+ "shape": "S4a"
2676
2676
  }
2677
2677
  }
2678
2678
  }
@@ -2728,7 +2728,7 @@
2728
2728
  "type": "structure",
2729
2729
  "members": {
2730
2730
  "CoreNetworkPolicy": {
2731
- "shape": "S3p"
2731
+ "shape": "S3q"
2732
2732
  }
2733
2733
  }
2734
2734
  }
@@ -2750,7 +2750,7 @@
2750
2750
  "type": "structure",
2751
2751
  "members": {
2752
2752
  "OrganizationStatus": {
2753
- "shape": "S8m"
2753
+ "shape": "S8n"
2754
2754
  }
2755
2755
  }
2756
2756
  }
@@ -2772,10 +2772,10 @@
2772
2772
  "locationName": "globalNetworkId"
2773
2773
  },
2774
2774
  "Source": {
2775
- "shape": "S9c"
2775
+ "shape": "S9d"
2776
2776
  },
2777
2777
  "Destination": {
2778
- "shape": "S9c"
2778
+ "shape": "S9d"
2779
2779
  },
2780
2780
  "IncludeReturnPath": {
2781
2781
  "type": "boolean"
@@ -2789,7 +2789,7 @@
2789
2789
  "type": "structure",
2790
2790
  "members": {
2791
2791
  "RouteAnalysis": {
2792
- "shape": "S77"
2792
+ "shape": "S78"
2793
2793
  }
2794
2794
  }
2795
2795
  }
@@ -3038,7 +3038,7 @@
3038
3038
  "locationName": "resourceArn"
3039
3039
  },
3040
3040
  "Metadata": {
3041
- "shape": "S6c"
3041
+ "shape": "S6d"
3042
3042
  }
3043
3043
  }
3044
3044
  },
@@ -3047,7 +3047,7 @@
3047
3047
  "members": {
3048
3048
  "ResourceArn": {},
3049
3049
  "Metadata": {
3050
- "shape": "S6c"
3050
+ "shape": "S6d"
3051
3051
  }
3052
3052
  }
3053
3053
  }
@@ -3103,13 +3103,13 @@
3103
3103
  "locationName": "attachmentId"
3104
3104
  },
3105
3105
  "AddSubnetArns": {
3106
- "shape": "S3a"
3106
+ "shape": "S3b"
3107
3107
  },
3108
3108
  "RemoveSubnetArns": {
3109
- "shape": "S3a"
3109
+ "shape": "S3b"
3110
3110
  },
3111
3111
  "Options": {
3112
- "shape": "S3b"
3112
+ "shape": "S3c"
3113
3113
  }
3114
3114
  }
3115
3115
  },
@@ -3117,7 +3117,7 @@
3117
3117
  "type": "structure",
3118
3118
  "members": {
3119
3119
  "VpcAttachment": {
3120
- "shape": "S3e"
3120
+ "shape": "S3f"
3121
3121
  }
3122
3122
  }
3123
3123
  }
@@ -3471,7 +3471,8 @@
3471
3471
  "Peering": {
3472
3472
  "shape": "S30"
3473
3473
  },
3474
- "TransitGatewayArn": {}
3474
+ "TransitGatewayArn": {},
3475
+ "TransitGatewayPeeringAttachmentId": {}
3475
3476
  }
3476
3477
  },
3477
3478
  "S30": {
@@ -3493,7 +3494,7 @@
3493
3494
  }
3494
3495
  }
3495
3496
  },
3496
- "S37": {
3497
+ "S38": {
3497
3498
  "type": "structure",
3498
3499
  "members": {
3499
3500
  "Attachment": {
@@ -3503,11 +3504,11 @@
3503
3504
  "TransitGatewayRouteTableArn": {}
3504
3505
  }
3505
3506
  },
3506
- "S3a": {
3507
+ "S3b": {
3507
3508
  "type": "list",
3508
3509
  "member": {}
3509
3510
  },
3510
- "S3b": {
3511
+ "S3c": {
3511
3512
  "type": "structure",
3512
3513
  "members": {
3513
3514
  "Ipv6Support": {
@@ -3515,21 +3516,21 @@
3515
3516
  }
3516
3517
  }
3517
3518
  },
3518
- "S3e": {
3519
+ "S3f": {
3519
3520
  "type": "structure",
3520
3521
  "members": {
3521
3522
  "Attachment": {
3522
3523
  "shape": "S4"
3523
3524
  },
3524
3525
  "SubnetArns": {
3525
- "shape": "S3a"
3526
+ "shape": "S3b"
3526
3527
  },
3527
3528
  "Options": {
3528
- "shape": "S3b"
3529
+ "shape": "S3c"
3529
3530
  }
3530
3531
  }
3531
3532
  },
3532
- "S3p": {
3533
+ "S3q": {
3533
3534
  "type": "structure",
3534
3535
  "members": {
3535
3536
  "CoreNetworkId": {},
@@ -3562,7 +3563,7 @@
3562
3563
  }
3563
3564
  }
3564
3565
  },
3565
- "S49": {
3566
+ "S4a": {
3566
3567
  "type": "structure",
3567
3568
  "members": {
3568
3569
  "GlobalNetworkId": {},
@@ -3576,7 +3577,7 @@
3576
3577
  }
3577
3578
  }
3578
3579
  },
3579
- "S5i": {
3580
+ "S5j": {
3580
3581
  "type": "structure",
3581
3582
  "members": {
3582
3583
  "SegmentName": {},
@@ -3596,12 +3597,12 @@
3596
3597
  }
3597
3598
  }
3598
3599
  },
3599
- "S6c": {
3600
+ "S6d": {
3600
3601
  "type": "map",
3601
3602
  "key": {},
3602
3603
  "value": {}
3603
3604
  },
3604
- "S6f": {
3605
+ "S6g": {
3605
3606
  "type": "structure",
3606
3607
  "members": {
3607
3608
  "CoreNetworkId": {},
@@ -3609,7 +3610,7 @@
3609
3610
  "EdgeLocation": {}
3610
3611
  }
3611
3612
  },
3612
- "S77": {
3613
+ "S78": {
3613
3614
  "type": "structure",
3614
3615
  "members": {
3615
3616
  "GlobalNetworkId": {},
@@ -3620,10 +3621,10 @@
3620
3621
  },
3621
3622
  "Status": {},
3622
3623
  "Source": {
3623
- "shape": "S79"
3624
+ "shape": "S7a"
3624
3625
  },
3625
3626
  "Destination": {
3626
- "shape": "S79"
3627
+ "shape": "S7a"
3627
3628
  },
3628
3629
  "IncludeReturnPath": {
3629
3630
  "type": "boolean"
@@ -3632,14 +3633,14 @@
3632
3633
  "type": "boolean"
3633
3634
  },
3634
3635
  "ForwardPath": {
3635
- "shape": "S7b"
3636
+ "shape": "S7c"
3636
3637
  },
3637
3638
  "ReturnPath": {
3638
- "shape": "S7b"
3639
+ "shape": "S7c"
3639
3640
  }
3640
3641
  }
3641
3642
  },
3642
- "S79": {
3643
+ "S7a": {
3643
3644
  "type": "structure",
3644
3645
  "members": {
3645
3646
  "TransitGatewayAttachmentArn": {},
@@ -3647,7 +3648,7 @@
3647
3648
  "IpAddress": {}
3648
3649
  }
3649
3650
  },
3650
- "S7b": {
3651
+ "S7c": {
3651
3652
  "type": "structure",
3652
3653
  "members": {
3653
3654
  "CompletionStatus": {
@@ -3689,7 +3690,7 @@
3689
3690
  }
3690
3691
  }
3691
3692
  },
3692
- "S8m": {
3693
+ "S8n": {
3693
3694
  "type": "structure",
3694
3695
  "members": {
3695
3696
  "OrganizationId": {},
@@ -3707,7 +3708,7 @@
3707
3708
  }
3708
3709
  }
3709
3710
  },
3710
- "S9c": {
3711
+ "S9d": {
3711
3712
  "type": "structure",
3712
3713
  "members": {
3713
3714
  "TransitGatewayAttachmentArn": {},