aws-cdk.cx-api 2.210.0__tar.gz → 2.212.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.

Files changed (18) hide show
  1. {aws_cdk_cx_api-2.210.0/src/aws_cdk.cx_api.egg-info → aws_cdk_cx_api-2.212.0}/PKG-INFO +24 -2
  2. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/README.md +22 -0
  3. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/pyproject.toml +1 -1
  4. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/setup.py +3 -3
  5. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/src/aws_cdk/cx_api/__init__.py +22 -0
  6. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
  7. aws_cdk_cx_api-2.212.0/src/aws_cdk/cx_api/_jsii/cx-api@2.212.0.jsii.tgz +0 -0
  8. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0/src/aws_cdk.cx_api.egg-info}/PKG-INFO +24 -2
  9. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
  10. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/src/aws_cdk.cx_api.egg-info/requires.txt +1 -1
  11. aws_cdk_cx_api-2.210.0/src/aws_cdk/cx_api/_jsii/cx-api@2.210.0.jsii.tgz +0 -0
  12. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/LICENSE +0 -0
  13. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/MANIFEST.in +0 -0
  14. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/NOTICE +0 -0
  15. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/setup.cfg +0 -0
  16. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/src/aws_cdk/cx_api/py.typed +0 -0
  17. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
  18. {aws_cdk_cx_api-2.210.0 → aws_cdk_cx_api-2.212.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.210.0
3
+ Version: 2.212.0
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>=45.0.0
26
- Requires-Dist: jsii<2.0.0,>=1.112.0
26
+ Requires-Dist: jsii<2.0.0,>=1.113.0
27
27
  Requires-Dist: publication>=0.0.3
28
28
  Requires-Dist: typeguard<4.3.0,>=2.13.3
29
29
 
@@ -793,3 +793,25 @@ When this feature flag is disabled, EgressOnlyGateway resource is created for al
793
793
  }
794
794
  }
795
795
  ```
796
+
797
+ * `@aws-cdk/aws-signer:signingProfileNamePassedToCfn`
798
+
799
+ When this feature flag is enabled, the `signingProfileName` property is passed to the L1 `CfnSigningProfile` construct,
800
+ which ensures that the AWS Signer profile is created with the specified name.
801
+
802
+ When this feature flag is disabled, the `signingProfileName` is not passed to CloudFormation, maintaining backward
803
+ compatibility with existing deployments where CloudFormation auto-generated profile names.
804
+
805
+ This feature flag is needed because enabling it can cause existing signing profiles to be
806
+ replaced during deployment if a `signingProfileName` was specified but not previously used
807
+ in the CloudFormation template.
808
+
809
+ *cdk.json*
810
+
811
+ ```json
812
+ {
813
+ "context": {
814
+ "@aws-cdk/aws-signer:signingProfileNamePassedToCfn": true
815
+ }
816
+ }
817
+ ```
@@ -764,3 +764,25 @@ When this feature flag is disabled, EgressOnlyGateway resource is created for al
764
764
  }
765
765
  }
766
766
  ```
767
+
768
+ * `@aws-cdk/aws-signer:signingProfileNamePassedToCfn`
769
+
770
+ When this feature flag is enabled, the `signingProfileName` property is passed to the L1 `CfnSigningProfile` construct,
771
+ which ensures that the AWS Signer profile is created with the specified name.
772
+
773
+ When this feature flag is disabled, the `signingProfileName` is not passed to CloudFormation, maintaining backward
774
+ compatibility with existing deployments where CloudFormation auto-generated profile names.
775
+
776
+ This feature flag is needed because enabling it can cause existing signing profiles to be
777
+ replaced during deployment if a `signingProfileName` was specified but not previously used
778
+ in the CloudFormation template.
779
+
780
+ *cdk.json*
781
+
782
+ ```json
783
+ {
784
+ "context": {
785
+ "@aws-cdk/aws-signer:signingProfileNamePassedToCfn": true
786
+ }
787
+ }
788
+ ```
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools~=75.3.2", "wheel~=0.42"]
2
+ requires = ["setuptools~=75.3.2", "build~=1.2.2.post1"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [tool.pyright]
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-cdk.cx-api",
8
- "version": "2.210.0",
8
+ "version": "2.212.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.210.0.jsii.tgz"
29
+ "cx-api@2.212.0.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>=45.0.0",
38
- "jsii>=1.112.0, <2.0.0",
38
+ "jsii>=1.113.0, <2.0.0",
39
39
  "publication>=0.0.3",
40
40
  "typeguard>=2.13.3,<4.3.0"
41
41
  ],
