@aws-solutions-constructs/core 1.123.0 → 1.127.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.
- package/.jsii +286 -111
- package/index.d.ts +2 -0
- package/index.js +3 -1
- package/lib/alb-defaults.d.ts +14 -0
- package/lib/alb-defaults.js +24 -0
- package/lib/alb-helper.d.ts +21 -0
- package/lib/alb-helper.js +106 -0
- package/lib/apigateway-helper.d.ts +4 -4
- package/lib/apigateway-helper.js +11 -5
- package/lib/cloudfront-distribution-defaults.d.ts +1 -1
- package/lib/cloudfront-distribution-defaults.js +10 -3
- package/lib/cloudfront-distribution-helper.d.ts +3 -3
- package/lib/cloudfront-distribution-helper.js +14 -10
- package/lib/glue-job-helper.d.ts +2 -2
- package/lib/glue-job-helper.js +2 -2
- package/lib/input-validation.d.ts +8 -0
- package/lib/input-validation.js +21 -2
- package/lib/s3-bucket-defaults.d.ts +1 -0
- package/lib/s3-bucket-defaults.js +11 -2
- package/lib/s3-bucket-helper.d.ts +18 -3
- package/lib/s3-bucket-helper.js +41 -40
- package/lib/vpc-defaults.js +2 -2
- package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/signal-exit/index.js +31 -9
- package/node_modules/signal-exit/package.json +7 -5
- package/node_modules/wide-align/LICENSE +0 -0
- package/node_modules/wide-align/README.md +0 -0
- package/node_modules/wide-align/align.js +0 -0
- package/node_modules/wide-align/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/wide-align/node_modules/ansi-regex/index.js +4 -4
- package/node_modules/wide-align/node_modules/ansi-regex/package.json +53 -51
- package/node_modules/wide-align/node_modules/ansi-regex/readme.md +35 -3
- package/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.js +25 -21
- package/node_modules/wide-align/node_modules/is-fullwidth-code-point/license +4 -16
- package/node_modules/wide-align/node_modules/is-fullwidth-code-point/package.json +40 -43
- package/node_modules/wide-align/node_modules/is-fullwidth-code-point/readme.md +6 -6
- package/node_modules/wide-align/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/wide-align/node_modules/string-width/index.js +16 -5
- package/node_modules/wide-align/node_modules/string-width/package.json +11 -10
- package/node_modules/wide-align/node_modules/string-width/readme.md +15 -7
- package/node_modules/wide-align/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/wide-align/node_modules/strip-ansi/index.js +1 -1
- package/node_modules/wide-align/node_modules/strip-ansi/package.json +52 -50
- package/node_modules/wide-align/node_modules/strip-ansi/readme.md +12 -5
- package/node_modules/wide-align/package.json +5 -5
- package/package.json +68 -66
- package/test/alb-helper.test.d.ts +13 -0
- package/test/alb-helper.test.js +321 -0
- package/test/apigateway-helper.test.js +8 -1
- package/test/cloudfront-distribution-s3-helper.test.js +21 -78
- package/test/glue-job-helper.test.js +7 -3
- package/test/input-validation.test.js +54 -1
- package/test/s3-bucket-helper.test.js +64 -1
- package/test/s3-bucket.test.js +10 -1
- package/test/vpc-helper.test.js +2 -2
- package/test/waf-helper.test.d.ts +13 -0
- package/test/waf-helper.test.js +252 -0
package/.jsii
CHANGED
|
@@ -15,38 +15,40 @@
|
|
|
15
15
|
"npmlog": "^4.1.2"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@aws-cdk/aws-apigateway": "1.
|
|
19
|
-
"@aws-cdk/aws-certificatemanager": "1.
|
|
20
|
-
"@aws-cdk/aws-cloudfront": "1.
|
|
21
|
-
"@aws-cdk/aws-cloudfront-origins": "1.
|
|
22
|
-
"@aws-cdk/aws-cloudwatch": "1.
|
|
23
|
-
"@aws-cdk/aws-cognito": "1.
|
|
24
|
-
"@aws-cdk/aws-dynamodb": "1.
|
|
25
|
-
"@aws-cdk/aws-ec2": "1.
|
|
26
|
-
"@aws-cdk/aws-
|
|
27
|
-
"@aws-cdk/aws-
|
|
28
|
-
"@aws-cdk/aws-
|
|
29
|
-
"@aws-cdk/aws-
|
|
30
|
-
"@aws-cdk/aws-
|
|
31
|
-
"@aws-cdk/aws-
|
|
32
|
-
"@aws-cdk/aws-
|
|
33
|
-
"@aws-cdk/aws-
|
|
34
|
-
"@aws-cdk/aws-
|
|
35
|
-
"@aws-cdk/aws-
|
|
36
|
-
"@aws-cdk/aws-
|
|
37
|
-
"@aws-cdk/aws-
|
|
38
|
-
"@aws-cdk/aws-
|
|
39
|
-
"@aws-cdk/aws-
|
|
40
|
-
"@aws-cdk/aws-
|
|
41
|
-
"@aws-cdk/aws-s3
|
|
42
|
-
"@aws-cdk/aws-
|
|
43
|
-
"@aws-cdk/aws-
|
|
44
|
-
"@aws-cdk/aws-
|
|
45
|
-
"@aws-cdk/aws-
|
|
46
|
-
"@aws-cdk/aws-
|
|
47
|
-
"@aws-cdk/aws-
|
|
48
|
-
"@aws-cdk/aws-
|
|
49
|
-
"@aws-cdk/
|
|
18
|
+
"@aws-cdk/aws-apigateway": "1.127.0",
|
|
19
|
+
"@aws-cdk/aws-certificatemanager": "1.127.0",
|
|
20
|
+
"@aws-cdk/aws-cloudfront": "1.127.0",
|
|
21
|
+
"@aws-cdk/aws-cloudfront-origins": "1.127.0",
|
|
22
|
+
"@aws-cdk/aws-cloudwatch": "1.127.0",
|
|
23
|
+
"@aws-cdk/aws-cognito": "1.127.0",
|
|
24
|
+
"@aws-cdk/aws-dynamodb": "1.127.0",
|
|
25
|
+
"@aws-cdk/aws-ec2": "1.127.0",
|
|
26
|
+
"@aws-cdk/aws-elasticloadbalancingv2": "1.127.0",
|
|
27
|
+
"@aws-cdk/aws-elasticloadbalancingv2-targets": "1.127.0",
|
|
28
|
+
"@aws-cdk/aws-elasticsearch": "1.127.0",
|
|
29
|
+
"@aws-cdk/aws-events": "1.127.0",
|
|
30
|
+
"@aws-cdk/aws-glue": "1.127.0",
|
|
31
|
+
"@aws-cdk/aws-iam": "1.127.0",
|
|
32
|
+
"@aws-cdk/aws-iot": "1.127.0",
|
|
33
|
+
"@aws-cdk/aws-kinesis": "1.127.0",
|
|
34
|
+
"@aws-cdk/aws-kinesisanalytics": "1.127.0",
|
|
35
|
+
"@aws-cdk/aws-kinesisfirehose": "1.127.0",
|
|
36
|
+
"@aws-cdk/aws-kms": "1.127.0",
|
|
37
|
+
"@aws-cdk/aws-lambda": "1.127.0",
|
|
38
|
+
"@aws-cdk/aws-lambda-event-sources": "1.127.0",
|
|
39
|
+
"@aws-cdk/aws-logs": "1.127.0",
|
|
40
|
+
"@aws-cdk/aws-mediastore": "1.127.0",
|
|
41
|
+
"@aws-cdk/aws-s3": "1.127.0",
|
|
42
|
+
"@aws-cdk/aws-s3-assets": "1.127.0",
|
|
43
|
+
"@aws-cdk/aws-s3-notifications": "1.127.0",
|
|
44
|
+
"@aws-cdk/aws-sagemaker": "1.127.0",
|
|
45
|
+
"@aws-cdk/aws-secretsmanager": "1.127.0",
|
|
46
|
+
"@aws-cdk/aws-sns": "1.127.0",
|
|
47
|
+
"@aws-cdk/aws-sqs": "1.127.0",
|
|
48
|
+
"@aws-cdk/aws-ssm": "1.127.0",
|
|
49
|
+
"@aws-cdk/aws-stepfunctions": "1.127.0",
|
|
50
|
+
"@aws-cdk/aws-wafv2": "1.127.0",
|
|
51
|
+
"@aws-cdk/core": "1.127.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.
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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",
|
|
@@ -2241,7 +2275,7 @@
|
|
|
2241
2275
|
"kind": "interface",
|
|
2242
2276
|
"locationInModule": {
|
|
2243
2277
|
"filename": "lib/s3-bucket-helper.ts",
|
|
2244
|
-
"line":
|
|
2278
|
+
"line": 26
|
|
2245
2279
|
},
|
|
2246
2280
|
"name": "BuildS3BucketProps",
|
|
2247
2281
|
"properties": [
|
|
@@ -2254,15 +2288,51 @@
|
|
|
2254
2288
|
"immutable": true,
|
|
2255
2289
|
"locationInModule": {
|
|
2256
2290
|
"filename": "lib/s3-bucket-helper.ts",
|
|
2257
|
-
"line":
|
|
2291
|
+
"line": 32
|
|
2258
2292
|
},
|
|
2259
2293
|
"name": "bucketProps",
|
|
2260
2294
|
"optional": true,
|
|
2261
2295
|
"type": {
|
|
2262
2296
|
"fqn": "@aws-cdk/aws-s3.BucketProps"
|
|
2263
2297
|
}
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"abstract": true,
|
|
2301
|
+
"docs": {
|
|
2302
|
+
"default": "- Default props are used",
|
|
2303
|
+
"summary": "User provided props to override the default props for the S3 Logging Bucket."
|
|
2304
|
+
},
|
|
2305
|
+
"immutable": true,
|
|
2306
|
+
"locationInModule": {
|
|
2307
|
+
"filename": "lib/s3-bucket-helper.ts",
|
|
2308
|
+
"line": 38
|
|
2309
|
+
},
|
|
2310
|
+
"name": "loggingBucketProps",
|
|
2311
|
+
"optional": true,
|
|
2312
|
+
"type": {
|
|
2313
|
+
"fqn": "@aws-cdk/aws-s3.BucketProps"
|
|
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
|
+
}
|
|
2264
2333
|
}
|
|
2265
|
-
]
|
|
2334
|
+
],
|
|
2335
|
+
"symbolId": "lib/s3-bucket-helper:BuildS3BucketProps"
|
|
2266
2336
|
},
|
|
2267
2337
|
"@aws-solutions-constructs/core.BuildSagemakerEndpointProps": {
|
|
2268
2338
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2360,7 +2430,8 @@
|
|
|
2360
2430
|
"fqn": "@aws-cdk/aws-ec2.IVpc"
|
|
2361
2431
|
}
|
|
2362
2432
|
}
|
|
2363
|
-
]
|
|
2433
|
+
],
|
|
2434
|
+
"symbolId": "lib/sagemaker-helper:BuildSagemakerEndpointProps"
|
|
2364
2435
|
},
|
|
2365
2436
|
"@aws-solutions-constructs/core.BuildSagemakerNotebookProps": {
|
|
2366
2437
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2441,7 +2512,8 @@
|
|
|
2441
2512
|
"primitive": "any"
|
|
2442
2513
|
}
|
|
2443
2514
|
}
|
|
2444
|
-
]
|
|
2515
|
+
],
|
|
2516
|
+
"symbolId": "lib/sagemaker-helper:BuildSagemakerNotebookProps"
|
|
2445
2517
|
},
|
|
2446
2518
|
"@aws-solutions-constructs/core.BuildTopicProps": {
|
|
2447
2519
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2540,7 +2612,8 @@
|
|
|
2540
2612
|
"fqn": "@aws-cdk/aws-sns.TopicProps"
|
|
2541
2613
|
}
|
|
2542
2614
|
}
|
|
2543
|
-
]
|
|
2615
|
+
],
|
|
2616
|
+
"symbolId": "lib/sns-helper:BuildTopicProps"
|
|
2544
2617
|
},
|
|
2545
2618
|
"@aws-solutions-constructs/core.BuildVpcProps": {
|
|
2546
2619
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2616,7 +2689,8 @@
|
|
|
2616
2689
|
"fqn": "@aws-cdk/aws-ec2.VpcProps"
|
|
2617
2690
|
}
|
|
2618
2691
|
}
|
|
2619
|
-
]
|
|
2692
|
+
],
|
|
2693
|
+
"symbolId": "lib/vpc-helper:BuildVpcProps"
|
|
2620
2694
|
},
|
|
2621
2695
|
"@aws-solutions-constructs/core.BuildWebaclProps": {
|
|
2622
2696
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2661,7 +2735,8 @@
|
|
|
2661
2735
|
"fqn": "@aws-cdk/aws-wafv2.CfnWebACLProps"
|
|
2662
2736
|
}
|
|
2663
2737
|
}
|
|
2664
|
-
]
|
|
2738
|
+
],
|
|
2739
|
+
"symbolId": "lib/waf-helper:BuildWebaclProps"
|
|
2665
2740
|
},
|
|
2666
2741
|
"@aws-solutions-constructs/core.CfnDomainOptions": {
|
|
2667
2742
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2723,7 +2798,8 @@
|
|
|
2723
2798
|
"primitive": "string"
|
|
2724
2799
|
}
|
|
2725
2800
|
}
|
|
2726
|
-
]
|
|
2801
|
+
],
|
|
2802
|
+
"symbolId": "lib/elasticsearch-defaults:CfnDomainOptions"
|
|
2727
2803
|
},
|
|
2728
2804
|
"@aws-solutions-constructs/core.CfnNagSuppressRule": {
|
|
2729
2805
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2766,7 +2842,8 @@
|
|
|
2766
2842
|
"primitive": "string"
|
|
2767
2843
|
}
|
|
2768
2844
|
}
|
|
2769
|
-
]
|
|
2845
|
+
],
|
|
2846
|
+
"symbolId": "lib/utils:CfnNagSuppressRule"
|
|
2770
2847
|
},
|
|
2771
2848
|
"@aws-solutions-constructs/core.CognitoOptions": {
|
|
2772
2849
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2815,7 +2892,8 @@
|
|
|
2815
2892
|
"fqn": "@aws-cdk/aws-cognito.UserPoolClient"
|
|
2816
2893
|
}
|
|
2817
2894
|
}
|
|
2818
|
-
]
|
|
2895
|
+
],
|
|
2896
|
+
"symbolId": "lib/cognito-helper:CognitoOptions"
|
|
2819
2897
|
},
|
|
2820
2898
|
"@aws-solutions-constructs/core.EventSourceProps": {
|
|
2821
2899
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2867,7 +2945,8 @@
|
|
|
2867
2945
|
"fqn": "@aws-cdk/aws-sqs.QueueProps"
|
|
2868
2946
|
}
|
|
2869
2947
|
}
|
|
2870
|
-
]
|
|
2948
|
+
],
|
|
2949
|
+
"symbolId": "lib/lambda-event-source-mapping-defaults:EventSourceProps"
|
|
2871
2950
|
},
|
|
2872
2951
|
"@aws-solutions-constructs/core.SecurityGroupRuleDefinition": {
|
|
2873
2952
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2930,7 +3009,8 @@
|
|
|
2930
3009
|
"primitive": "boolean"
|
|
2931
3010
|
}
|
|
2932
3011
|
}
|
|
2933
|
-
]
|
|
3012
|
+
],
|
|
3013
|
+
"symbolId": "lib/security-group-helper:SecurityGroupRuleDefinition"
|
|
2934
3014
|
},
|
|
2935
3015
|
"@aws-solutions-constructs/core.ServiceEndpointTypes": {
|
|
2936
3016
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -2969,7 +3049,8 @@
|
|
|
2969
3049
|
"name": "EVENTS"
|
|
2970
3050
|
}
|
|
2971
3051
|
],
|
|
2972
|
-
"name": "ServiceEndpointTypes"
|
|
3052
|
+
"name": "ServiceEndpointTypes",
|
|
3053
|
+
"symbolId": "lib/vpc-helper:ServiceEndpointTypes"
|
|
2973
3054
|
},
|
|
2974
3055
|
"@aws-solutions-constructs/core.SinkDataStoreProps": {
|
|
2975
3056
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -3034,7 +3115,8 @@
|
|
|
3034
3115
|
"fqn": "@aws-cdk/aws-s3.BucketProps"
|
|
3035
3116
|
}
|
|
3036
3117
|
}
|
|
3037
|
-
]
|
|
3118
|
+
],
|
|
3119
|
+
"symbolId": "lib/glue-job-helper:SinkDataStoreProps"
|
|
3038
3120
|
},
|
|
3039
3121
|
"@aws-solutions-constructs/core.SinkStoreType": {
|
|
3040
3122
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -3053,7 +3135,8 @@
|
|
|
3053
3135
|
"name": "S3"
|
|
3054
3136
|
}
|
|
3055
3137
|
],
|
|
3056
|
-
"name": "SinkStoreType"
|
|
3138
|
+
"name": "SinkStoreType",
|
|
3139
|
+
"symbolId": "lib/glue-job-helper:SinkStoreType.S3"
|
|
3057
3140
|
},
|
|
3058
3141
|
"@aws-solutions-constructs/core.VerifiedProps": {
|
|
3059
3142
|
"assembly": "@aws-solutions-constructs/core",
|
|
@@ -3062,7 +3145,7 @@
|
|
|
3062
3145
|
"kind": "interface",
|
|
3063
3146
|
"locationInModule": {
|
|
3064
3147
|
"filename": "lib/input-validation.ts",
|
|
3065
|
-
"line":
|
|
3148
|
+
"line": 28
|
|
3066
3149
|
},
|
|
3067
3150
|
"name": "VerifiedProps",
|
|
3068
3151
|
"properties": [
|
|
@@ -3071,7 +3154,20 @@
|
|
|
3071
3154
|
"immutable": true,
|
|
3072
3155
|
"locationInModule": {
|
|
3073
3156
|
"filename": "lib/input-validation.ts",
|
|
3074
|
-
"line":
|
|
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
|
|
3075
3171
|
},
|
|
3076
3172
|
"name": "bucketProps",
|
|
3077
3173
|
"optional": true,
|
|
@@ -3084,7 +3180,7 @@
|
|
|
3084
3180
|
"immutable": true,
|
|
3085
3181
|
"locationInModule": {
|
|
3086
3182
|
"filename": "lib/input-validation.ts",
|
|
3087
|
-
"line":
|
|
3183
|
+
"line": 42
|
|
3088
3184
|
},
|
|
3089
3185
|
"name": "deadLetterQueueProps",
|
|
3090
3186
|
"optional": true,
|
|
@@ -3097,7 +3193,7 @@
|
|
|
3097
3193
|
"immutable": true,
|
|
3098
3194
|
"locationInModule": {
|
|
3099
3195
|
"filename": "lib/input-validation.ts",
|
|
3100
|
-
"line":
|
|
3196
|
+
"line": 41
|
|
3101
3197
|
},
|
|
3102
3198
|
"name": "deployDeadLetterQueue",
|
|
3103
3199
|
"optional": true,
|
|
@@ -3110,7 +3206,7 @@
|
|
|
3110
3206
|
"immutable": true,
|
|
3111
3207
|
"locationInModule": {
|
|
3112
3208
|
"filename": "lib/input-validation.ts",
|
|
3113
|
-
"line":
|
|
3209
|
+
"line": 65
|
|
3114
3210
|
},
|
|
3115
3211
|
"name": "deployVpc",
|
|
3116
3212
|
"optional": true,
|
|
@@ -3123,7 +3219,7 @@
|
|
|
3123
3219
|
"immutable": true,
|
|
3124
3220
|
"locationInModule": {
|
|
3125
3221
|
"filename": "lib/input-validation.ts",
|
|
3126
|
-
"line":
|
|
3222
|
+
"line": 29
|
|
3127
3223
|
},
|
|
3128
3224
|
"name": "dynamoTableProps",
|
|
3129
3225
|
"optional": true,
|
|
@@ -3136,7 +3232,7 @@
|
|
|
3136
3232
|
"immutable": true,
|
|
3137
3233
|
"locationInModule": {
|
|
3138
3234
|
"filename": "lib/input-validation.ts",
|
|
3139
|
-
"line":
|
|
3235
|
+
"line": 67
|
|
3140
3236
|
},
|
|
3141
3237
|
"name": "encryptionKey",
|
|
3142
3238
|
"optional": true,
|
|
@@ -3149,7 +3245,7 @@
|
|
|
3149
3245
|
"immutable": true,
|
|
3150
3246
|
"locationInModule": {
|
|
3151
3247
|
"filename": "lib/input-validation.ts",
|
|
3152
|
-
"line":
|
|
3248
|
+
"line": 68
|
|
3153
3249
|
},
|
|
3154
3250
|
"name": "encryptionKeyProps",
|
|
3155
3251
|
"optional": true,
|
|
@@ -3162,7 +3258,7 @@
|
|
|
3162
3258
|
"immutable": true,
|
|
3163
3259
|
"locationInModule": {
|
|
3164
3260
|
"filename": "lib/input-validation.ts",
|
|
3165
|
-
"line":
|
|
3261
|
+
"line": 58
|
|
3166
3262
|
},
|
|
3167
3263
|
"name": "endpointProps",
|
|
3168
3264
|
"optional": true,
|
|
@@ -3175,7 +3271,7 @@
|
|
|
3175
3271
|
"immutable": true,
|
|
3176
3272
|
"locationInModule": {
|
|
3177
3273
|
"filename": "lib/input-validation.ts",
|
|
3178
|
-
"line":
|
|
3274
|
+
"line": 48
|
|
3179
3275
|
},
|
|
3180
3276
|
"name": "existingBucketInterface",
|
|
3181
3277
|
"optional": true,
|
|
@@ -3188,7 +3284,7 @@
|
|
|
3188
3284
|
"immutable": true,
|
|
3189
3285
|
"locationInModule": {
|
|
3190
3286
|
"filename": "lib/input-validation.ts",
|
|
3191
|
-
"line":
|
|
3287
|
+
"line": 47
|
|
3192
3288
|
},
|
|
3193
3289
|
"name": "existingBucketObj",
|
|
3194
3290
|
"optional": true,
|
|
@@ -3201,7 +3297,7 @@
|
|
|
3201
3297
|
"immutable": true,
|
|
3202
3298
|
"locationInModule": {
|
|
3203
3299
|
"filename": "lib/input-validation.ts",
|
|
3204
|
-
"line":
|
|
3300
|
+
"line": 55
|
|
3205
3301
|
},
|
|
3206
3302
|
"name": "existingGlueJob",
|
|
3207
3303
|
"optional": true,
|
|
@@ -3214,7 +3310,7 @@
|
|
|
3214
3310
|
"immutable": true,
|
|
3215
3311
|
"locationInModule": {
|
|
3216
3312
|
"filename": "lib/input-validation.ts",
|
|
3217
|
-
"line":
|
|
3313
|
+
"line": 36
|
|
3218
3314
|
},
|
|
3219
3315
|
"name": "existingLambdaObj",
|
|
3220
3316
|
"optional": true,
|
|
@@ -3227,7 +3323,33 @@
|
|
|
3227
3323
|
"immutable": true,
|
|
3228
3324
|
"locationInModule": {
|
|
3229
3325
|
"filename": "lib/input-validation.ts",
|
|
3230
|
-
"line":
|
|
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
|
|
3231
3353
|
},
|
|
3232
3354
|
"name": "existingMediaStoreContainerObj",
|
|
3233
3355
|
"optional": true,
|
|
@@ -3240,7 +3362,7 @@
|
|
|
3240
3362
|
"immutable": true,
|
|
3241
3363
|
"locationInModule": {
|
|
3242
3364
|
"filename": "lib/input-validation.ts",
|
|
3243
|
-
"line":
|
|
3365
|
+
"line": 39
|
|
3244
3366
|
},
|
|
3245
3367
|
"name": "existingQueueObj",
|
|
3246
3368
|
"optional": true,
|
|
@@ -3253,7 +3375,7 @@
|
|
|
3253
3375
|
"immutable": true,
|
|
3254
3376
|
"locationInModule": {
|
|
3255
3377
|
"filename": "lib/input-validation.ts",
|
|
3256
|
-
"line":
|
|
3378
|
+
"line": 57
|
|
3257
3379
|
},
|
|
3258
3380
|
"name": "existingSagemakerEndpointObj",
|
|
3259
3381
|
"optional": true,
|
|
@@ -3266,7 +3388,7 @@
|
|
|
3266
3388
|
"immutable": true,
|
|
3267
3389
|
"locationInModule": {
|
|
3268
3390
|
"filename": "lib/input-validation.ts",
|
|
3269
|
-
"line":
|
|
3391
|
+
"line": 60
|
|
3270
3392
|
},
|
|
3271
3393
|
"name": "existingSecretObj",
|
|
3272
3394
|
"optional": true,
|
|
@@ -3279,7 +3401,7 @@
|
|
|
3279
3401
|
"immutable": true,
|
|
3280
3402
|
"locationInModule": {
|
|
3281
3403
|
"filename": "lib/input-validation.ts",
|
|
3282
|
-
"line":
|
|
3404
|
+
"line": 33
|
|
3283
3405
|
},
|
|
3284
3406
|
"name": "existingStreamObj",
|
|
3285
3407
|
"optional": true,
|
|
@@ -3292,7 +3414,7 @@
|
|
|
3292
3414
|
"immutable": true,
|
|
3293
3415
|
"locationInModule": {
|
|
3294
3416
|
"filename": "lib/input-validation.ts",
|
|
3295
|
-
"line":
|
|
3417
|
+
"line": 31
|
|
3296
3418
|
},
|
|
3297
3419
|
"name": "existingTableInterface",
|
|
3298
3420
|
"optional": true,
|
|
@@ -3305,7 +3427,7 @@
|
|
|
3305
3427
|
"immutable": true,
|
|
3306
3428
|
"locationInModule": {
|
|
3307
3429
|
"filename": "lib/input-validation.ts",
|
|
3308
|
-
"line":
|
|
3430
|
+
"line": 30
|
|
3309
3431
|
},
|
|
3310
3432
|
"name": "existingTableObj",
|
|
3311
3433
|
"optional": true,
|
|
@@ -3318,7 +3440,7 @@
|
|
|
3318
3440
|
"immutable": true,
|
|
3319
3441
|
"locationInModule": {
|
|
3320
3442
|
"filename": "lib/input-validation.ts",
|
|
3321
|
-
"line":
|
|
3443
|
+
"line": 52
|
|
3322
3444
|
},
|
|
3323
3445
|
"name": "existingTopicObj",
|
|
3324
3446
|
"optional": true,
|
|
@@ -3331,7 +3453,7 @@
|
|
|
3331
3453
|
"immutable": true,
|
|
3332
3454
|
"locationInModule": {
|
|
3333
3455
|
"filename": "lib/input-validation.ts",
|
|
3334
|
-
"line":
|
|
3456
|
+
"line": 63
|
|
3335
3457
|
},
|
|
3336
3458
|
"name": "existingVpc",
|
|
3337
3459
|
"optional": true,
|
|
@@ -3344,7 +3466,7 @@
|
|
|
3344
3466
|
"immutable": true,
|
|
3345
3467
|
"locationInModule": {
|
|
3346
3468
|
"filename": "lib/input-validation.ts",
|
|
3347
|
-
"line":
|
|
3469
|
+
"line": 54
|
|
3348
3470
|
},
|
|
3349
3471
|
"name": "glueJobProps",
|
|
3350
3472
|
"optional": true,
|
|
@@ -3357,7 +3479,7 @@
|
|
|
3357
3479
|
"immutable": true,
|
|
3358
3480
|
"locationInModule": {
|
|
3359
3481
|
"filename": "lib/input-validation.ts",
|
|
3360
|
-
"line":
|
|
3482
|
+
"line": 34
|
|
3361
3483
|
},
|
|
3362
3484
|
"name": "kinesisStreamProps",
|
|
3363
3485
|
"optional": true,
|
|
@@ -3370,7 +3492,7 @@
|
|
|
3370
3492
|
"immutable": true,
|
|
3371
3493
|
"locationInModule": {
|
|
3372
3494
|
"filename": "lib/input-validation.ts",
|
|
3373
|
-
"line":
|
|
3495
|
+
"line": 37
|
|
3374
3496
|
},
|
|
3375
3497
|
"name": "lambdaFunctionProps",
|
|
3376
3498
|
"optional": true,
|
|
@@ -3383,7 +3505,59 @@
|
|
|
3383
3505
|
"immutable": true,
|
|
3384
3506
|
"locationInModule": {
|
|
3385
3507
|
"filename": "lib/input-validation.ts",
|
|
3386
|
-
"line":
|
|
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
|
|
3387
3561
|
},
|
|
3388
3562
|
"name": "mediaStoreContainerProps",
|
|
3389
3563
|
"optional": true,
|
|
@@ -3396,7 +3570,7 @@
|
|
|
3396
3570
|
"immutable": true,
|
|
3397
3571
|
"locationInModule": {
|
|
3398
3572
|
"filename": "lib/input-validation.ts",
|
|
3399
|
-
"line":
|
|
3573
|
+
"line": 40
|
|
3400
3574
|
},
|
|
3401
3575
|
"name": "queueProps",
|
|
3402
3576
|
"optional": true,
|
|
@@ -3409,7 +3583,7 @@
|
|
|
3409
3583
|
"immutable": true,
|
|
3410
3584
|
"locationInModule": {
|
|
3411
3585
|
"filename": "lib/input-validation.ts",
|
|
3412
|
-
"line":
|
|
3586
|
+
"line": 61
|
|
3413
3587
|
},
|
|
3414
3588
|
"name": "secretProps",
|
|
3415
3589
|
"optional": true,
|
|
@@ -3422,7 +3596,7 @@
|
|
|
3422
3596
|
"immutable": true,
|
|
3423
3597
|
"locationInModule": {
|
|
3424
3598
|
"filename": "lib/input-validation.ts",
|
|
3425
|
-
"line":
|
|
3599
|
+
"line": 51
|
|
3426
3600
|
},
|
|
3427
3601
|
"name": "topicProps",
|
|
3428
3602
|
"optional": true,
|
|
@@ -3435,7 +3609,7 @@
|
|
|
3435
3609
|
"immutable": true,
|
|
3436
3610
|
"locationInModule": {
|
|
3437
3611
|
"filename": "lib/input-validation.ts",
|
|
3438
|
-
"line":
|
|
3612
|
+
"line": 64
|
|
3439
3613
|
},
|
|
3440
3614
|
"name": "vpcProps",
|
|
3441
3615
|
"optional": true,
|
|
@@ -3443,9 +3617,10 @@
|
|
|
3443
3617
|
"fqn": "@aws-cdk/aws-ec2.VpcProps"
|
|
3444
3618
|
}
|
|
3445
3619
|
}
|
|
3446
|
-
]
|
|
3620
|
+
],
|
|
3621
|
+
"symbolId": "lib/input-validation:VerifiedProps"
|
|
3447
3622
|
}
|
|
3448
3623
|
},
|
|
3449
|
-
"version": "1.
|
|
3450
|
-
"fingerprint": "
|
|
3624
|
+
"version": "1.127.0",
|
|
3625
|
+
"fingerprint": "PLataPt0qPyjlUHMghRhZGFxN55HasYJRsFOeRlrY5w="
|
|
3451
3626
|
}
|