aws-solutions-constructs.core 2.93.0__tar.gz → 2.94.0__tar.gz
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_core-2.93.0/src/aws_solutions_constructs.core.egg-info → aws_solutions_constructs_core-2.94.0}/PKG-INFO +2 -2
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/setup.py +3 -3
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/src/aws_solutions_constructs/core/__init__.py +28 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/src/aws_solutions_constructs/core/_jsii/__init__.py +1 -1
- aws_solutions_constructs_core-2.94.0/src/aws_solutions_constructs/core/_jsii/core@2.94.0.jsii.tgz +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0/src/aws_solutions_constructs.core.egg-info}/PKG-INFO +2 -2
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/src/aws_solutions_constructs.core.egg-info/SOURCES.txt +1 -1
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/src/aws_solutions_constructs.core.egg-info/requires.txt +1 -1
- aws_solutions_constructs_core-2.93.0/src/aws_solutions_constructs/core/_jsii/core@2.93.0.jsii.tgz +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/LICENSE +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/MANIFEST.in +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/README.md +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/pyproject.toml +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/setup.cfg +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/src/aws_solutions_constructs/core/py.typed +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/src/aws_solutions_constructs.core.egg-info/dependency_links.txt +0 -0
- {aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/src/aws_solutions_constructs.core.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.core
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.94.0
|
|
4
4
|
Summary: Core CDK Construct for patterns library
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -18,7 +18,7 @@ Classifier: License :: OSI Approved
|
|
|
18
18
|
Requires-Python: ~=3.9
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: aws-cdk-lib<3.0.0,>=2.
|
|
21
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.219.0
|
|
22
22
|
Requires-Dist: aws-cdk.cloud-assembly-schema<49.0.0,>=48.6.0
|
|
23
23
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
24
24
|
Requires-Dist: jsii<2.0.0,>=1.114.1
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-solutions-constructs.core",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.94.0",
|
|
9
9
|
"description": "Core CDK Construct for patterns library",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/awslabs/aws-solutions-constructs.git",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"aws_solutions_constructs.core._jsii": [
|
|
29
|
-
"core@2.
|
|
29
|
+
"core@2.94.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.core": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,7 +34,7 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.9",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
37
|
+
"aws-cdk-lib>=2.219.0, <3.0.0",
|
|
38
38
|
"aws-cdk.cloud-assembly-schema>=48.6.0, <49.0.0",
|
|
39
39
|
"constructs>=10.0.0, <11.0.0",
|
|
40
40
|
"jsii>=1.114.1, <2.0.0",
|
|
@@ -5955,6 +5955,7 @@ class S3OacOrigin(
|
|
|
5955
5955
|
origin_id: typing.Optional[builtins.str] = None,
|
|
5956
5956
|
origin_shield_enabled: typing.Optional[builtins.bool] = None,
|
|
5957
5957
|
origin_shield_region: typing.Optional[builtins.str] = None,
|
|
5958
|
+
response_completion_timeout: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5958
5959
|
) -> None:
|
|
5959
5960
|
'''
|
|
5960
5961
|
:param bucket: -
|
|
@@ -5967,6 +5968,7 @@ class S3OacOrigin(
|
|
|
5967
5968
|
:param origin_id: A unique identifier for the origin. This value must be unique within the distribution. Default: - an originid will be generated for you
|
|
5968
5969
|
:param origin_shield_enabled: Origin Shield is enabled by setting originShieldRegion to a valid region, after this to disable Origin Shield again you must set this flag to false. Default: - true
|
|
5969
5970
|
:param origin_shield_region: When you enable Origin Shield in the AWS Region that has the lowest latency to your origin, you can get better network performance. Default: - origin shield not enabled
|
|
5971
|
+
:param response_completion_timeout: The time that a request from CloudFront to the origin can stay open and wait for a response. If the complete response isn't received from the origin by this time, CloudFront ends the connection. Valid values are 1-3600 seconds, inclusive. Default: undefined - AWS CloudFront default is not enforcing a maximum value
|
|
5970
5972
|
'''
|
|
5971
5973
|
if __debug__:
|
|
5972
5974
|
type_hints = typing.get_type_hints(_typecheckingstub__44846869b9ecaeab140b843e216e72ede263e14e7846fdeed302ad40eedcc020)
|
|
@@ -5981,6 +5983,7 @@ class S3OacOrigin(
|
|
|
5981
5983
|
origin_id=origin_id,
|
|
5982
5984
|
origin_shield_enabled=origin_shield_enabled,
|
|
5983
5985
|
origin_shield_region=origin_shield_region,
|
|
5986
|
+
response_completion_timeout=response_completion_timeout,
|
|
5984
5987
|
)
|
|
5985
5988
|
|
|
5986
5989
|
jsii.create(self.__class__, self, [bucket, props])
|
|
@@ -6020,6 +6023,7 @@ class S3OacOrigin(
|
|
|
6020
6023
|
"origin_id": "originId",
|
|
6021
6024
|
"origin_shield_enabled": "originShieldEnabled",
|
|
6022
6025
|
"origin_shield_region": "originShieldRegion",
|
|
6026
|
+
"response_completion_timeout": "responseCompletionTimeout",
|
|
6023
6027
|
"origin_path": "originPath",
|
|
6024
6028
|
"origin_access_control": "originAccessControl",
|
|
6025
6029
|
},
|
|
@@ -6035,6 +6039,7 @@ class S3OacOriginProps(_aws_cdk_aws_cloudfront_ceddda9d.OriginProps):
|
|
|
6035
6039
|
origin_id: typing.Optional[builtins.str] = None,
|
|
6036
6040
|
origin_shield_enabled: typing.Optional[builtins.bool] = None,
|
|
6037
6041
|
origin_shield_region: typing.Optional[builtins.str] = None,
|
|
6042
|
+
response_completion_timeout: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
6038
6043
|
origin_path: typing.Optional[builtins.str] = None,
|
|
6039
6044
|
origin_access_control: typing.Optional[_aws_cdk_aws_cloudfront_ceddda9d.CfnOriginAccessControl] = None,
|
|
6040
6045
|
) -> None:
|
|
@@ -6047,6 +6052,7 @@ class S3OacOriginProps(_aws_cdk_aws_cloudfront_ceddda9d.OriginProps):
|
|
|
6047
6052
|
:param origin_id: A unique identifier for the origin. This value must be unique within the distribution. Default: - an originid will be generated for you
|
|
6048
6053
|
:param origin_shield_enabled: Origin Shield is enabled by setting originShieldRegion to a valid region, after this to disable Origin Shield again you must set this flag to false. Default: - true
|
|
6049
6054
|
:param origin_shield_region: When you enable Origin Shield in the AWS Region that has the lowest latency to your origin, you can get better network performance. Default: - origin shield not enabled
|
|
6055
|
+
:param response_completion_timeout: The time that a request from CloudFront to the origin can stay open and wait for a response. If the complete response isn't received from the origin by this time, CloudFront ends the connection. Valid values are 1-3600 seconds, inclusive. Default: undefined - AWS CloudFront default is not enforcing a maximum value
|
|
6050
6056
|
:param origin_path: An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin. Must begin, but not end, with '/' (e.g., '/production/images'). Default: '/'
|
|
6051
6057
|
:param origin_access_control: The origin access control that will be used when calling your S3 bucket.
|
|
6052
6058
|
'''
|
|
@@ -6059,6 +6065,7 @@ class S3OacOriginProps(_aws_cdk_aws_cloudfront_ceddda9d.OriginProps):
|
|
|
6059
6065
|
check_type(argname="argument origin_id", value=origin_id, expected_type=type_hints["origin_id"])
|
|
6060
6066
|
check_type(argname="argument origin_shield_enabled", value=origin_shield_enabled, expected_type=type_hints["origin_shield_enabled"])
|
|
6061
6067
|
check_type(argname="argument origin_shield_region", value=origin_shield_region, expected_type=type_hints["origin_shield_region"])
|
|
6068
|
+
check_type(argname="argument response_completion_timeout", value=response_completion_timeout, expected_type=type_hints["response_completion_timeout"])
|
|
6062
6069
|
check_type(argname="argument origin_path", value=origin_path, expected_type=type_hints["origin_path"])
|
|
6063
6070
|
check_type(argname="argument origin_access_control", value=origin_access_control, expected_type=type_hints["origin_access_control"])
|
|
6064
6071
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
@@ -6076,6 +6083,8 @@ class S3OacOriginProps(_aws_cdk_aws_cloudfront_ceddda9d.OriginProps):
|
|
|
6076
6083
|
self._values["origin_shield_enabled"] = origin_shield_enabled
|
|
6077
6084
|
if origin_shield_region is not None:
|
|
6078
6085
|
self._values["origin_shield_region"] = origin_shield_region
|
|
6086
|
+
if response_completion_timeout is not None:
|
|
6087
|
+
self._values["response_completion_timeout"] = response_completion_timeout
|
|
6079
6088
|
if origin_path is not None:
|
|
6080
6089
|
self._values["origin_path"] = origin_path
|
|
6081
6090
|
if origin_access_control is not None:
|
|
@@ -6154,6 +6163,23 @@ class S3OacOriginProps(_aws_cdk_aws_cloudfront_ceddda9d.OriginProps):
|
|
|
6154
6163
|
result = self._values.get("origin_shield_region")
|
|
6155
6164
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
6156
6165
|
|
|
6166
|
+
@builtins.property
|
|
6167
|
+
def response_completion_timeout(
|
|
6168
|
+
self,
|
|
6169
|
+
) -> typing.Optional[_aws_cdk_ceddda9d.Duration]:
|
|
6170
|
+
'''The time that a request from CloudFront to the origin can stay open and wait for a response.
|
|
6171
|
+
|
|
6172
|
+
If the complete response isn't received from the origin by this time, CloudFront ends the connection.
|
|
6173
|
+
|
|
6174
|
+
Valid values are 1-3600 seconds, inclusive.
|
|
6175
|
+
|
|
6176
|
+
:default: undefined - AWS CloudFront default is not enforcing a maximum value
|
|
6177
|
+
|
|
6178
|
+
:see: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#response-completion-timeout
|
|
6179
|
+
'''
|
|
6180
|
+
result = self._values.get("response_completion_timeout")
|
|
6181
|
+
return typing.cast(typing.Optional[_aws_cdk_ceddda9d.Duration], result)
|
|
6182
|
+
|
|
6157
6183
|
@builtins.property
|
|
6158
6184
|
def origin_path(self) -> typing.Optional[builtins.str]:
|
|
6159
6185
|
'''An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin.
|
|
@@ -7856,6 +7882,7 @@ def _typecheckingstub__44846869b9ecaeab140b843e216e72ede263e14e7846fdeed302ad40e
|
|
|
7856
7882
|
origin_id: typing.Optional[builtins.str] = None,
|
|
7857
7883
|
origin_shield_enabled: typing.Optional[builtins.bool] = None,
|
|
7858
7884
|
origin_shield_region: typing.Optional[builtins.str] = None,
|
|
7885
|
+
response_completion_timeout: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
7859
7886
|
) -> None:
|
|
7860
7887
|
"""Type checking stubs"""
|
|
7861
7888
|
pass
|
|
@@ -7878,6 +7905,7 @@ def _typecheckingstub__f4727907366b00308bea7c2d08561f315c9f243b37d0b3a99db676ce6
|
|
|
7878
7905
|
origin_id: typing.Optional[builtins.str] = None,
|
|
7879
7906
|
origin_shield_enabled: typing.Optional[builtins.bool] = None,
|
|
7880
7907
|
origin_shield_region: typing.Optional[builtins.str] = None,
|
|
7908
|
+
response_completion_timeout: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
7881
7909
|
origin_path: typing.Optional[builtins.str] = None,
|
|
7882
7910
|
origin_access_control: typing.Optional[_aws_cdk_aws_cloudfront_ceddda9d.CfnOriginAccessControl] = None,
|
|
7883
7911
|
) -> None:
|
|
@@ -33,7 +33,7 @@ import aws_cdk.cloud_assembly_schema._jsii
|
|
|
33
33
|
import constructs._jsii
|
|
34
34
|
|
|
35
35
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
36
|
-
"@aws-solutions-constructs/core", "2.
|
|
36
|
+
"@aws-solutions-constructs/core", "2.94.0", __name__[0:-6], "core@2.94.0.jsii.tgz"
|
|
37
37
|
)
|
|
38
38
|
|
|
39
39
|
__all__ = [
|
aws_solutions_constructs_core-2.94.0/src/aws_solutions_constructs/core/_jsii/core@2.94.0.jsii.tgz
ADDED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.core
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.94.0
|
|
4
4
|
Summary: Core CDK Construct for patterns library
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -18,7 +18,7 @@ Classifier: License :: OSI Approved
|
|
|
18
18
|
Requires-Python: ~=3.9
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: aws-cdk-lib<3.0.0,>=2.
|
|
21
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.219.0
|
|
22
22
|
Requires-Dist: aws-cdk.cloud-assembly-schema<49.0.0,>=48.6.0
|
|
23
23
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
24
24
|
Requires-Dist: jsii<2.0.0,>=1.114.1
|
|
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.core.egg-info/top_level.txt
|
|
|
11
11
|
src/aws_solutions_constructs/core/__init__.py
|
|
12
12
|
src/aws_solutions_constructs/core/py.typed
|
|
13
13
|
src/aws_solutions_constructs/core/_jsii/__init__.py
|
|
14
|
-
src/aws_solutions_constructs/core/_jsii/core@2.
|
|
14
|
+
src/aws_solutions_constructs/core/_jsii/core@2.94.0.jsii.tgz
|
aws_solutions_constructs_core-2.93.0/src/aws_solutions_constructs/core/_jsii/core@2.93.0.jsii.tgz
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws_solutions_constructs_core-2.93.0 → aws_solutions_constructs_core-2.94.0}/pyproject.toml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|