@aws-solutions-constructs/core 1.125.0 → 1.129.0

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 (62) hide show
  1. package/.jsii +267 -109
  2. package/index.d.ts +2 -0
  3. package/index.js +3 -1
  4. package/lib/alb-defaults.d.ts +14 -0
  5. package/lib/alb-defaults.js +24 -0
  6. package/lib/alb-helper.d.ts +21 -0
  7. package/lib/alb-helper.js +106 -0
  8. package/lib/apigateway-helper.d.ts +4 -4
  9. package/lib/apigateway-helper.js +11 -5
  10. package/lib/cloudfront-distribution-defaults.d.ts +1 -1
  11. package/lib/cloudfront-distribution-defaults.js +10 -3
  12. package/lib/cloudfront-distribution-helper.d.ts +3 -3
  13. package/lib/cloudfront-distribution-helper.js +13 -10
  14. package/lib/glue-job-helper.d.ts +2 -2
  15. package/lib/glue-job-helper.js +2 -2
  16. package/lib/input-validation.d.ts +8 -0
  17. package/lib/input-validation.js +21 -2
  18. package/lib/s3-bucket-defaults.d.ts +1 -0
  19. package/lib/s3-bucket-defaults.js +11 -2
  20. package/lib/s3-bucket-helper.d.ts +11 -1
  21. package/lib/s3-bucket-helper.js +39 -36
  22. package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  23. package/node_modules/emoji-regex/README.md +73 -0
  24. package/node_modules/emoji-regex/es2015/index.js +6 -0
  25. package/node_modules/emoji-regex/es2015/text.js +6 -0
  26. package/node_modules/emoji-regex/index.d.ts +23 -0
  27. package/node_modules/emoji-regex/index.js +6 -0
  28. package/node_modules/emoji-regex/package.json +50 -0
  29. package/node_modules/emoji-regex/text.js +6 -0
  30. package/node_modules/signal-exit/index.js +30 -8
  31. package/node_modules/signal-exit/package.json +7 -5
  32. package/node_modules/wide-align/LICENSE +0 -0
  33. package/node_modules/wide-align/README.md +0 -0
  34. package/node_modules/wide-align/align.js +0 -0
  35. package/node_modules/wide-align/node_modules/ansi-regex/index.d.ts +37 -0
  36. package/node_modules/wide-align/node_modules/ansi-regex/index.js +4 -4
  37. package/node_modules/wide-align/node_modules/ansi-regex/package.json +53 -51
  38. package/node_modules/wide-align/node_modules/ansi-regex/readme.md +35 -3
  39. package/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  40. package/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.js +25 -21
  41. package/node_modules/wide-align/node_modules/is-fullwidth-code-point/license +4 -16
  42. package/node_modules/wide-align/node_modules/is-fullwidth-code-point/package.json +40 -43
  43. package/node_modules/wide-align/node_modules/is-fullwidth-code-point/readme.md +6 -6
  44. package/node_modules/wide-align/node_modules/string-width/index.d.ts +29 -0
  45. package/node_modules/wide-align/node_modules/string-width/index.js +16 -5
  46. package/node_modules/wide-align/node_modules/string-width/package.json +11 -10
  47. package/node_modules/wide-align/node_modules/string-width/readme.md +15 -7
  48. package/node_modules/wide-align/node_modules/strip-ansi/index.d.ts +17 -0
  49. package/node_modules/wide-align/node_modules/strip-ansi/index.js +1 -1
  50. package/node_modules/wide-align/node_modules/strip-ansi/package.json +52 -50
  51. package/node_modules/wide-align/node_modules/strip-ansi/readme.md +12 -5
  52. package/node_modules/wide-align/package.json +5 -5
  53. package/package.json +68 -66
  54. package/test/alb-helper.test.d.ts +13 -0
  55. package/test/alb-helper.test.js +321 -0
  56. package/test/apigateway-helper.test.js +8 -1
  57. package/test/cloudfront-distribution-s3-helper.test.js +4 -3
  58. package/test/eventbridge-helper.test.js +8 -4
  59. package/test/glue-job-helper.test.js +7 -3
  60. package/test/input-validation.test.js +54 -1
  61. package/test/s3-bucket-helper.test.js +17 -1
  62. package/test/s3-bucket.test.js +10 -1
package/.jsii CHANGED
@@ -15,38 +15,40 @@
15
15
  "npmlog": "^4.1.2"
16
16
  },
