cloudstructs 0.12.0__tar.gz → 0.12.1__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.
- {cloudstructs-0.12.0/src/cloudstructs.egg-info → cloudstructs-0.12.1}/PKG-INFO +1 -1
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/setup.py +2 -2
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/src/cloudstructs/__init__.py +3 -3
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/src/cloudstructs/_jsii/__init__.py +1 -1
- cloudstructs-0.12.0/src/cloudstructs/_jsii/cloudstructs@0.12.0.jsii.tgz → cloudstructs-0.12.1/src/cloudstructs/_jsii/cloudstructs@0.12.1.jsii.tgz +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1/src/cloudstructs.egg-info}/PKG-INFO +1 -1
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/src/cloudstructs.egg-info/SOURCES.txt +1 -1
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/LICENSE +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/MANIFEST.in +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/README.md +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/pyproject.toml +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/setup.cfg +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/src/cloudstructs/py.typed +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/src/cloudstructs.egg-info/dependency_links.txt +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/src/cloudstructs.egg-info/requires.txt +0 -0
- {cloudstructs-0.12.0 → cloudstructs-0.12.1}/src/cloudstructs.egg-info/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "cloudstructs",
|
|
8
|
-
"version": "0.12.
|
|
8
|
+
"version": "0.12.1",
|
|
9
9
|
"description": "High-level constructs for AWS CDK",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/jogold/cloudstructs.git",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"cloudstructs._jsii": [
|
|
29
|
-
"cloudstructs@0.12.
|
|
29
|
+
"cloudstructs@0.12.1.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"cloudstructs": [
|
|
32
32
|
"py.typed"
|
|
@@ -3219,7 +3219,7 @@ class StaticWebsite(
|
|
|
3219
3219
|
:param hosted_zone: The hosted zone where records should be added.
|
|
3220
3220
|
:param backend_configuration: A backend configuration that will be saved as ``config.json`` in the S3 bucket of the static website. The frontend can query this config by doing ``fetch('/config.json')``.
|
|
3221
3221
|
:param cache_policy: Cache policy for the default behavior. Default: CachePolicy.CACHING_OPTIMIZED
|
|
3222
|
-
:param edge_lambdas: The Lambda@Edge functions to invoke before serving the contents. Default: -
|
|
3222
|
+
:param edge_lambdas: The Lambda@Edge functions to invoke before serving the contents. Default: - no edge Lambdas
|
|
3223
3223
|
:param redirects: A list of domain names that should redirect to ``domainName``. Default: - the domain name of the hosted zone
|
|
3224
3224
|
:param response_headers_policy: Response headers policy for the default behavior. Default: - a new policy is created with best practice security headers
|
|
3225
3225
|
'''
|
|
@@ -3305,7 +3305,7 @@ class StaticWebsiteProps:
|
|
|
3305
3305
|
:param hosted_zone: The hosted zone where records should be added.
|
|
3306
3306
|
:param backend_configuration: A backend configuration that will be saved as ``config.json`` in the S3 bucket of the static website. The frontend can query this config by doing ``fetch('/config.json')``.
|
|
3307
3307
|
:param cache_policy: Cache policy for the default behavior. Default: CachePolicy.CACHING_OPTIMIZED
|
|
3308
|
-
:param edge_lambdas: The Lambda@Edge functions to invoke before serving the contents. Default: -
|
|
3308
|
+
:param edge_lambdas: The Lambda@Edge functions to invoke before serving the contents. Default: - no edge Lambdas
|
|
3309
3309
|
:param redirects: A list of domain names that should redirect to ``domainName``. Default: - the domain name of the hosted zone
|
|
3310
3310
|
:param response_headers_policy: Response headers policy for the default behavior. Default: - a new policy is created with best practice security headers
|
|
3311
3311
|
'''
|
|
@@ -3394,7 +3394,7 @@ class StaticWebsiteProps:
|
|
|
3394
3394
|
) -> typing.Optional[typing.List["_aws_cdk_aws_cloudfront_ceddda9d.EdgeLambda"]]:
|
|
3395
3395
|
'''The Lambda@Edge functions to invoke before serving the contents.
|
|
3396
3396
|
|
|
3397
|
-
:default: -
|
|
3397
|
+
:default: - no edge Lambdas
|
|
3398
3398
|
'''
|
|
3399
3399
|
result = self._values.get("edge_lambdas")
|
|
3400
3400
|
return typing.cast(typing.Optional[typing.List["_aws_cdk_aws_cloudfront_ceddda9d.EdgeLambda"]], result)
|
|
@@ -32,7 +32,7 @@ import aws_cdk._jsii
|
|
|
32
32
|
import constructs._jsii
|
|
33
33
|
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
35
|
-
"cloudstructs", "0.12.
|
|
35
|
+
"cloudstructs", "0.12.1", __name__[0:-6], "cloudstructs@0.12.1.jsii.tgz"
|
|
36
36
|
)
|
|
37
37
|
|
|
38
38
|
__all__ = [
|
|
Binary file
|
|
@@ -11,4 +11,4 @@ src/cloudstructs.egg-info/dependency_links.txt
|
|
|
11
11
|
src/cloudstructs.egg-info/requires.txt
|
|
12
12
|
src/cloudstructs.egg-info/top_level.txt
|
|
13
13
|
src/cloudstructs/_jsii/__init__.py
|
|
14
|
-
src/cloudstructs/_jsii/cloudstructs@0.12.
|
|
14
|
+
src/cloudstructs/_jsii/cloudstructs@0.12.1.jsii.tgz
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|