@@ -765,6 +765,28 @@ When this feature flag is disabled, EgressOnlyGateway resource is created for al
765
765
  }
766
766
  }
767
767
  ```
768
+
769
+ * `@aws-cdk/aws-signer:signingProfileNamePassedToCfn`
770
+
771
+ When this feature flag is enabled, the `signingProfileName` property is passed to the L1 `CfnSigningProfile` construct,
772
+ which ensures that the AWS Signer profile is created with the specified name.
773
+
774
+ When this feature flag is disabled, the `signingProfileName` is not passed to CloudFormation, maintaining backward
775
+ compatibility with existing deployments where CloudFormation auto-generated profile names.
776
+
777
+ This feature flag is needed because enabling it can cause existing signing profiles to be
778
+ replaced during deployment if a `signingProfileName` was specified but not previously used
779
+ in the CloudFormation template.
780
+
781
+ *cdk.json*
782
+
783
+ ```json
784
+ {
785
+ "context": {
786
+ "@aws-cdk/aws-signer:signingProfileNamePassedToCfn": true
787
+ }
788
+ }
789
+ ```
768
790
  '''
769
791
  from pkgutil import extend_path
770
792
  __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.210.0", __name__[0:-6], "cx-api@2.210.0.jsii.tgz"
34
+ "@aws-cdk/cx-api", "2.212.0", __name__[0:-6], "cx-api@2.212.0.jsii.tgz"
35
35
  )
36
36
 
37
37
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.cx-api
3
- Version: 2.210.0
3
+ Version: 2.212.0
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>=45.0.0
26
- Requires-Dist: jsii<2.0.0,>=1.112.0
26
+ Requires-Dist: jsii<2.0.0,>=1.113.0
27
27
  Requires-Dist: publication>=0.0.3
28
28
  Requires-Dist: typeguard<4.3.0,>=2.13.3
29
29
 
@@ -793,3 +793,25 @@ When this feature flag is disabled, EgressOnlyGateway resource is created for al
793
793
  }
794
794
  }
795
795
  ```
796
+
797
+ * `@aws-cdk/aws-signer:signingProfileNamePassedToCfn`
798
+
799
+ When this feature flag is enabled, the `signingProfileName` property is passed to the L1 `CfnSigningProfile` construct,
800
+ which ensures that the AWS Signer profile is created with the specified name.
801
+
802
+ When this feature flag is disabled, the `signingProfileName` is not passed to CloudFormation, maintaining backward
803
+ compatibility with existing deployments where CloudFormation auto-generated profile names.
804
+
805
+ This feature flag is needed because enabling it can cause existing signing profiles to be
806
+ replaced during deployment if a `signingProfileName` was specified but not previously used
807
+ in the CloudFormation template.
808
+
809
+ *cdk.json*
810
+
811
+ ```json
812
+ {
813
+ "context": {
814
+ "@aws-cdk/aws-signer:signingProfileNamePassedToCfn": true
815
+ }
816
+ }
817
+ ```
@@ -12,4 +12,4 @@ src/aws_cdk.cx_api.egg-info/top_level.txt
12
12
  src/aws_cdk/cx_api/__init__.py
13
13
  src/aws_cdk/cx_api/py.typed
14
14
  src/aws_cdk/cx_api/_jsii/__init__.py
15
- src/aws_cdk/cx_api/_jsii/cx-api@2.210.0.jsii.tgz
15
+ src/aws_cdk/cx_api/_jsii/cx-api@2.212.0.jsii.tgz
@@ -1,4 +1,4 @@
1
1
  aws-cdk.cloud-assembly-schema>=45.0.0
2
- jsii<2.0.0,>=1.112.0
2
+ jsii<2.0.0,>=1.113.0
3
3
  publication>=0.0.3
4
4
  typeguard<4.3.0,>=2.13.3