aws-solutions-constructs.aws-wafwebacl-cloudfront 2.35.0__py3-none-any.whl → 2.37.0__py3-none-any.whl
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.
- aws_solutions_constructs/aws_wafwebacl_cloudfront/__init__.py +6 -10
- aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/__init__.py +2 -2
- aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/aws-wafwebacl-cloudfront@2.37.0.jsii.tgz +0 -0
- {aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info → aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info}/METADATA +4 -4
- aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info/RECORD +9 -0
- aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/aws-wafwebacl-cloudfront@2.35.0.jsii.tgz +0 -0
- aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info/RECORD +0 -9
- {aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info → aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info}/LICENSE +0 -0
- {aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info → aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info}/WHEEL +0 -0
- {aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info → aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info}/top_level.txt +0 -0
@@ -164,7 +164,7 @@ class WafwebaclToCloudFront(
|
|
164
164
|
*,
|
165
165
|
existing_cloud_front_web_distribution: _aws_cdk_aws_cloudfront_ceddda9d.Distribution,
|
166
166
|
existing_webacl_obj: typing.Optional[_aws_cdk_aws_wafv2_ceddda9d.CfnWebACL] = None,
|
167
|
-
webacl_props: typing.
|
167
|
+
webacl_props: typing.Any = None,
|
168
168
|
) -> None:
|
169
169
|
'''
|
170
170
|
:param scope: - represents the scope for all the resources.
|
@@ -216,7 +216,7 @@ class WafwebaclToCloudFrontProps:
|
|
216
216
|
*,
|
217
217
|
existing_cloud_front_web_distribution: _aws_cdk_aws_cloudfront_ceddda9d.Distribution,
|
218
218
|
existing_webacl_obj: typing.Optional[_aws_cdk_aws_wafv2_ceddda9d.CfnWebACL] = None,
|
219
|
-
webacl_props: typing.
|
219
|
+
webacl_props: typing.Any = None,
|
220
220
|
) -> None:
|
221
221
|
'''
|
222
222
|
:param existing_cloud_front_web_distribution: The existing CloudFront instance that will be protected with the WAF web ACL. This construct changes the CloudFront distribution by directly manipulating the CloudFormation output, so this must be the Construct and cannot be changed to the Interface (IDistribution)
|
@@ -225,8 +225,6 @@ class WafwebaclToCloudFrontProps:
|
|
225
225
|
|
226
226
|
:summary: The properties for the WafwebaclToCloudFront class.
|
227
227
|
'''
|
228
|
-
if isinstance(webacl_props, dict):
|
229
|
-
webacl_props = _aws_cdk_aws_wafv2_ceddda9d.CfnWebACLProps(**webacl_props)
|
230
228
|
if __debug__:
|
231
229
|
type_hints = typing.get_type_hints(_typecheckingstub__40a0cf28e1b529b5efb8af1e8d3e34e9c89ef520a8810caf4b1ccce40fff2a84)
|
232
230
|
check_type(argname="argument existing_cloud_front_web_distribution", value=existing_cloud_front_web_distribution, expected_type=type_hints["existing_cloud_front_web_distribution"])
|
@@ -263,15 +261,13 @@ class WafwebaclToCloudFrontProps:
|
|
263
261
|
return typing.cast(typing.Optional[_aws_cdk_aws_wafv2_ceddda9d.CfnWebACL], result)
|
264
262
|
|
265
263
|
@builtins.property
|
266
|
-
def webacl_props(
|
267
|
-
self,
|
268
|
-
) -> typing.Optional[_aws_cdk_aws_wafv2_ceddda9d.CfnWebACLProps]:
|
264
|
+
def webacl_props(self) -> typing.Any:
|
269
265
|
'''Optional user-provided props to override the default props for the AWS WAF web ACL.
|
270
266
|
|
271
267
|
:default: - Default properties are used.
|
272
268
|
'''
|
273
269
|
result = self._values.get("webacl_props")
|
274
|
-
return typing.cast(typing.
|
270
|
+
return typing.cast(typing.Any, result)
|
275
271
|
|
276
272
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
277
273
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
@@ -298,7 +294,7 @@ def _typecheckingstub__d5d8bd547f935ab6b8d3616094fcce5144f3e97e2b6bc2efff5fc3b86
|
|
298
294
|
*,
|
299
295
|
existing_cloud_front_web_distribution: _aws_cdk_aws_cloudfront_ceddda9d.Distribution,
|
300
296
|
existing_webacl_obj: typing.Optional[_aws_cdk_aws_wafv2_ceddda9d.CfnWebACL] = None,
|
301
|
-
webacl_props: typing.
|
297
|
+
webacl_props: typing.Any = None,
|
302
298
|
) -> None:
|
303
299
|
"""Type checking stubs"""
|
304
300
|
pass
|
@@ -307,7 +303,7 @@ def _typecheckingstub__40a0cf28e1b529b5efb8af1e8d3e34e9c89ef520a8810caf4b1ccce40
|
|
307
303
|
*,
|
308
304
|
existing_cloud_front_web_distribution: _aws_cdk_aws_cloudfront_ceddda9d.Distribution,
|
309
305
|
existing_webacl_obj: typing.Optional[_aws_cdk_aws_wafv2_ceddda9d.CfnWebACL] = None,
|
310
|
-
webacl_props: typing.
|
306
|
+
webacl_props: typing.Any = None,
|
311
307
|
) -> None:
|
312
308
|
"""Type checking stubs"""
|
313
309
|
pass
|
@@ -16,9 +16,9 @@ import constructs._jsii
|
|
16
16
|
|
17
17
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
18
18
|
"@aws-solutions-constructs/aws-wafwebacl-cloudfront",
|
19
|
-
"2.
|
19
|
+
"2.37.0",
|
20
20
|
__name__[0:-6],
|
21
|
-
"aws-wafwebacl-cloudfront@2.
|
21
|
+
"aws-wafwebacl-cloudfront@2.37.0.jsii.tgz",
|
22
22
|
)
|
23
23
|
|
24
24
|
__all__ = [
|
aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/aws-wafwebacl-cloudfront@2.37.0.jsii.tgz
ADDED
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: aws-solutions-constructs.aws-wafwebacl-cloudfront
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.37.0
|
4
4
|
Summary: CDK constructs for defining an AWS web WAF connected to Amazon CloudFront.
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
6
6
|
Author: Amazon Web Services
|
@@ -20,10 +20,10 @@ Classifier: License :: OSI Approved
|
|
20
20
|
Requires-Python: ~=3.7
|
21
21
|
Description-Content-Type: text/markdown
|
22
22
|
License-File: LICENSE
|
23
|
-
Requires-Dist: aws-cdk-lib (<3.0.0,>=2.
|
24
|
-
Requires-Dist: aws-solutions-constructs.core (==2.
|
23
|
+
Requires-Dist: aws-cdk-lib (<3.0.0,>=2.73.0)
|
24
|
+
Requires-Dist: aws-solutions-constructs.core (==2.37.0)
|
25
25
|
Requires-Dist: constructs (<11.0.0,>=10.0.0)
|
26
|
-
Requires-Dist: jsii (<2.0.0,>=1.
|
26
|
+
Requires-Dist: jsii (<2.0.0,>=1.80.0)
|
27
27
|
Requires-Dist: publication (>=0.0.3)
|
28
28
|
Requires-Dist: typeguard (~=2.13.3)
|
29
29
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
aws_solutions_constructs/aws_wafwebacl_cloudfront/__init__.py,sha256=IqLM8UoF3sROOOe-FpI4KGk3uFg3ISLD1SkhBSdEvjM,13877
|
2
|
+
aws_solutions_constructs/aws_wafwebacl_cloudfront/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/__init__.py,sha256=GefWR-dGQzEuKlCv7aBsBWEDWMCJrPCcE8T3RnPDO_o,499
|
4
|
+
aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/aws-wafwebacl-cloudfront@2.37.0.jsii.tgz,sha256=pZkyWHzThBpdW50nNTmNjiy7szjrrTo-uwMyIEyDt2g,220433
|
5
|
+
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
6
|
+
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info/METADATA,sha256=X6FZPsG6ivUww0xjPo724O24GS0uhlZ_-Qg6uUhr608,7112
|
7
|
+
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
8
|
+
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
9
|
+
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.37.0.dist-info/RECORD,,
|
aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/aws-wafwebacl-cloudfront@2.35.0.jsii.tgz
DELETED
Binary file
|
@@ -1,9 +0,0 @@
|
|
1
|
-
aws_solutions_constructs/aws_wafwebacl_cloudfront/__init__.py,sha256=HzkCC2GJBAl3exdDik5S0Sg7iX45VB8X50kp5UPNKBw,14527
|
2
|
-
aws_solutions_constructs/aws_wafwebacl_cloudfront/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
-
aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/__init__.py,sha256=sG1YLL-yNf4FHqqXXTrz3mmgWS4aeVHPMSgcHHake4o,499
|
4
|
-
aws_solutions_constructs/aws_wafwebacl_cloudfront/_jsii/aws-wafwebacl-cloudfront@2.35.0.jsii.tgz,sha256=gQLETzxJCF5YR3iGKncFDYkId6_f4DUdxOFr2wSmz8A,219200
|
5
|
-
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
6
|
-
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info/METADATA,sha256=TjWwDEZhmjgn_1MKuXHICmE6vnJHIVlbfjV855ebPdk,7112
|
7
|
-
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
8
|
-
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
9
|
-
aws_solutions_constructs.aws_wafwebacl_cloudfront-2.35.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|