aws-cdk.cx-api 2.195.0__tar.gz → 2.196.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.
Potentially problematic release.
This version of aws-cdk.cx-api might be problematic. Click here for more details.
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/PKG-INFO +35 -2
- aws_cdk_cx_api-2.195.0/src/aws_cdk.cx_api.egg-info/PKG-INFO → aws_cdk_cx_api-2.196.1/README.md +33 -29
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/setup.py +3 -3
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/src/aws_cdk/cx_api/__init__.py +33 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws_cdk_cx_api-2.196.1/src/aws_cdk/cx_api/_jsii/cx-api@2.196.1.jsii.tgz +0 -0
- aws_cdk_cx_api-2.195.0/README.md → aws_cdk_cx_api-2.196.1/src/aws_cdk.cx_api.egg-info/PKG-INFO +62 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/src/aws_cdk.cx_api.egg-info/requires.txt +1 -1
- aws_cdk_cx_api-2.195.0/src/aws_cdk/cx_api/_jsii/cx-api@2.195.0.jsii.tgz +0 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/LICENSE +0 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/MANIFEST.in +0 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/NOTICE +0 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/pyproject.toml +0 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/setup.cfg +0 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/src/aws_cdk/cx_api/py.typed +0 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
- {aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/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.196.1
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -23,7 +23,7 @@ Description-Content-Type: text/markdown
|
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: NOTICE
|
|
25
25
|
Requires-Dist: aws-cdk.cloud-assembly-schema>=41.0.0
|
|
26
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
26
|
+
Requires-Dist: jsii<2.0.0,>=1.112.0
|
|
27
27
|
Requires-Dist: publication>=0.0.3
|
|
28
28
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
29
29
|
|
|
@@ -746,3 +746,36 @@ resource lambda function logs.
|
|
|
746
746
|
}
|
|
747
747
|
}
|
|
748
748
|
```
|
|
749
|
+
|
|
750
|
+
* `@aws-cdk/aws-s3:publicAccessBlockedByDefault`
|
|
751
|
+
|
|
752
|
+
When BlockPublicAccess is not set at all, s3's default behavior will be to set all options to true in aws console.
|
|
753
|
+
The previous behavior in cdk before this feature was; if only some of the BlockPublicAccessOptions were set (not all 4), then the ones undefined would default to false.
|
|
754
|
+
This is counter intuitive to the console behavior where the options would start in true state and a user would uncheck the boxes as needed.
|
|
755
|
+
The new behavior from this feature will allow a user, for example, to set 1 of the 4 BlockPublicAccessOpsions to false, and on deployment the other 3 will remain true.
|
|
756
|
+
|
|
757
|
+
*cdk.json*
|
|
758
|
+
|
|
759
|
+
```json
|
|
760
|
+
{
|
|
761
|
+
"context": {
|
|
762
|
+
"@aws-cdk/aws-s3:publicAccessBlockedByDefault": true
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
```
|
|
766
|
+
|
|
767
|
+
* `@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway`
|
|
768
|
+
|
|
769
|
+
When this feature flag is enabled, EgressOnlyGateway is created only for dual-stack VPC with private subnets
|
|
770
|
+
|
|
771
|
+
When this feature flag is disabled, EgressOnlyGateway resource is created for all dual-stack VPC regardless of subnet type
|
|
772
|
+
|
|
773
|
+
*cdk.json*
|
|
774
|
+
|
|
775
|
+
```json
|
|
776
|
+
{
|
|
777
|
+
"context": {
|
|
778
|
+
"@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": true
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
```
|
aws_cdk_cx_api-2.195.0/src/aws_cdk.cx_api.egg-info/PKG-INFO → aws_cdk_cx_api-2.196.1/README.md
RENAMED
|
@@ -1,32 +1,3 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: aws-cdk.cx-api
|
|
3
|
-
Version: 2.195.0
|
|
4
|
-
Summary: Cloud executable protocol
|
|
5
|
-
Home-page: https://github.com/aws/aws-cdk
|
|
6
|
-
Author: Amazon Web Services
|
|
7
|
-
License: Apache-2.0
|
|
8
|
-
Project-URL: Source, https://github.com/aws/aws-cdk.git
|
|
9
|
-
Classifier: Intended Audience :: Developers
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Classifier: Programming Language :: JavaScript
|
|
12
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
-
Classifier: Typing :: Typed
|
|
17
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
18
|
-
Classifier: License :: OSI Approved
|
|
19
|
-
Classifier: Framework :: AWS CDK
|
|
20
|
-
Classifier: Framework :: AWS CDK :: 2
|
|
21
|
-
Requires-Python: ~=3.9
|
|
22
|
-
Description-Content-Type: text/markdown
|
|
23
|
-
License-File: LICENSE
|
|
24
|
-
License-File: NOTICE
|
|
25
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema>=41.0.0
|
|
26
|
-
Requires-Dist: jsii<2.0.0,>=1.110.0
|
|
27
|
-
Requires-Dist: publication>=0.0.3
|
|
28
|
-
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
29
|
-
|
|
30
1
|
# Cloud Executable API
|
|
31
2
|
|
|
32
3
|
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
|
|
@@ -746,3 +717,36 @@ resource lambda function logs.
|
|
|
746
717
|
}
|
|
747
718
|
}
|
|
748
719
|
```
|
|
720
|
+
|
|
721
|
+
* `@aws-cdk/aws-s3:publicAccessBlockedByDefault`
|
|
722
|
+
|
|
723
|
+
When BlockPublicAccess is not set at all, s3's default behavior will be to set all options to true in aws console.
|
|
724
|
+
The previous behavior in cdk before this feature was; if only some of the BlockPublicAccessOptions were set (not all 4), then the ones undefined would default to false.
|
|
725
|
+
This is counter intuitive to the console behavior where the options would start in true state and a user would uncheck the boxes as needed.
|
|
726
|
+
The new behavior from this feature will allow a user, for example, to set 1 of the 4 BlockPublicAccessOpsions to false, and on deployment the other 3 will remain true.
|
|
727
|
+
|
|
728
|
+
*cdk.json*
|
|
729
|
+
|
|
730
|
+
```json
|
|
731
|
+
{
|
|
732
|
+
"context": {
|
|
733
|
+
"@aws-cdk/aws-s3:publicAccessBlockedByDefault": true
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
```
|
|
737
|
+
|
|
738
|
+
* `@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway`
|
|
739
|
+
|
|
740
|
+
When this feature flag is enabled, EgressOnlyGateway is created only for dual-stack VPC with private subnets
|
|
741
|
+
|
|
742
|
+
When this feature flag is disabled, EgressOnlyGateway resource is created for all dual-stack VPC regardless of subnet type
|
|
743
|
+
|
|
744
|
+
*cdk.json*
|
|
745
|
+
|
|
746
|
+
```json
|
|
747
|
+
{
|
|
748
|
+
"context": {
|
|
749
|
+
"@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": true
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
```
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-cdk.cx-api",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.196.1",
|
|
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.196.1.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_cdk.cx_api": [
|
|
32
32
|
"py.typed"
|
|
@@ -35,7 +35,7 @@ kwargs = json.loads(
|
|
|
35
35
|
"python_requires": "~=3.9",
|
|
36
36
|
"install_requires": [
|
|
37
37
|
"aws-cdk.cloud-assembly-schema>=41.0.0",
|
|
38
|
-
"jsii>=1.
|
|
38
|
+
"jsii>=1.112.0, <2.0.0",
|
|
39
39
|
"publication>=0.0.3",
|
|
40
40
|
"typeguard>=2.13.3,<4.3.0"
|
|
41
41
|
],
|
|
@@ -718,6 +718,39 @@ resource lambda function logs.
|
|
|
718
718
|
}
|
|
719
719
|
}
|
|
720
720
|
```
|
|
721
|
+
|
|
722
|
+
* `@aws-cdk/aws-s3:publicAccessBlockedByDefault`
|
|
723
|
+
|
|
724
|
+
When BlockPublicAccess is not set at all, s3's default behavior will be to set all options to true in aws console.
|
|
725
|
+
The previous behavior in cdk before this feature was; if only some of the BlockPublicAccessOptions were set (not all 4), then the ones undefined would default to false.
|
|
726
|
+
This is counter intuitive to the console behavior where the options would start in true state and a user would uncheck the boxes as needed.
|
|
727
|
+
The new behavior from this feature will allow a user, for example, to set 1 of the 4 BlockPublicAccessOpsions to false, and on deployment the other 3 will remain true.
|
|
728
|
+
|
|
729
|
+
*cdk.json*
|
|
730
|
+
|
|
731
|
+
```json
|
|
732
|
+
{
|
|
733
|
+
"context": {
|
|
734
|
+
"@aws-cdk/aws-s3:publicAccessBlockedByDefault": true
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
```
|
|
738
|
+
|
|
739
|
+
* `@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway`
|
|
740
|
+
|
|
741
|
+
When this feature flag is enabled, EgressOnlyGateway is created only for dual-stack VPC with private subnets
|
|
742
|
+
|
|
743
|
+
When this feature flag is disabled, EgressOnlyGateway resource is created for all dual-stack VPC regardless of subnet type
|
|
744
|
+
|
|
745
|
+
*cdk.json*
|
|
746
|
+
|
|
747
|
+
```json
|
|
748
|
+
{
|
|
749
|
+
"context": {
|
|
750
|
+
"@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": true
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
```
|
|
721
754
|
'''
|
|
722
755
|
from pkgutil import extend_path
|
|
723
756
|
__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.196.1", __name__[0:-6], "cx-api@2.196.1.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__all__ = [
|
|
Binary file
|
aws_cdk_cx_api-2.195.0/README.md → aws_cdk_cx_api-2.196.1/src/aws_cdk.cx_api.egg-info/PKG-INFO
RENAMED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: aws-cdk.cx-api
|
|
3
|
+
Version: 2.196.1
|
|
4
|
+
Summary: Cloud executable protocol
|
|
5
|
+
Home-page: https://github.com/aws/aws-cdk
|
|
6
|
+
Author: Amazon Web Services
|
|
7
|
+
License: Apache-2.0
|
|
8
|
+
Project-URL: Source, https://github.com/aws/aws-cdk.git
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: JavaScript
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Typing :: Typed
|
|
17
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
18
|
+
Classifier: License :: OSI Approved
|
|
19
|
+
Classifier: Framework :: AWS CDK
|
|
20
|
+
Classifier: Framework :: AWS CDK :: 2
|
|
21
|
+
Requires-Python: ~=3.9
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
License-File: NOTICE
|
|
25
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema>=41.0.0
|
|
26
|
+
Requires-Dist: jsii<2.0.0,>=1.112.0
|
|
27
|
+
Requires-Dist: publication>=0.0.3
|
|
28
|
+
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
29
|
+
|
|
1
30
|
# Cloud Executable API
|
|
2
31
|
|
|
3
32
|
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
|
|
@@ -717,3 +746,36 @@ resource lambda function logs.
|
|
|
717
746
|
}
|
|
718
747
|
}
|
|
719
748
|
```
|
|
749
|
+
|
|
750
|
+
* `@aws-cdk/aws-s3:publicAccessBlockedByDefault`
|
|
751
|
+
|
|
752
|
+
When BlockPublicAccess is not set at all, s3's default behavior will be to set all options to true in aws console.
|
|
753
|
+
The previous behavior in cdk before this feature was; if only some of the BlockPublicAccessOptions were set (not all 4), then the ones undefined would default to false.
|
|
754
|
+
This is counter intuitive to the console behavior where the options would start in true state and a user would uncheck the boxes as needed.
|
|
755
|
+
The new behavior from this feature will allow a user, for example, to set 1 of the 4 BlockPublicAccessOpsions to false, and on deployment the other 3 will remain true.
|
|
756
|
+
|
|
757
|
+
*cdk.json*
|
|
758
|
+
|
|
759
|
+
```json
|
|
760
|
+
{
|
|
761
|
+
"context": {
|
|
762
|
+
"@aws-cdk/aws-s3:publicAccessBlockedByDefault": true
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
```
|
|
766
|
+
|
|
767
|
+
* `@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway`
|
|
768
|
+
|
|
769
|
+
When this feature flag is enabled, EgressOnlyGateway is created only for dual-stack VPC with private subnets
|
|
770
|
+
|
|
771
|
+
When this feature flag is disabled, EgressOnlyGateway resource is created for all dual-stack VPC regardless of subnet type
|
|
772
|
+
|
|
773
|
+
*cdk.json*
|
|
774
|
+
|
|
775
|
+
```json
|
|
776
|
+
{
|
|
777
|
+
"context": {
|
|
778
|
+
"@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": true
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
```
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws_cdk_cx_api-2.195.0 → aws_cdk_cx_api-2.196.1}/src/aws_cdk.cx_api.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|