17
17
  "dependencies": {
18
- "@aws-cdk/aws-apigateway": "1.125.0",
19
- "@aws-cdk/aws-certificatemanager": "1.125.0",
20
- "@aws-cdk/aws-cloudfront": "1.125.0",
21
- "@aws-cdk/aws-cloudfront-origins": "1.125.0",
22
- "@aws-cdk/aws-cloudwatch": "1.125.0",
23
- "@aws-cdk/aws-cognito": "1.125.0",
24
- "@aws-cdk/aws-dynamodb": "1.125.0",
25
- "@aws-cdk/aws-ec2": "1.125.0",
26
- "@aws-cdk/aws-elasticsearch": "1.125.0",
27
- "@aws-cdk/aws-events": "1.125.0",
28
- "@aws-cdk/aws-glue": "1.125.0",
29
- "@aws-cdk/aws-iam": "1.125.0",
30
- "@aws-cdk/aws-iot": "1.125.0",
31
- "@aws-cdk/aws-kinesis": "1.125.0",
32
- "@aws-cdk/aws-kinesisanalytics": "1.125.0",
33
- "@aws-cdk/aws-kinesisfirehose": "1.125.0",
34
- "@aws-cdk/aws-kms": "1.125.0",
35
- "@aws-cdk/aws-lambda": "1.125.0",
36
- "@aws-cdk/aws-lambda-event-sources": "1.125.0",
37
- "@aws-cdk/aws-logs": "1.125.0",
38
- "@aws-cdk/aws-mediastore": "1.125.0",
39
- "@aws-cdk/aws-s3": "1.125.0",
40
- "@aws-cdk/aws-s3-assets": "1.125.0",
41
- "@aws-cdk/aws-s3-notifications": "1.125.0",
42
- "@aws-cdk/aws-sagemaker": "1.125.0",
43
- "@aws-cdk/aws-secretsmanager": "1.125.0",
44
- "@aws-cdk/aws-sns": "1.125.0",
45
- "@aws-cdk/aws-sqs": "1.125.0",
46
- "@aws-cdk/aws-ssm": "1.125.0",
47
- "@aws-cdk/aws-stepfunctions": "1.125.0",
48
- "@aws-cdk/aws-wafv2": "1.125.0",
49
- "@aws-cdk/core": "1.125.0"
18
+ "@aws-cdk/aws-apigateway": "1.129.0",
19
+ "@aws-cdk/aws-certificatemanager": "1.129.0",
20
+ "@aws-cdk/aws-cloudfront": "1.129.0",
21
+ "@aws-cdk/aws-cloudfront-origins": "1.129.0",
22
+ "@aws-cdk/aws-cloudwatch": "1.129.0",
23
+ "@aws-cdk/aws-cognito": "1.129.0",
24
+ "@aws-cdk/aws-dynamodb": "1.129.0",
25
+ "@aws-cdk/aws-ec2": "1.129.0",
26
+ "@aws-cdk/aws-elasticloadbalancingv2": "1.129.0",
27
+ "@aws-cdk/aws-elasticloadbalancingv2-targets": "1.129.0",
28
+ "@aws-cdk/aws-elasticsearch": "1.129.0",
29
+ "@aws-cdk/aws-events": "1.129.0",
30
+ "@aws-cdk/aws-glue": "1.129.0",
31
+ "@aws-cdk/aws-iam": "1.129.0",
32
+ "@aws-cdk/aws-iot": "1.129.0",
33
+ "@aws-cdk/aws-kinesis": "1.129.0",
34
+ "@aws-cdk/aws-kinesisanalytics": "1.129.0",
35
+ "@aws-cdk/aws-kinesisfirehose": "1.129.0",
36
+ "@aws-cdk/aws-kms": "1.129.0",
37
+ "@aws-cdk/aws-lambda": "1.129.0",
38
+ "@aws-cdk/aws-lambda-event-sources": "1.129.0",
39
+ "@aws-cdk/aws-logs": "1.129.0",
40
+ "@aws-cdk/aws-mediastore": "1.129.0",
41
+ "@aws-cdk/aws-s3": "1.129.0",
42
+ "@aws-cdk/aws-s3-assets": "1.129.0",
43
+ "@aws-cdk/aws-s3-notifications": "1.129.0",
44
+ "@aws-cdk/aws-sagemaker": "1.129.0",
45
+ "@aws-cdk/aws-secretsmanager": "1.129.0",
46
+ "@aws-cdk/aws-sns": "1.129.0",
47
+ "@aws-cdk/aws-sqs": "1.129.0",
48
+ "@aws-cdk/aws-ssm": "1.129.0",
49
+ "@aws-cdk/aws-stepfunctions": "1.129.0",
50
+ "@aws-cdk/aws-wafv2": "1.129.0",
51
+ "@aws-cdk/core": "1.129.0"
50
52
  },
