cdk-lambda-subminute 2.0.293 → 2.0.295

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 (41) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +22 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +48 -47
  6. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +11 -8
  7. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +55 -0
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +4 -0
  9. package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +104 -9
  10. package/node_modules/aws-sdk/apis/cur-2017-01-06.min.json +86 -1
  11. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1070 -950
  12. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +242 -39
  13. package/node_modules/aws-sdk/apis/entitlement.marketplace-2017-01-11.paginators.json +5 -0
  14. package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +372 -26
  15. package/node_modules/aws-sdk/apis/logs-2014-03-28.paginators.json +18 -0
  16. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +177 -164
  17. package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +1 -3
  18. package/node_modules/aws-sdk/apis/sqs-2012-11-05.min.json +13 -13
  19. package/node_modules/aws-sdk/clients/cloudformation.d.ts +15 -10
  20. package/node_modules/aws-sdk/clients/cloudtrail.d.ts +50 -22
  21. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +422 -2
  22. package/node_modules/aws-sdk/clients/comprehend.d.ts +73 -19
  23. package/node_modules/aws-sdk/clients/connect.d.ts +5 -1
  24. package/node_modules/aws-sdk/clients/controltower.d.ts +94 -22
  25. package/node_modules/aws-sdk/clients/cur.d.ts +104 -10
  26. package/node_modules/aws-sdk/clients/ec2.d.ts +136 -7
  27. package/node_modules/aws-sdk/clients/eks.d.ts +221 -9
  28. package/node_modules/aws-sdk/clients/fms.d.ts +6 -6
  29. package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
  30. package/node_modules/aws-sdk/clients/marketplaceentitlementservice.d.ts +2 -1
  31. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +26 -12
  32. package/node_modules/aws-sdk/clients/omics.d.ts +5 -4
  33. package/node_modules/aws-sdk/clients/rds.d.ts +11 -11
  34. package/node_modules/aws-sdk/clients/sqs.d.ts +1 -2
  35. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  36. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
  37. package/node_modules/aws-sdk/dist/aws-sdk.js +1680 -1048
  38. package/node_modules/aws-sdk/dist/aws-sdk.min.js +91 -91
  39. package/node_modules/aws-sdk/lib/core.js +1 -1
  40. package/node_modules/aws-sdk/package.json +1 -1
  41. package/package.json +3 -4
@@ -36,6 +36,30 @@
36
36
  }
37
37
  }
38
38
  },
39
+ "CreateDelivery": {
40
+ "input": {
41
+ "type": "structure",
42
+ "required": [
43
+ "deliverySourceName",
44
+ "deliveryDestinationArn"
45
+ ],
46
+ "members": {
47
+ "deliverySourceName": {},
48
+ "deliveryDestinationArn": {},
49
+ "tags": {
50
+ "shape": "Sa"
51
+ }
52
+ }
53
+ },
54
+ "output": {
55
+ "type": "structure",
56
+ "members": {
57
+ "delivery": {
58
+ "shape": "Se"
59
+ }
60
+ }
61
+ }
62
+ },
39
63
  "CreateExportTask": {
40
64
  "input": {
41
65
  "type": "structure",
@@ -76,7 +100,7 @@
76
100
  "logGroupName": {},
77
101
  "kmsKeyId": {},
78
102
  "tags": {
79
- "shape": "Sf"
103
+ "shape": "Sa"
80
104
  }
81
105
  }
82
106
  }
@@ -118,6 +142,50 @@
118
142
  }
119
143
  }
120
144
  },
