aws-cdk.cx-api 2.211.0__py3-none-any.whl → 2.213.0__py3-none-any.whl
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/__init__.py +22 -0
- aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws_cdk/cx_api/_jsii/cx-api@2.213.0.jsii.tgz +0 -0
- {aws_cdk_cx_api-2.211.0.dist-info → aws_cdk_cx_api-2.213.0.dist-info}/METADATA +23 -1
- aws_cdk_cx_api-2.213.0.dist-info/RECORD +10 -0
- aws_cdk/cx_api/_jsii/cx-api@2.211.0.jsii.tgz +0 -0
- aws_cdk_cx_api-2.211.0.dist-info/RECORD +0 -10
- {aws_cdk_cx_api-2.211.0.dist-info → aws_cdk_cx_api-2.213.0.dist-info}/LICENSE +0 -0
- {aws_cdk_cx_api-2.211.0.dist-info → aws_cdk_cx_api-2.213.0.dist-info}/NOTICE +0 -0
- {aws_cdk_cx_api-2.211.0.dist-info → aws_cdk_cx_api-2.213.0.dist-info}/WHEEL +0 -0
- {aws_cdk_cx_api-2.211.0.dist-info → aws_cdk_cx_api-2.213.0.dist-info}/top_level.txt +0 -0
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -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__)
|
aws_cdk/cx_api/_jsii/__init__.py
CHANGED
|
@@ -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.213.0", __name__[0:-6], "cx-api@2.213.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.213.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -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
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/cx_api/__init__.py,sha256=C3UGTbPRNX2SSUQb-ISZb5GiwRpUQEFk9NJhVbSB1G0,203303
|
|
2
|
+
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/cx_api/_jsii/__init__.py,sha256=Dg68cesisjxxdZSa4U2Lpgv4YgCoQCPqPst0IP2fivA,1434
|
|
4
|
+
aws_cdk/cx_api/_jsii/cx-api@2.213.0.jsii.tgz,sha256=DbzikjK7JX3ZEzbJDC9iYVSmg9lEOmRrcqPfvc1ctHQ,261653
|
|
5
|
+
aws_cdk_cx_api-2.213.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
+
aws_cdk_cx_api-2.213.0.dist-info/METADATA,sha256=zLyLLPojw5i3YsZjRAE2Zl0KXW9mygpUheNcVPmDwYw,27777
|
|
7
|
+
aws_cdk_cx_api-2.213.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
+
aws_cdk_cx_api-2.213.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
9
|
+
aws_cdk_cx_api-2.213.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk_cx_api-2.213.0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
aws_cdk/cx_api/__init__.py,sha256=xSDUj5FgmmXjxU2rwsOAfRFWBeHMe0r9BkOIHMkXiK0,202518
|
|
2
|
-
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/cx_api/_jsii/__init__.py,sha256=Ipgb63GcQ3Uwz0444-XiVX-Bi_4vI3gf8qkQ09yqC6A,1434
|
|
4
|
-
aws_cdk/cx_api/_jsii/cx-api@2.211.0.jsii.tgz,sha256=O6WOUDIrWmEdNBwj07gpqpjySVIadsNxqNJ1RvVZZi4,260405
|
|
5
|
-
aws_cdk_cx_api-2.211.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
-
aws_cdk_cx_api-2.211.0.dist-info/METADATA,sha256=3a3YEVAhlxiJM2rbd_PxDBap6zfq7cXOid-pm7OBXCA,26992
|
|
7
|
-
aws_cdk_cx_api-2.211.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
-
aws_cdk_cx_api-2.211.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
9
|
-
aws_cdk_cx_api-2.211.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk_cx_api-2.211.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|