51
53
  "dependencyClosure": {
52
54
  "@aws-cdk/assets": {
@@ -213,12 +215,7 @@
213
215
  },
214
216
  "@aws-cdk/aws-cloudfront": {
215
217
  "submodules": {
216
- "@aws-cdk/aws-cloudfront.experimental": {
217
- "locationInModule": {
218
- "filename": "lib/index.ts",
219
- "line": 12
220
- }
221
- }
218
+ "@aws-cdk/aws-cloudfront.experimental": {}
222
219
  },
223
220
  "targets": {
224
221
  "dotnet": {
@@ -543,6 +540,33 @@
543
540
  }
544
541
  }
545
542
  },
543
+ "@aws-cdk/aws-elasticloadbalancingv2-targets": {
544
+ "targets": {
545
+ "dotnet": {
546
+ "iconUrl": "https://raw.githubusercontent.com/aws/aws-cdk/master/logo/default-256-dark.png",
547
+ "namespace": "Amazon.CDK.AWS.ElasticLoadBalancingV2.Targets",
548
+ "packageId": "Amazon.CDK.AWS.ElasticLoadBalancingV2.Targets"
549
+ },
550
+ "java": {
551
+ "maven": {
552
+ "artifactId": "elasticloadbalancingv2-targets",
553
+ "groupId": "software.amazon.awscdk"
554
+ },
555
+ "package": "software.amazon.awscdk.services.elasticloadbalancingv2.targets"
556
+ },
557
+ "js": {
558
+ "npm": "@aws-cdk/aws-elasticloadbalancingv2-targets"
559
+ },
560
+ "python": {
561
+ "classifiers": [
562
+ "Framework :: AWS CDK",
563
+ "Framework :: AWS CDK :: 1"
564
+ ],
565
+ "distName": "aws-cdk.aws-elasticloadbalancingv2-targets",
566
+ "module": "aws_cdk.aws_elasticloadbalancingv2_targets"
567
+ }
568
+ }
569
+ },
546
570
  "@aws-cdk/aws-elasticsearch": {
547
571
  "targets": {
548
572
  "dotnet": {
@@ -1435,7 +1459,7 @@
1435
1459
  },
1436
1460
  "description": "Core CDK Construct for patterns library",
1437
1461
  "homepage": "https://github.com/awslabs/aws-solutions-constructs.git",
1438
- "jsiiVersion": "1.38.0 (build 717bef2)",
1462
+ "jsiiVersion": "1.46.0 (build cd08c55)",
1439
1463
  "license": "Apache-2.0",
1440
1464
  "metadata": {
1441
1465
  "jsii": {
@@ -1484,7 +1508,7 @@
1484
1508
  "kind": "interface",
1485
1509
  "locationInModule": {
1486
1510
  "filename": "lib/apigateway-helper.ts",
1487
- "line": 228
1511
+ "line": 237
1488
1512
  },
1489
1513
  "name": "AddProxyMethodToApiResourceInputParams",
1490
1514
  "properties": [
@@ -1493,7 +1517,7 @@
1493
1517
  "immutable": true,
1494
1518
  "locationInModule": {
1495
1519
  "filename": "lib/apigateway-helper.ts",
1496
- "line": 234
1520
+ "line": 243
1497
1521
  },
1498
1522
  "name": "apiGatewayRole",
1499
1523
  "type": {
@@ -1505,7 +1529,7 @@
1505
1529
  "immutable": true,
1506
1530
  "locationInModule": {
1507
1531
  "filename": "lib/apigateway-helper.ts",
1508
- "line": 233
1532
+ "line": 242
1509
1533
  },
1510
1534
  "name": "apiMethod",
1511
1535
  "type": {
@@ -1517,7 +1541,7 @@
1517
1541
  "immutable": true,
1518
1542
  "locationInModule": {
1519
1543
  "filename": "lib/apigateway-helper.ts",
1520
- "line": 232
1544
+ "line": 241
1521
1545
  },
1522
1546
  "name": "apiResource",
1523
1547
  "type": {
@@ -1529,7 +1553,7 @@
1529
1553
  "immutable": true,
1530
1554
  "locationInModule": {
1531
1555
  "filename": "lib/apigateway-helper.ts",
1532
- "line": 235
1556
+ "line": 244
1533
1557
  },
1534
1558
  "name": "requestTemplate",
1535
1559
  "type": {
@@ -1541,7 +1565,7 @@
1541
1565
  "immutable": true,
1542
1566
  "locationInModule": {
1543
1567
  "filename": "lib/apigateway-helper.ts",
1544
- "line": 229
1568
+ "line": 238
1545
1569
  },
1546
1570
  "name": "service",
1547
1571
  "type": {
@@ -1553,7 +1577,7 @@
1553
1577
  "immutable": true,
1554
1578
  "locationInModule": {
1555
1579
  "filename": "lib/apigateway-helper.ts",
1556
- "line": 230
1580
+ "line": 239
1557
1581
  },
1558
1582
  "name": "action",
1559
1583
  "optional": true,
@@ -1566,7 +1590,7 @@
1566
1590
  "immutable": true,
1567
1591
  "locationInModule": {
1568
1592
  "filename": "lib/apigateway-helper.ts",
1569
- "line": 239
1593
+ "line": 248
1570
1594
  },
1571
1595
  "name": "awsIntegrationProps",
1572
1596
  "optional": true,
@@ -1579,7 +1603,7 @@
1579
1603
  "immutable": true,
1580
1604
  "locationInModule": {
1581
1605
  "filename": "lib/apigateway-helper.ts",
1582
- "line": 236
1606
+ "line": 245
1583
1607
  },
1584
1608
  "name": "contentType",
1585
1609
  "optional": true,
@@ -1592,7 +1616,7 @@
1592
1616
  "immutable": true,
1593
1617
  "locationInModule": {
1594
1618
  "filename": "lib/apigateway-helper.ts",
1595
- "line": 240
1619
+ "line": 249
1596
1620
  },
1597
1621
  "name": "methodOptions",
1598
1622
  "optional": true,
@@ -1605,7 +1629,7 @@
1605
1629
  "immutable": true,
1606
1630
  "locationInModule": {
1607
1631
  "filename": "lib/apigateway-helper.ts",
1608
- "line": 231
1632
+ "line": 240
1609
1633
  },
1610
1634
  "name": "path",
1611
1635
  "optional": true,
@@ -1618,7 +1642,7 @@
1618
1642
  "immutable": true,
1619
1643
  "locationInModule": {
1620
1644
  "filename": "lib/apigateway-helper.ts",
1621
- "line": 238
1645
+ "line": 247
1622
1646
  },
1623
1647
  "name": "requestModel",
1624
1648
  "optional": true,
@@ -1636,7 +1660,7 @@
1636
1660
  "immutable": true,
1637
1661
  "locationInModule": {
1638
1662
  "filename": "lib/apigateway-helper.ts",
1639
- "line": 237
1663
+ "line": 246
1640
1664
  },
1641
1665
  "name": "requestValidator",
1642
1666
  "optional": true,
@@ -1644,7 +1668,8 @@
1644
1668
  "fqn": "@aws-cdk/aws-apigateway.IRequestValidator"
1645
1669
  }
1646
1670
  }
1647
- ]
1671
+ ],
1672
+ "symbolId": "lib/apigateway-helper:AddProxyMethodToApiResourceInputParams"
1648
1673
  },
1649
1674
  "@aws-solutions-constructs/core.BuildDeadLetterQueueProps": {
1650
1675
  "assembly": "@aws-solutions-constructs/core",
@@ -1725,7 +1750,8 @@
1725
1750
  "primitive": "number"
1726
1751
  }
1727
1752
  }
1728
- ]
1753
+ ],
1754
+ "symbolId": "lib/sqs-helper:BuildDeadLetterQueueProps"
1729
1755
  },
1730
1756
  "@aws-solutions-constructs/core.BuildDynamoDBTableProps": {
1731
1757
  "assembly": "@aws-solutions-constructs/core",
@@ -1773,7 +1799,8 @@
1773
1799
  "fqn": "@aws-cdk/aws-dynamodb.Table"
1774
1800
  }
1775
1801
  }
1776
- ]
1802
+ ],
1803
+ "symbolId": "lib/dynamodb-table-helper:BuildDynamoDBTableProps"
1777
1804
  },