145
+ "DeleteDelivery": {
146
+ "input": {
147
+ "type": "structure",
148
+ "required": [
149
+ "id"
150
+ ],
151
+ "members": {
152
+ "id": {}
153
+ }
154
+ }
155
+ },
156
+ "DeleteDeliveryDestination": {
157
+ "input": {
158
+ "type": "structure",
159
+ "required": [
160
+ "name"
161
+ ],
162
+ "members": {
163
+ "name": {}
164
+ }
165
+ }
166
+ },
167
+ "DeleteDeliveryDestinationPolicy": {
168
+ "input": {
169
+ "type": "structure",
170
+ "required": [
171
+ "deliveryDestinationName"
172
+ ],
173
+ "members": {
174
+ "deliveryDestinationName": {}
175
+ }
176
+ }
177
+ },
178
+ "DeleteDeliverySource": {
179
+ "input": {
180
+ "type": "structure",
181
+ "required": [
182
+ "name"
183
+ ],
184
+ "members": {
185
+ "name": {}
186
+ }
187
+ }
188
+ },
121
189
  "DeleteDestination": {
122
190
  "input": {
123
191
  "type": "structure",
@@ -227,7 +295,7 @@
227
295
  "policyType": {},
228
296
  "policyName": {},
229
297
  "accountIdentifiers": {
230
- "shape": "S12"
298
+ "shape": "S1e"
231
299
  }
232
300
  }
233
301
  },
@@ -237,12 +305,81 @@
237
305
  "accountPolicies": {
238
306
  "type": "list",
239
307
  "member": {
240
- "shape": "S16"
308
+ "shape": "S1i"
241
309
  }
242
310
  }
243
311
  }
244
312
  }
245
313
  },
314
+ "DescribeDeliveries": {
315
+ "input": {
316
+ "type": "structure",
317
+ "members": {
318
+ "nextToken": {},
319
+ "limit": {
320
+ "type": "integer"
321
+ }
322
+ }
323
+ },
324
+ "output": {
325
+ "type": "structure",
326
+ "members": {
327
+ "deliveries": {
328
+ "type": "list",
329
+ "member": {
330
+ "shape": "Se"
331
+ }
332
+ },
333
+ "nextToken": {}
334
+ }
335
+ }
336
+ },
337
+ "DescribeDeliveryDestinations": {
338
+ "input": {
339
+ "type": "structure",
340
+ "members": {
341
+ "nextToken": {},
342
+ "limit": {
343
+ "type": "integer"
344
+ }
345
+ }
346
+ },
347
+ "output": {
348
+ "type": "structure",
349
+ "members": {
350
+ "deliveryDestinations": {
351
+ "type": "list",
352
+ "member": {
353
+ "shape": "S1t"
354
+ }
355
+ },
356
+ "nextToken": {}
357
+ }
358
+ }
359
+ },
360
+ "DescribeDeliverySources": {
361
+ "input": {
362
+ "type": "structure",
363
+ "members": {
364
+ "nextToken": {},
365
+ "limit": {
366
+ "type": "integer"
367
+ }
368
+ }
369
+ },
370
+ "output": {
371
+ "type": "structure",
372
+ "members": {
373
+ "deliverySources": {
374
+ "type": "list",
375
+ "member": {
376
+ "shape": "S1z"
377
+ }
378
+ },
379
+ "nextToken": {}
380
+ }
381
+ }
382
+ },
246
383
  "DescribeDestinations": {
247
384
  "input": {
248
385
  "type": "structure",
@@ -260,7 +397,7 @@
260
397
  "destinations": {
261
398
  "type": "list",
262
399
  "member": {
263
- "shape": "S1e"
400
+ "shape": "S26"
264
401
  }
265
402
  },
266
403
  "nextToken": {}
@@ -328,7 +465,7 @@
328
465
  "type": "structure",
329
466
  "members": {
330
467
  "accountIdentifiers": {
331
- "shape": "S12"
468
+ "shape": "S1e"
332
469
  },
333
470
  "logGroupNamePrefix": {},
334
471
  "logGroupNamePattern": {},
@@ -453,7 +590,7 @@
453
590
  "filterName": {},
454
591
  "filterPattern": {},
455
592
  "metricTransformations": {
456
- "shape": "S2h"
593
+ "shape": "S38"
457
594
  },
458
595
  "creationTime": {
459
596
  "type": "long"
@@ -526,7 +663,7 @@
526
663
  "type": "long"
527
664
  },
528
665
  "logGroupNames": {
529
- "shape": "S33"
666
+ "shape": "S3u"
530
667
  }
531
668
  }
532
669
  }
@@ -551,7 +688,7 @@
551
688
  "resourcePolicies": {
552
689
  "type": "list",
553
690
  "member": {
554
- "shape": "S37"
691
+ "shape": "S3y"
555
692
  }
556
693
  },
557
694
  "nextToken": {}
@@ -695,6 +832,82 @@
695
832
  }
