aws-solutions-constructs.core 2.55.0__tar.gz → 2.56.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.55.0/src/aws_solutions_constructs.core.egg-info → aws-solutions-constructs.core-2.56.0}/PKG-INFO +3 -1
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/README.md +2 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/setup.py +4 -4
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/src/aws_solutions_constructs/core/__init__.py +2 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/src/aws_solutions_constructs/core/_jsii/__init__.py +1 -1
- aws-solutions-constructs.core-2.56.0/src/aws_solutions_constructs/core/_jsii/core@2.56.0.jsii.tgz +0 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0/src/aws_solutions_constructs.core.egg-info}/PKG-INFO +3 -1
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/src/aws_solutions_constructs.core.egg-info/SOURCES.txt +1 -1
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/src/aws_solutions_constructs.core.egg-info/requires.txt +2 -2
- aws-solutions-constructs.core-2.55.0/src/aws_solutions_constructs/core/_jsii/core@2.55.0.jsii.tgz +0 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/LICENSE +0 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/MANIFEST.in +0 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/pyproject.toml +0 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/setup.cfg +0 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/src/aws_solutions_constructs/core/py.typed +0 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/src/aws_solutions_constructs.core.egg-info/dependency_links.txt +0 -0
- {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.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.56.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
|
|
@@ -41,6 +41,8 @@ License-File: LICENSE
|
|
|
41
41
|
|
|
42
42
|
The core library includes the basic building blocks of the AWS Solutions Constructs Library. It defines the core classes that are used in the rest of the AWS Solutions Constructs Library.
|
|
43
43
|
|
|
44
|
+
> NOTE: Functions in the core library are not part of the published interface for Solutions Constructs. While they are not hidden, using them directly can result in breaking changes outside the scope of a Major release. As many users have expressed an interest in accessing this functionality, we are in the process of exposing this functionality through factories that will produce individual well architected resources. Find the current state of this effort under `aws-constructs-factories`.
|
|
45
|
+
|
|
44
46
|
## Default Properties for AWS CDK Constructs
|
|
45
47
|
|
|
46
48
|
Core library sets the default properties for the AWS CDK Constructs used by the AWS Solutions Constructs Library constructs.
|
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
|
|
20
20
|
The core library includes the basic building blocks of the AWS Solutions Constructs Library. It defines the core classes that are used in the rest of the AWS Solutions Constructs Library.
|
|
21
21
|
|
|
22
|
+
> NOTE: Functions in the core library are not part of the published interface for Solutions Constructs. While they are not hidden, using them directly can result in breaking changes outside the scope of a Major release. As many users have expressed an interest in accessing this functionality, we are in the process of exposing this functionality through factories that will produce individual well architected resources. Find the current state of this effort under `aws-constructs-factories`.
|
|
23
|
+
|
|
22
24
|
## Default Properties for AWS CDK Constructs
|
|
23
25
|
|
|
24
26
|
Core library sets the default properties for the AWS CDK Constructs used by the AWS Solutions Constructs Library constructs.
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-solutions-constructs.core",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.56.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.56.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.core": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,8 +34,8 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.8",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
38
|
-
"aws-cdk.integ-tests-alpha==2.
|
|
37
|
+
"aws-cdk-lib>=2.138.0, <3.0.0",
|
|
38
|
+
"aws-cdk.integ-tests-alpha==2.138.0.a0",
|
|
39
39
|
"constructs>=10.0.0, <11.0.0",
|
|
40
40
|
"jsii>=1.97.0, <2.0.0",
|
|
41
41
|
"publication>=0.0.3",
|
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
|
|
21
21
|
The core library includes the basic building blocks of the AWS Solutions Constructs Library. It defines the core classes that are used in the rest of the AWS Solutions Constructs Library.
|
|
22
22
|
|
|
23
|
+
> NOTE: Functions in the core library are not part of the published interface for Solutions Constructs. While they are not hidden, using them directly can result in breaking changes outside the scope of a Major release. As many users have expressed an interest in accessing this functionality, we are in the process of exposing this functionality through factories that will produce individual well architected resources. Find the current state of this effort under `aws-constructs-factories`.
|
|
24
|
+
|
|
23
25
|
## Default Properties for AWS CDK Constructs
|
|
24
26
|
|
|
25
27
|
Core library sets the default properties for the AWS CDK Constructs used by the AWS Solutions Constructs Library constructs.
|
|
@@ -18,7 +18,7 @@ import aws_cdk.integ_tests_alpha._jsii
|
|
|
18
18
|
import constructs._jsii
|
|
19
19
|
|
|
20
20
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
21
|
-
"@aws-solutions-constructs/core", "2.
|
|
21
|
+
"@aws-solutions-constructs/core", "2.56.0", __name__[0:-6], "core@2.56.0.jsii.tgz"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
__all__ = [
|
aws-solutions-constructs.core-2.56.0/src/aws_solutions_constructs/core/_jsii/core@2.56.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.56.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
|
|
@@ -41,6 +41,8 @@ License-File: LICENSE
|
|
|
41
41
|
|
|
42
42
|
The core library includes the basic building blocks of the AWS Solutions Constructs Library. It defines the core classes that are used in the rest of the AWS Solutions Constructs Library.
|
|
43
43
|
|
|
44
|
+
> NOTE: Functions in the core library are not part of the published interface for Solutions Constructs. While they are not hidden, using them directly can result in breaking changes outside the scope of a Major release. As many users have expressed an interest in accessing this functionality, we are in the process of exposing this functionality through factories that will produce individual well architected resources. Find the current state of this effort under `aws-constructs-factories`.
|
|
45
|
+
|
|
44
46
|
## Default Properties for AWS CDK Constructs
|
|
45
47
|
|
|
46
48
|
Core library sets the default properties for the AWS CDK Constructs used by the AWS Solutions Constructs Library constructs.
|
|
@@ -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.56.0.jsii.tgz
|
aws-solutions-constructs.core-2.55.0/src/aws_solutions_constructs/core/_jsii/core@2.55.0.jsii.tgz
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
{aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/pyproject.toml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|