1778
1805
  "@aws-solutions-constructs/core.BuildDynamoDBTableWithStreamProps": {
1779
1806
  "assembly": "@aws-solutions-constructs/core",
@@ -1821,7 +1848,8 @@
1821
1848
  "fqn": "@aws-cdk/aws-dynamodb.ITable"
1822
1849
  }
1823
1850
  }
1824
- ]
1851
+ ],
1852
+ "symbolId": "lib/dynamodb-table-helper:BuildDynamoDBTableWithStreamProps"
1825
1853
  },
1826
1854
  "@aws-solutions-constructs/core.BuildEventBusProps": {
1827
1855
  "assembly": "@aws-solutions-constructs/core",
@@ -1868,7 +1896,8 @@
1868
1896
  "fqn": "@aws-cdk/aws-events.IEventBus"
1869
1897
  }
1870
1898
  }
1871
- ]
1899
+ ],
1900
+ "symbolId": "lib/eventbridge-helper:BuildEventBusProps"
1872
1901
  },
1873
1902
  "@aws-solutions-constructs/core.BuildGlueJobProps": {
1874
1903
  "assembly": "@aws-solutions-constructs/core",
@@ -1959,7 +1988,8 @@
1959
1988
  "fqn": "@aws-solutions-constructs/core.SinkDataStoreProps"
1960
1989
  }
1961
1990
  }
1962
- ]
1991
+ ],
1992
+ "symbolId": "lib/glue-job-helper:BuildGlueJobProps"
1963
1993
  },
1964
1994
  "@aws-solutions-constructs/core.BuildKinesisAnalyticsAppProps": {
1965
1995
  "assembly": "@aws-solutions-constructs/core",
@@ -2005,7 +2035,8 @@
2005
2035
  "primitive": "any"
2006
2036
  }
2007
2037
  }
2008
- ]
2038
+ ],
2039
+ "symbolId": "lib/kinesis-analytics-helper:BuildKinesisAnalyticsAppProps"
2009
2040
  },
2010
2041
  "@aws-solutions-constructs/core.BuildKinesisStreamProps": {
2011
2042
  "assembly": "@aws-solutions-constructs/core",
@@ -2052,7 +2083,8 @@
2052
2083
  "fqn": "@aws-cdk/aws-kinesis.StreamProps"
2053
2084
  }
2054
2085
  }
2055
- ]
2086
+ ],
2087
+ "symbolId": "lib/kinesis-streams-helper:BuildKinesisStreamProps"
2056
2088
  },
2057
2089
  "@aws-solutions-constructs/core.BuildLambdaFunctionProps": {
2058
2090
  "assembly": "@aws-solutions-constructs/core",
@@ -2116,7 +2148,8 @@
2116
2148
  "fqn": "@aws-cdk/aws-ec2.IVpc"
2117
2149
  }
2118
2150
  }
2119
- ]
2151
+ ],
2152
+ "symbolId": "lib/lambda-helper:BuildLambdaFunctionProps"
2120
2153
  },
2121
2154
  "@aws-solutions-constructs/core.BuildQueueProps": {
2122
2155
  "assembly": "@aws-solutions-constructs/core",
@@ -2232,7 +2265,8 @@
2232
2265
  "fqn": "@aws-cdk/aws-sqs.QueueProps"
2233
2266
  }
2234
2267
  }
2235
- ]
2268
+ ],
2269
+ "symbolId": "lib/sqs-helper:BuildQueueProps"
2236
2270
  },