696
833
  }
697
834
  },
835
+ "GetDelivery": {
836
+ "input": {
837
+ "type": "structure",
838
+ "required": [
839
+ "id"
840
+ ],
841
+ "members": {
842
+ "id": {}
843
+ }
844
+ },
845
+ "output": {
846
+ "type": "structure",
847
+ "members": {
848
+ "delivery": {
849
+ "shape": "Se"
850
+ }
851
+ }
852
+ }
853
+ },
854
+ "GetDeliveryDestination": {
855
+ "input": {
856
+ "type": "structure",
857
+ "required": [
858
+ "name"
859
+ ],
860
+ "members": {
861
+ "name": {}
862
+ }
863
+ },
864
+ "output": {
865
+ "type": "structure",
866
+ "members": {
867
+ "deliveryDestination": {
868
+ "shape": "S1t"
869
+ }
870
+ }
871
+ }
872
+ },
873
+ "GetDeliveryDestinationPolicy": {
874
+ "input": {
875
+ "type": "structure",
876
+ "required": [
877
+ "deliveryDestinationName"
878
+ ],
879
+ "members": {
880
+ "deliveryDestinationName": {}
881
+ }
882
+ },
883
+ "output": {
884
+ "type": "structure",
885
+ "members": {
886
+ "policy": {
887
+ "shape": "S4t"
888
+ }
889
+ }
890
+ }
891
+ },
892
+ "GetDeliverySource": {
893
+ "input": {
894
+ "type": "structure",
895
+ "required": [
896
+ "name"
897
+ ],
898
+ "members": {
899
+ "name": {}
900
+ }
901
+ },
902
+ "output": {
903
+ "type": "structure",
904
+ "members": {
905
+ "deliverySource": {
906
+ "shape": "S1z"
907
+ }
908
+ }
909
+ }
910
+ },
698
911
  "GetLogEvents": {
699
912
  "input": {
700
913
  "type": "structure",
@@ -858,7 +1071,7 @@
858
1071
  "type": "structure",
859
1072
  "members": {
860
1073
  "tags": {
861
- "shape": "Sf"
1074
+ "shape": "Sa"
862
1075
  }
863
1076
  }
864
1077
  }
@@ -879,7 +1092,7 @@
879
1092
  "type": "structure",
880
1093
  "members": {
881
1094
  "tags": {
882
- "shape": "Sf"
1095
+ "shape": "Sa"
883
1096
  }
884
1097
  },
885
1098
  "deprecated": true,
@@ -907,7 +1120,7 @@
907
1120
  "type": "structure",
908
1121
  "members": {
909
1122
  "accountPolicy": {
910
- "shape": "S16"
1123
+ "shape": "S1i"
911
1124
  }
912
1125
  }
913
1126
  }
@@ -935,6 +1148,80 @@
935
1148
  }
936
1149
  }
937
1150
  },
