aws-cdk.cx-api 2.186.0__tar.gz → 2.187.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.
Potentially problematic release.
This version of aws-cdk.cx-api might be problematic. Click here for more details.
- {aws_cdk_cx_api-2.186.0/src/aws_cdk.cx_api.egg-info → aws_cdk_cx_api-2.187.0}/PKG-INFO +18 -3
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/README.md +15 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/pyproject.toml +1 -1
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/setup.py +4 -4
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/src/aws_cdk/cx_api/__init__.py +15 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws_cdk_cx_api-2.187.0/src/aws_cdk/cx_api/_jsii/cx-api@2.187.0.jsii.tgz +0 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0/src/aws_cdk.cx_api.egg-info}/PKG-INFO +18 -3
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
- aws_cdk_cx_api-2.187.0/src/aws_cdk.cx_api.egg-info/requires.txt +4 -0
- aws_cdk_cx_api-2.186.0/src/aws_cdk/cx_api/_jsii/cx-api@2.186.0.jsii.tgz +0 -0
- aws_cdk_cx_api-2.186.0/src/aws_cdk.cx_api.egg-info/requires.txt +0 -4
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/LICENSE +0 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/MANIFEST.in +0 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/NOTICE +0 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/setup.cfg +0 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/src/aws_cdk/cx_api/py.typed +0 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
- {aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/src/aws_cdk.cx_api.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.cx-api
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.187.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -22,8 +22,8 @@ Requires-Python: ~=3.9
|
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: NOTICE
|
|
25
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema<
|
|
26
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
25
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema<42.0.0,>=41.0.0
|
|
26
|
+
Requires-Dist: jsii<2.0.0,>=1.110.0
|
|
27
27
|
Requires-Dist: publication>=0.0.3
|
|
28
28
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
29
29
|
|
|
@@ -710,3 +710,18 @@ When this flag is disabled:
|
|
|
710
710
|
}
|
|
711
711
|
}
|
|
712
712
|
```
|
|
713
|
+
|
|
714
|
+
* `@aws-cdk/aws-dynamodb:retainTableReplica`
|
|
715
|
+
|
|
716
|
+
Currently, table replica will always be deleted when stack deletes regardless of source table's deletion policy.
|
|
717
|
+
When enabled, table replica will be default to the removal policy of source table unless specified otherwise.
|
|
718
|
+
|
|
719
|
+
*cdk.json*
|
|
720
|
+
|
|
721
|
+
```json
|
|
722
|
+
{
|
|
723
|
+
"context": {
|
|
724
|
+
"@aws-cdk/aws-dynamodb:retainTableReplica": true
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
```
|
|
@@ -681,3 +681,18 @@ When this flag is disabled:
|
|
|
681
681
|
}
|
|
682
682
|
}
|
|
683
683
|
```
|
|
684
|
+
|
|
685
|
+
* `@aws-cdk/aws-dynamodb:retainTableReplica`
|
|
686
|
+
|
|
687
|
+
Currently, table replica will always be deleted when stack deletes regardless of source table's deletion policy.
|
|
688
|
+
When enabled, table replica will be default to the removal policy of source table unless specified otherwise.
|
|
689
|
+
|
|
690
|
+
*cdk.json*
|
|
691
|
+
|
|
692
|
+
```json
|
|
693
|
+
{
|
|
694
|
+
"context": {
|
|
695
|
+
"@aws-cdk/aws-dynamodb:retainTableReplica": true
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
```
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-cdk.cx-api",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.187.0",
|
|
9
9
|
"description": "Cloud executable protocol",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/aws/aws-cdk",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"aws_cdk.cx_api._jsii": [
|
|
29
|
-
"cx-api@2.
|
|
29
|
+
"cx-api@2.187.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_cdk.cx_api": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,8 +34,8 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.9",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk.cloud-assembly-schema>=
|
|
38
|
-
"jsii>=1.
|
|
37
|
+
"aws-cdk.cloud-assembly-schema>=41.0.0, <42.0.0",
|
|
38
|
+
"jsii>=1.110.0, <2.0.0",
|
|
39
39
|
"publication>=0.0.3",
|
|
40
40
|
"typeguard>=2.13.3,<4.3.0"
|
|
41
41
|
],
|
|
@@ -682,6 +682,21 @@ When this flag is disabled:
|
|
|
682
682
|
}
|
|
683
683
|
}
|
|
684
684
|
```
|
|
685
|
+
|
|
686
|
+
* `@aws-cdk/aws-dynamodb:retainTableReplica`
|
|
687
|
+
|
|
688
|
+
Currently, table replica will always be deleted when stack deletes regardless of source table's deletion policy.
|
|
689
|
+
When enabled, table replica will be default to the removal policy of source table unless specified otherwise.
|
|
690
|
+
|
|
691
|
+
*cdk.json*
|
|
692
|
+
|
|
693
|
+
```json
|
|
694
|
+
{
|
|
695
|
+
"context": {
|
|
696
|
+
"@aws-cdk/aws-dynamodb:retainTableReplica": true
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
```
|
|
685
700
|
'''
|
|
686
701
|
from pkgutil import extend_path
|
|
687
702
|
__path__ = extend_path(__path__, __name__)
|
|
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
import aws_cdk.cloud_assembly_schema._jsii
|
|
32
32
|
|
|
33
33
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
34
|
-
"@aws-cdk/cx-api", "2.
|
|
34
|
+
"@aws-cdk/cx-api", "2.187.0", __name__[0:-6], "cx-api@2.187.0.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.cx-api
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.187.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -22,8 +22,8 @@ Requires-Python: ~=3.9
|
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: NOTICE
|
|
25
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema<
|
|
26
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
25
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema<42.0.0,>=41.0.0
|
|
26
|
+
Requires-Dist: jsii<2.0.0,>=1.110.0
|
|
27
27
|
Requires-Dist: publication>=0.0.3
|
|
28
28
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
29
29
|
|
|
@@ -710,3 +710,18 @@ When this flag is disabled:
|
|
|
710
710
|
}
|
|
711
711
|
}
|
|
712
712
|
```
|
|
713
|
+
|
|
714
|
+
* `@aws-cdk/aws-dynamodb:retainTableReplica`
|
|
715
|
+
|
|
716
|
+
Currently, table replica will always be deleted when stack deletes regardless of source table's deletion policy.
|
|
717
|
+
When enabled, table replica will be default to the removal policy of source table unless specified otherwise.
|
|
718
|
+
|
|
719
|
+
*cdk.json*
|
|
720
|
+
|
|
721
|
+
```json
|
|
722
|
+
{
|
|
723
|
+
"context": {
|
|
724
|
+
"@aws-cdk/aws-dynamodb:retainTableReplica": true
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
```
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws_cdk_cx_api-2.186.0 → aws_cdk_cx_api-2.187.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|