2237
2271
  "@aws-solutions-constructs/core.BuildS3BucketProps": {
2238
2272
  "assembly": "@aws-solutions-constructs/core",
@@ -2278,8 +2312,27 @@
2278
2312
  "type": {
2279
2313
  "fqn": "@aws-cdk/aws-s3.BucketProps"
2280
2314
  }
2315
+ },
2316
+ {
2317
+ "abstract": true,
2318
+ "docs": {
2319
+ "default": "- true",
2320
+ "remarks": "Uses an S3 bucket with associated storage costs.\nEnabling Access Logging is a best practice.",
2321
+ "summary": "Whether to turn on Access Logs for S3."
2322
+ },
2323
+ "immutable": true,
2324
+ "locationInModule": {
2325
+ "filename": "lib/s3-bucket-helper.ts",
2326
+ "line": 45
2327
+ },
2328
+ "name": "logS3AccessLogs",
2329
+ "optional": true,
2330
+ "type": {
2331
+ "primitive": "boolean"
2332
+ }
2281
2333
  }
2282
- ]
2334
+ ],
2335
+ "symbolId": "lib/s3-bucket-helper:BuildS3BucketProps"
2283
2336
  },
2284
2337
  "@aws-solutions-constructs/core.BuildSagemakerEndpointProps": {
2285
2338
  "assembly": "@aws-solutions-constructs/core",
@@ -2377,7 +2430,8 @@
2377
2430
  "fqn": "@aws-cdk/aws-ec2.IVpc"
2378
2431
  }
2379
2432
  }
2380
- ]
2433
+ ],
2434
+ "symbolId": "lib/sagemaker-helper:BuildSagemakerEndpointProps"
2381
2435
  },
2382
2436
  "@aws-solutions-constructs/core.BuildSagemakerNotebookProps": {
2383
2437
  "assembly": "@aws-solutions-constructs/core",
@@ -2458,7 +2512,8 @@
2458
2512
  "primitive": "any"
2459
2513
  }
2460
2514
  }
2461
- ]
2515
+ ],
2516
+ "symbolId": "lib/sagemaker-helper:BuildSagemakerNotebookProps"
2462
2517
  },
2463
2518
  "@aws-solutions-constructs/core.BuildTopicProps": {
2464
2519
  "assembly": "@aws-solutions-constructs/core",
@@ -2557,7 +2612,8 @@
2557
2612
  "fqn": "@aws-cdk/aws-sns.TopicProps"
2558
2613
  }
2559
2614
  }
2560
- ]
2615
+ ],
2616
+ "symbolId": "lib/sns-helper:BuildTopicProps"
2561
2617
  },
2562
2618
  "@aws-solutions-constructs/core.BuildVpcProps": {
2563
2619
  "assembly": "@aws-solutions-constructs/core",
@@ -2633,7 +2689,8 @@
2633
2689
  "fqn": "@aws-cdk/aws-ec2.VpcProps"
2634
2690
  }
2635
2691
  }
2636
- ]
2692
+ ],
2693
+ "symbolId": "lib/vpc-helper:BuildVpcProps"
2637
2694
  },
2638
2695
  "@aws-solutions-constructs/core.BuildWebaclProps": {
2639
2696
  "assembly": "@aws-solutions-constructs/core",
@@ -2678,7 +2735,8 @@
2678
2735
  "fqn": "@aws-cdk/aws-wafv2.CfnWebACLProps"
2679
2736
  }
2680
2737
  }
2681
- ]
2738
+ ],
2739
+ "symbolId": "lib/waf-helper:BuildWebaclProps"
2682
2740
  },
2683
2741
  "@aws-solutions-constructs/core.CfnDomainOptions": {
2684
2742
  "assembly": "@aws-solutions-constructs/core",
@@ -2740,7 +2798,8 @@
2740
2798
  "primitive": "string"
2741
2799
  }
2742
2800
  }
2743
- ]
2801
+ ],
2802
+ "symbolId": "lib/elasticsearch-defaults:CfnDomainOptions"
2744
2803
  },
2745
2804
  "@aws-solutions-constructs/core.CfnNagSuppressRule": {
2746
2805
  "assembly": "@aws-solutions-constructs/core",
@@ -2783,7 +2842,8 @@
2783
2842
  "primitive": "string"
2784
2843
  }
2785
2844
  }
2786
- ]
2845
+ ],
2846
+ "symbolId": "lib/utils:CfnNagSuppressRule"
2787
2847
  },
2788
2848
  "@aws-solutions-constructs/core.CognitoOptions": {
2789
2849
  "assembly": "@aws-solutions-constructs/core",
@@ -2832,7 +2892,8 @@
2832
2892
  "fqn": "@aws-cdk/aws-cognito.UserPoolClient"
2833
2893
  }
2834
2894
  }
2835
- ]
2895
+ ],
2896
+ "symbolId": "lib/cognito-helper:CognitoOptions"
2836
2897
  },
2837
2898
  "@aws-solutions-constructs/core.EventSourceProps": {
2838
2899
  "assembly": "@aws-solutions-constructs/core",
@@ -2884,7 +2945,8 @@
2884
2945
  "fqn": "@aws-cdk/aws-sqs.QueueProps"
2885
2946
  }
2886
2947
  }
2887
- ]
2948
+ ],
2949
+ "symbolId": "lib/lambda-event-source-mapping-defaults:EventSourceProps"
2888
2950
  },
2889
2951
  "@aws-solutions-constructs/core.SecurityGroupRuleDefinition": {
2890
2952
  "assembly": "@aws-solutions-constructs/core",
@@ -2947,7 +3009,8 @@
2947
3009
  "primitive": "boolean"
2948
3010
  }