1151
+ "PutDeliveryDestination": {
1152
+ "input": {
1153
+ "type": "structure",
1154
+ "required": [
1155
+ "name",
1156
+ "deliveryDestinationConfiguration"
1157
+ ],
1158
+ "members": {
1159
+ "name": {},
1160
+ "outputFormat": {},
1161
+ "deliveryDestinationConfiguration": {
1162
+ "shape": "S1v"
1163
+ },
1164
+ "tags": {
1165
+ "shape": "Sa"
1166
+ }
1167
+ }
1168
+ },
1169
+ "output": {
1170
+ "type": "structure",
1171
+ "members": {
1172
+ "deliveryDestination": {
1173
+ "shape": "S1t"
1174
+ }
1175
+ }
1176
+ }
1177
+ },
1178
+ "PutDeliveryDestinationPolicy": {
1179
+ "input": {
1180
+ "type": "structure",
1181
+ "required": [
1182
+ "deliveryDestinationName",
1183
+ "deliveryDestinationPolicy"
1184
+ ],
1185
+ "members": {
1186
+ "deliveryDestinationName": {},
1187
+ "deliveryDestinationPolicy": {}
1188
+ }
1189
+ },
1190
+ "output": {
1191
+ "type": "structure",
1192
+ "members": {
1193
+ "policy": {
1194
+ "shape": "S4t"
1195
+ }
1196
+ }
1197
+ }
1198
+ },
1199
+ "PutDeliverySource": {
1200
+ "input": {
1201
+ "type": "structure",
1202
+ "required": [
1203
+ "name",
1204
+ "resourceArn",
1205
+ "logType"
1206
+ ],
1207
+ "members": {
1208
+ "name": {},
1209
+ "resourceArn": {},
1210
+ "logType": {},
1211
+ "tags": {
1212
+ "shape": "Sa"
1213
+ }
1214
+ }
1215
+ },
1216
+ "output": {
1217
+ "type": "structure",
1218
+ "members": {
1219
+ "deliverySource": {
1220
+ "shape": "S1z"
1221
+ }
1222
+ }
1223
+ }
1224
+ },
938
1225
  "PutDestination": {
939
1226
  "input": {
940
1227
  "type": "structure",
@@ -948,7 +1235,7 @@
948
1235
  "targetArn": {},
949
1236
  "roleArn": {},
950
1237
  "tags": {
951
- "shape": "Sf"
1238
+ "shape": "Sa"
952
1239
  }
953
1240
  }
954
1241
  },
@@ -956,7 +1243,7 @@
956
1243
  "type": "structure",
957
1244
  "members": {
958
1245
  "destination": {
959
- "shape": "S1e"
1246
+ "shape": "S26"
960
1247
  }
961
1248
  }
962
1249
  }
@@ -1042,7 +1329,7 @@
1042
1329
  "filterName": {},
1043
1330
  "filterPattern": {},
1044
1331
  "metricTransformations": {
1045
- "shape": "S2h"
1332
+ "shape": "S38"
1046
1333
  }
1047
1334
  }
1048
1335
  }
@@ -1058,7 +1345,7 @@
1058
1345
  "name": {},
1059
1346
  "queryDefinitionId": {},
1060
1347
  "logGroupNames": {
1061
- "shape": "S33"
1348
+ "shape": "S3u"
1062
1349
  },
1063
1350
  "queryString": {},
1064
1351
  "clientToken": {
@@ -1085,7 +1372,7 @@
1085
1372
  "type": "structure",
1086
1373
  "members": {
1087
1374
  "resourcePolicy": {
1088
- "shape": "S37"
1375
+ "shape": "S3y"
1089
1376
  }
1090
1377
  }
1091
1378
  }
@@ -1135,7 +1422,7 @@
1135
1422
  "members": {
1136
1423
  "logGroupName": {},
1137
1424
  "logGroupNames": {
1138
- "shape": "S33"
1425
+ "shape": "S3u"
1139
1426
  },
1140
1427
  "logGroupIdentifiers": {
1141
1428
  "type": "list",
@@ -1189,7 +1476,7 @@
1189
1476
  "members": {
1190
1477
  "logGroupName": {},
1191
1478
  "tags": {
1192
- "shape": "Sf"
1479
+ "shape": "Sa"
1193
1480
  }
1194
1481
  },
1195
1482
  "deprecated": true,
@@ -1208,7 +1495,7 @@
1208
1495
  "members": {
1209
1496
  "resourceArn": {},
1210
1497
  "tags": {
1211
- "shape": "Sf"
1498
+ "shape": "Sa"
1212
1499
  }
1213
1500
  }
1214
1501
  }
@@ -1289,16 +1576,29 @@
1289
1576
  }
1290
1577
  },
