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.
Files changed (17) hide show
  1. {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
  2. {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/README.md +2 -0
  3. {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/setup.py +4 -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
  5. {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/src/aws_solutions_constructs/core/_jsii/__init__.py +1 -1
  6. aws-solutions-constructs.core-2.56.0/src/aws_solutions_constructs/core/_jsii/core@2.56.0.jsii.tgz +0 -0
  7. {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
  8. {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
  9. {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
  10. aws-solutions-constructs.core-2.55.0/src/aws_solutions_constructs/core/_jsii/core@2.55.0.jsii.tgz +0 -0
  11. {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/LICENSE +0 -0
  12. {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/MANIFEST.in +0 -0
  13. {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/pyproject.toml +0 -0
  14. {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/setup.cfg +0 -0
  15. {aws-solutions-constructs.core-2.55.0 → aws-solutions-constructs.core-2.56.0}/src/aws_solutions_constructs/core/py.typed +0 -0
  16. {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
  17. {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.55.0
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.55.0",
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.55.0.jsii.tgz"
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.135.0, <3.0.0",
38
- "aws-cdk.integ-tests-alpha==2.135.0.a0",
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.55.0", __name__[0:-6], "core@2.55.0.jsii.tgz"
21
+ "@aws-solutions-constructs/core", "2.56.0", __name__[0:-6], "core@2.56.0.jsii.tgz"
22
22
  )
23
23
 
24
24
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.core
3
- Version: 2.55.0
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.55.0.jsii.tgz
14
+ src/aws_solutions_constructs/core/_jsii/core@2.56.0.jsii.tgz
@@ -1,5 +1,5 @@
1
- aws-cdk-lib<3.0.0,>=2.135.0
2
- aws-cdk.integ-tests-alpha==2.135.0.a0
1
+ aws-cdk-lib<3.0.0,>=2.138.0
2
+ aws-cdk.integ-tests-alpha==2.138.0.a0
3
3
  constructs<11.0.0,>=10.0.0
4
4
  jsii<2.0.0,>=1.97.0
5
5
  publication>=0.0.3