2949
3011
  }
2950
- ]
3012
+ ],
3013
+ "symbolId": "lib/security-group-helper:SecurityGroupRuleDefinition"
2951
3014
  },
2952
3015
  "@aws-solutions-constructs/core.ServiceEndpointTypes": {
2953
3016
  "assembly": "@aws-solutions-constructs/core",
@@ -2986,7 +3049,8 @@
2986
3049
  "name": "EVENTS"
2987
3050
  }
2988
3051
  ],
2989
- "name": "ServiceEndpointTypes"
3052
+ "name": "ServiceEndpointTypes",
3053
+ "symbolId": "lib/vpc-helper:ServiceEndpointTypes"
2990
3054
  },
2991
3055
  "@aws-solutions-constructs/core.SinkDataStoreProps": {
2992
3056
  "assembly": "@aws-solutions-constructs/core",
@@ -3051,7 +3115,8 @@
3051
3115
  "fqn": "@aws-cdk/aws-s3.BucketProps"
3052
3116
  }
3053
3117
  }
3054
- ]
3118
+ ],
3119
+ "symbolId": "lib/glue-job-helper:SinkDataStoreProps"
3055
3120
  },
3056
3121
  "@aws-solutions-constructs/core.SinkStoreType": {
3057
3122
  "assembly": "@aws-solutions-constructs/core",
@@ -3070,7 +3135,8 @@
3070
3135
  "name": "S3"
3071
3136
  }
3072
3137
  ],
3073
- "name": "SinkStoreType"
3138
+ "name": "SinkStoreType",
3139
+ "symbolId": "lib/glue-job-helper:SinkStoreType.S3"
3074
3140
  },