1291
1578
  "shapes": {
1292
- "Sf": {
1579
+ "Sa": {
1293
1580
  "type": "map",
1294
1581
  "key": {},
1295
1582
  "value": {}
1296
1583
  },
1297
- "S12": {
1584
+ "Se": {
1585
+ "type": "structure",
1586
+ "members": {
1587
+ "id": {},
1588
+ "arn": {},
1589
+ "deliverySourceName": {},
1590
+ "deliveryDestinationArn": {},
1591
+ "deliveryDestinationType": {},
1592
+ "tags": {
1593
+ "shape": "Sa"
1594
+ }
1595
+ }
1596
+ },
1597
+ "S1e": {
1298
1598
  "type": "list",
1299
1599
  "member": {}
1300
1600
  },
1301
- "S16": {
1601
+ "S1i": {
1302
1602
  "type": "structure",
1303
1603
  "members": {
1304
1604
  "policyName": {},
@@ -1311,7 +1611,47 @@
1311
1611
  "accountId": {}
1312
1612
  }
1313
1613
  },
1314
- "S1e": {
1614
+ "S1t": {
1615
+ "type": "structure",
1616
+ "members": {
1617
+ "name": {},
1618
+ "arn": {},
1619
+ "deliveryDestinationType": {},
1620
+ "outputFormat": {},
1621
+ "deliveryDestinationConfiguration": {
1622
+ "shape": "S1v"
1623
+ },
1624
+ "tags": {
1625
+ "shape": "Sa"
1626
+ }
1627
+ }
1628
+ },
1629
+ "S1v": {
1630
+ "type": "structure",
1631
+ "required": [
1632
+ "destinationResourceArn"
1633
+ ],
1634
+ "members": {
1635
+ "destinationResourceArn": {}
1636
+ }
1637
+ },
1638
+ "S1z": {
1639
+ "type": "structure",
1640
+ "members": {
1641
+ "name": {},
1642
+ "arn": {},
1643
+ "resourceArns": {
1644
+ "type": "list",
1645
+ "member": {}
1646
+ },
1647
+ "service": {},
1648
+ "logType": {},
1649
+ "tags": {
1650
+ "shape": "Sa"
1651
+ }
1652
+ }
1653
+ },
1654
+ "S26": {
1315
1655
  "type": "structure",
1316
1656
  "members": {
1317
1657
  "destinationName": {},
@@ -1324,7 +1664,7 @@
1324
1664
  }
1325
1665
  }
1326
1666
  },
1327
- "S2h": {
1667
+ "S38": {
1328
1668
  "type": "list",
1329
1669
  "member": {
1330
1670
  "type": "structure",
@@ -1349,11 +1689,11 @@
1349
1689
  }
1350
1690
  }
1351
1691
  },
1352
- "S33": {
1692
+ "S3u": {
1353
1693
  "type": "list",
1354
1694
  "member": {}
1355
1695
  },
1356
- "S37": {
1696
+ "S3y": {
1357
1697
  "type": "structure",
1358
1698
  "members": {
1359
1699
  "policyName": {},
@@ -1362,6 +1702,12 @@
1362
1702
  "type": "long"
1363
1703
  }
1364
1704
  }
1705
+ },
1706
+ "S4t": {
1707
+ "type": "structure",
1708
+ "members": {
1709
+ "deliveryDestinationPolicy": {}
1710
+ }
1365
1711
  }
1366
1712
  }
1367
1713
  }
@@ -1,5 +1,23 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeDeliveries": {
4
+ "input_token": "nextToken",
5
+ "limit_key": "limit",
6
+ "output_token": "nextToken",
7
+ "result_key": "deliveries"
8
+ },
9
+ "DescribeDeliveryDestinations": {
10
+ "input_token": "nextToken",
11
+ "limit_key": "limit",
12
+ "output_token": "nextToken",
13
+ "result_key": "deliveryDestinations"
14
+ },
15
+ "DescribeDeliverySources": {
16
+ "input_token": "nextToken",
17
+ "limit_key": "limit",
18
+ "output_token": "nextToken",
19
+ "result_key": "deliverySources"
20
+ },
3
21
  "DescribeDestinations": {
4
22
  "input_token": "nextToken",
5
23
  "limit_key": "limit",