3075
3141
  "@aws-solutions-constructs/core.VerifiedProps": {
3076
3142
  "assembly": "@aws-solutions-constructs/core",
@@ -3079,7 +3145,7 @@
3079
3145
  "kind": "interface",
3080
3146
  "locationInModule": {
3081
3147
  "filename": "lib/input-validation.ts",
3082
- "line": 27
3148
+ "line": 28
3083
3149
  },
3084
3150
  "name": "VerifiedProps",
3085
3151
  "properties": [
@@ -3088,7 +3154,20 @@
3088
3154
  "immutable": true,
3089
3155
  "locationInModule": {
3090
3156
  "filename": "lib/input-validation.ts",
3091
- "line": 48
3157
+ "line": 74
3158
+ },
3159
+ "name": "albLoggingBucketProps",
3160
+ "optional": true,
3161
+ "type": {
3162
+ "fqn": "@aws-cdk/aws-s3.BucketProps"
3163
+ }
3164
+ },
3165
+ {
3166
+ "abstract": true,
3167
+ "immutable": true,
3168
+ "locationInModule": {
3169
+ "filename": "lib/input-validation.ts",
3170
+ "line": 49
3092
3171
  },
3093
3172
  "name": "bucketProps",
3094
3173
  "optional": true,
@@ -3101,7 +3180,7 @@
3101
3180
  "immutable": true,
3102
3181
  "locationInModule": {
3103
3182
  "filename": "lib/input-validation.ts",
3104
- "line": 41
3183
+ "line": 42
3105
3184
  },
3106
3185
  "name": "deadLetterQueueProps",
3107
3186
  "optional": true,
@@ -3114,7 +3193,7 @@
3114
3193
  "immutable": true,
3115
3194
  "locationInModule": {
3116
3195
  "filename": "lib/input-validation.ts",
3117
- "line": 40
3196
+ "line": 41
3118
3197
  },
3119
3198
  "name": "deployDeadLetterQueue",
3120
3199
  "optional": true,
@@ -3127,7 +3206,7 @@
3127
3206
  "immutable": true,
3128
3207
  "locationInModule": {
3129
3208
  "filename": "lib/input-validation.ts",
3130
- "line": 64
3209
+ "line": 65
3131
3210
  },
3132
3211
  "name": "deployVpc",
3133
3212
  "optional": true,
@@ -3140,7 +3219,7 @@
3140
3219
  "immutable": true,
3141
3220
  "locationInModule": {
3142
3221
  "filename": "lib/input-validation.ts",
3143
- "line": 28
3222
+ "line": 29
3144
3223
  },
3145
3224
  "name": "dynamoTableProps",
3146
3225
  "optional": true,
@@ -3153,7 +3232,7 @@
3153
3232
  "immutable": true,
3154
3233
  "locationInModule": {
3155
3234
  "filename": "lib/input-validation.ts",
3156
- "line": 66
3235
+ "line": 67
3157
3236
  },
3158
3237
  "name": "encryptionKey",
3159
3238
  "optional": true,
@@ -3166,7 +3245,7 @@
3166
3245
  "immutable": true,
3167
3246
  "locationInModule": {
3168
3247
  "filename": "lib/input-validation.ts",
3169
- "line": 67
3248
+ "line": 68
3170
3249
  },
3171
3250
  "name": "encryptionKeyProps",
3172
3251
  "optional": true,
@@ -3179,7 +3258,7 @@
3179
3258
  "immutable": true,
3180
3259
  "locationInModule": {
3181
3260
  "filename": "lib/input-validation.ts",
3182
- "line": 57
3261
+ "line": 58
3183
3262
  },
3184
3263
  "name": "endpointProps",
3185
3264
  "optional": true,
@@ -3192,7 +3271,7 @@
3192
3271
  "immutable": true,
3193
3272
  "locationInModule": {
3194
3273
  "filename": "lib/input-validation.ts",
3195
- "line": 47
3274
+ "line": 48
3196
3275
  },
3197
3276
  "name": "existingBucketInterface",
3198
3277
  "optional": true,
@@ -3205,7 +3284,7 @@
3205
3284
  "immutable": true,
3206
3285
  "locationInModule": {
3207
3286
  "filename": "lib/input-validation.ts",
3208
- "line": 46
3287
+ "line": 47
3209
3288
  },
3210
3289
  "name": "existingBucketObj",
3211
3290
  "optional": true,
@@ -3218,7 +3297,7 @@
3218
3297
  "immutable": true,
3219
3298
  "locationInModule": {
3220
3299
  "filename": "lib/input-validation.ts",
3221
- "line": 54
3300
+ "line": 55
3222
3301
  },
3223
3302
  "name": "existingGlueJob",
3224
3303
  "optional": true,
@@ -3231,7 +3310,7 @@
3231
3310
  "immutable": true,
3232
3311
  "locationInModule": {
3233
3312
  "filename": "lib/input-validation.ts",
3234
- "line": 35
3313
+ "line": 36
3235
3314
  },
3236
3315
  "name": "existingLambdaObj",
3237
3316
  "optional": true,
@@ -3244,7 +3323,33 @@
3244
3323
  "immutable": true,
3245
3324
  "locationInModule": {
3246
3325
  "filename": "lib/input-validation.ts",
3247
- "line": 43
3326
+ "line": 71
3327
+ },
3328
+ "name": "existingLoadBalancerObj",
3329
+ "optional": true,
3330
+ "type": {
3331
+ "fqn": "@aws-cdk/aws-elasticloadbalancingv2.ApplicationLoadBalancer"
3332
+ }
3333
+ },
3334
+ {
3335
+ "abstract": true,
3336
+ "immutable": true,
3337
+ "locationInModule": {
3338
+ "filename": "lib/input-validation.ts",
3339
+ "line": 76
3340
+ },
3341
+ "name": "existingLoggingBucketObj",
3342
+ "optional": true,
3343
+ "type": {
3344
+ "fqn": "@aws-cdk/aws-s3.IBucket"
3345
+ }
3346
+ },
3347
+ {
3348
+ "abstract": true,
3349
+ "immutable": true,
3350
+ "locationInModule": {
3351
+ "filename": "lib/input-validation.ts",
3352
+ "line": 44
3248
3353
  },
3249
3354
  "name": "existingMediaStoreContainerObj",
3250
3355
  "optional": true,
@@ -3257,7 +3362,7 @@
3257
3362
  "immutable": true,
3258
3363
  "locationInModule": {
3259
3364
  "filename": "lib/input-validation.ts",
3260
- "line": 38
3365
+ "line": 39
3261
3366
  },
3262
3367
  "name": "existingQueueObj",
3263
3368
  "optional": true,
@@ -3270,7 +3375,7 @@
3270
3375
  "immutable": true,
3271
3376
  "locationInModule": {
3272
3377
  "filename": "lib/input-validation.ts",
3273
- "line": 56
3378
+ "line": 57
3274
3379
  },
3275
3380
  "name": "existingSagemakerEndpointObj",
3276
3381
  "optional": true,
@@ -3283,7 +3388,7 @@
3283
3388
  "immutable": true,
3284
3389
  "locationInModule": {
3285
3390
  "filename": "lib/input-validation.ts",
3286
- "line": 59
3391
+ "line": 60
3287
3392
  },
3288
3393
  "name": "existingSecretObj",
3289
3394
  "optional": true,
@@ -3296,7 +3401,7 @@
3296
3401
  "immutable": true,
3297
3402
  "locationInModule": {
3298
3403
  "filename": "lib/input-validation.ts",
3299
- "line": 32
3404
+ "line": 33
3300
3405
  },
3301
3406
  "name": "existingStreamObj",
3302
3407
  "optional": true,
@@ -3309,7 +3414,7 @@
3309
3414
  "immutable": true,
3310
3415
  "locationInModule": {
3311
3416
  "filename": "lib/input-validation.ts",
3312
- "line": 30
3417
+ "line": 31
3313
3418
  },
3314
3419
  "name": "existingTableInterface",
3315
3420
  "optional": true,
@@ -3322,7 +3427,7 @@
3322
3427
  "immutable": true,
3323
3428
  "locationInModule": {
3324
3429
  "filename": "lib/input-validation.ts",
3325
- "line": 29
3430
+ "line": 30
3326
3431
  },
3327
3432
  "name": "existingTableObj",
3328
3433
  "optional": true,
@@ -3335,7 +3440,7 @@
3335
3440
  "immutable": true,
3336
3441
  "locationInModule": {
3337
3442
  "filename": "lib/input-validation.ts",
3338
- "line": 51
3443
+ "line": 52
3339
3444
  },
3340
3445
  "name": "existingTopicObj",
3341
3446
  "optional": true,
@@ -3348,7 +3453,7 @@
3348
3453
  "immutable": true,
3349
3454
  "locationInModule": {
3350
3455
  "filename": "lib/input-validation.ts",
3351
- "line": 62
3456
+ "line": 63
3352
3457
  },
3353
3458
  "name": "existingVpc",
3354
3459
  "optional": true,
@@ -3361,7 +3466,7 @@
3361
3466
  "immutable": true,
3362
3467
  "locationInModule": {
3363
3468
  "filename": "lib/input-validation.ts",
3364
- "line": 53
3469
+ "line": 54
3365
3470
  },
3366
3471
  "name": "glueJobProps",
3367
3472
  "optional": true,
@@ -3374,7 +3479,7 @@
3374
3479
  "immutable": true,
3375
3480
  "locationInModule": {
3376
3481
  "filename": "lib/input-validation.ts",
3377
- "line": 33
3482
+ "line": 34
3378
3483
  },
3379
3484
  "name": "kinesisStreamProps",
3380
3485
  "optional": true,
@@ -3387,7 +3492,7 @@
3387
3492
  "immutable": true,
3388
3493
  "locationInModule": {
3389
3494
  "filename": "lib/input-validation.ts",
3390
- "line": 36
3495
+ "line": 37
3391
3496
  },
3392
3497
  "name": "lambdaFunctionProps",
3393
3498
  "optional": true,
@@ -3400,7 +3505,59 @@
3400
3505
  "immutable": true,
3401
3506
  "locationInModule": {
3402
3507
  "filename": "lib/input-validation.ts",
3403
- "line": 44
3508
+ "line": 70
3509
+ },
3510
+ "name": "loadBalancerProps",
3511
+ "optional": true,
3512
+ "type": {
3513
+ "fqn": "@aws-cdk/aws-elasticloadbalancingv2.ApplicationLoadBalancerProps"
3514
+ }
3515
+ },
3516
+ {
3517
+ "abstract": true,
3518
+ "immutable": true,
3519
+ "locationInModule": {
3520
+ "filename": "lib/input-validation.ts",
3521
+ "line": 73
3522
+ },
3523
+ "name": "logAlbAccessLogs",
3524
+ "optional": true,
3525
+ "type": {
3526
+ "primitive": "boolean"
3527
+ }
3528
+ },
3529
+ {
3530
+ "abstract": true,
3531
+ "immutable": true,
3532
+ "locationInModule": {
3533
+ "filename": "lib/input-validation.ts",
3534
+ "line": 77
3535
+ },
3536
+ "name": "loggingBucketProps",
3537
+ "optional": true,
3538
+ "type": {
3539
+ "fqn": "@aws-cdk/aws-s3.BucketProps"
3540
+ }
3541
+ },
3542
+ {
3543
+ "abstract": true,
3544
+ "immutable": true,
3545
+ "locationInModule": {
3546
+ "filename": "lib/input-validation.ts",
3547
+ "line": 78
3548
+ },
3549
+ "name": "logS3AccessLogs",
3550
+ "optional": true,
3551
+ "type": {
3552
+ "primitive": "boolean"
3553
+ }
3554
+ },
3555
+ {
3556
+ "abstract": true,
3557
+ "immutable": true,
3558
+ "locationInModule": {
3559
+ "filename": "lib/input-validation.ts",
3560
+ "line": 45
3404
3561
  },
3405
3562
  "name": "mediaStoreContainerProps",
3406
3563
  "optional": true,
@@ -3413,7 +3570,7 @@
3413
3570
  "immutable": true,
3414
3571
  "locationInModule": {
3415
3572
  "filename": "lib/input-validation.ts",
3416
- "line": 39
3573
+ "line": 40
3417
3574
  },
3418
3575
  "name": "queueProps",
3419
3576
  "optional": true,
@@ -3426,7 +3583,7 @@
3426
3583
  "immutable": true,
3427
3584
  "locationInModule": {
3428
3585
  "filename": "lib/input-validation.ts",
3429
- "line": 60
3586
+ "line": 61
3430
3587
  },
3431
3588
  "name": "secretProps",
3432
3589
  "optional": true,
@@ -3439,7 +3596,7 @@
3439
3596
  "immutable": true,
3440
3597
  "locationInModule": {
3441
3598
  "filename": "lib/input-validation.ts",
3442
- "line": 50
3599
+ "line": 51
3443
3600
  },
3444
3601
  "name": "topicProps",
3445
3602
  "optional": true,
@@ -3452,7 +3609,7 @@
3452
3609
  "immutable": true,
3453
3610
  "locationInModule": {
3454
3611
  "filename": "lib/input-validation.ts",
3455
- "line": 63
3612
+ "line": 64
3456
3613
  },
3457
3614
  "name": "vpcProps",
3458
3615
  "optional": true,
@@ -3460,9 +3617,10 @@
3460
3617
  "fqn": "@aws-cdk/aws-ec2.VpcProps"
3461
3618
  }
3462
3619
  }
3463
- ]
3620
+ ],
3621
+ "symbolId": "lib/input-validation:VerifiedProps"
3464
3622
  }
3465
3623
  },
3466
- "version": "1.125.0",
3467
- "fingerprint": "q0dkEWSNWtTRBn5Qv6r6G6J6V0tQNP1Onh65IHNm2fg="
3624
+ "version": "1.129.0",
3625
+ "fingerprint": "FOVTP96KTjQNMJPzFWTExGJV8dV/NEDlGT+2K9uIlgs="
3468
3626
  }