aws-cdk.cx-api 2.220.0__py3-none-any.whl → 2.221.1__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 +34 -0
- aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws_cdk/cx_api/_jsii/cx-api@2.221.1.jsii.tgz +0 -0
- {aws_cdk_cx_api-2.220.0.dist-info → aws_cdk_cx_api-2.221.1.dist-info}/METADATA +33 -2
- aws_cdk_cx_api-2.221.1.dist-info/RECORD +10 -0
- aws_cdk/cx_api/_jsii/cx-api@2.220.0.jsii.tgz +0 -0
- aws_cdk_cx_api-2.220.0.dist-info/RECORD +0 -10
- {aws_cdk_cx_api-2.220.0.dist-info → aws_cdk_cx_api-2.221.1.dist-info}/LICENSE +0 -0
- {aws_cdk_cx_api-2.220.0.dist-info → aws_cdk_cx_api-2.221.1.dist-info}/NOTICE +0 -0
- {aws_cdk_cx_api-2.220.0.dist-info → aws_cdk_cx_api-2.221.1.dist-info}/WHEEL +0 -0
- {aws_cdk_cx_api-2.220.0.dist-info → aws_cdk_cx_api-2.221.1.dist-info}/top_level.txt +0 -0
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -766,6 +766,21 @@ When this feature flag is disabled, EgressOnlyGateway resource is created for al
|
|
|
766
766
|
}
|
|
767
767
|
```
|
|
768
768
|
|
|
769
|
+
* `@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint`
|
|
770
|
+
|
|
771
|
+
When this feature flag is enabled, the JSONPath apiEndpoint value will be resolved dynamically at runtime, while slightly increasing the size of the state machine definition.
|
|
772
|
+
When disabled, the JSONPath apiEndpoint property will only support a static string value.
|
|
773
|
+
|
|
774
|
+
_cdk.json
|
|
775
|
+
|
|
776
|
+
```json
|
|
777
|
+
{
|
|
778
|
+
"context": {
|
|
779
|
+
"@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint": true
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
```
|
|
783
|
+
|
|
769
784
|
* `@aws-cdk/aws-signer:signingProfileNamePassedToCfn`
|
|
770
785
|
|
|
771
786
|
When this feature flag is enabled, the `signingProfileName` property is passed to the L1 `CfnSigningProfile` construct,
|
|
@@ -787,6 +802,22 @@ in the CloudFormation template.
|
|
|
787
802
|
}
|
|
788
803
|
}
|
|
789
804
|
```
|
|
805
|
+
|
|
806
|
+
* `@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId`
|
|
807
|
+
|
|
808
|
+
When enabled, ECS patterns will generate unique target group IDs that include the load balancer name and type (public/private). This prevents CloudFormation conflicts when switching between public and private load balancers.
|
|
809
|
+
|
|
810
|
+
Without this flag, switching an ApplicationLoadBalancedFargateService from public to private (or vice versa) fails with "target group cannot be associated with more than one load balancer" error.
|
|
811
|
+
|
|
812
|
+
*cdk.json*
|
|
813
|
+
|
|
814
|
+
```json
|
|
815
|
+
{
|
|
816
|
+
"context": {
|
|
817
|
+
"@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId": true
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
```
|
|
790
821
|
'''
|
|
791
822
|
from pkgutil import extend_path
|
|
792
823
|
__path__ = extend_path(__path__, __name__)
|
|
@@ -4583,3 +4614,6 @@ def _typecheckingstub__0f13a4defa9d74d578442cc9dbb25cbe53318785930cd66e40d43ac92
|
|
|
4583
4614
|
) -> None:
|
|
4584
4615
|
"""Type checking stubs"""
|
|
4585
4616
|
pass
|
|
4617
|
+
|
|
4618
|
+
for cls in [IEnvironmentPlaceholderProvider]:
|
|
4619
|
+
typing.cast(typing.Any, cls).__protocol_attrs__ = typing.cast(typing.Any, cls).__protocol_attrs__ - set(['__jsii_proxy_class__', '__jsii_type__'])
|
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.221.1", __name__[0:-6], "cx-api@2.221.1.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.221.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 >=45.0.0
|
|
26
|
-
Requires-Dist: jsii <2.0.0,>=1.
|
|
26
|
+
Requires-Dist: jsii <2.0.0,>=1.116.0
|
|
27
27
|
Requires-Dist: publication >=0.0.3
|
|
28
28
|
Requires-Dist: typeguard <4.3.0,>=2.13.3
|
|
29
29
|
|
|
@@ -794,6 +794,21 @@ When this feature flag is disabled, EgressOnlyGateway resource is created for al
|
|
|
794
794
|
}
|
|
795
795
|
```
|
|
796
796
|
|
|
797
|
+
* `@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint`
|
|
798
|
+
|
|
799
|
+
When this feature flag is enabled, the JSONPath apiEndpoint value will be resolved dynamically at runtime, while slightly increasing the size of the state machine definition.
|
|
800
|
+
When disabled, the JSONPath apiEndpoint property will only support a static string value.
|
|
801
|
+
|
|
802
|
+
_cdk.json
|
|
803
|
+
|
|
804
|
+
```json
|
|
805
|
+
{
|
|
806
|
+
"context": {
|
|
807
|
+
"@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint": true
|
|
808
|
+
}
|
|
809
|
+
}
|
|
810
|
+
```
|
|
811
|
+
|
|
797
812
|
* `@aws-cdk/aws-signer:signingProfileNamePassedToCfn`
|
|
798
813
|
|
|
799
814
|
When this feature flag is enabled, the `signingProfileName` property is passed to the L1 `CfnSigningProfile` construct,
|
|
@@ -815,3 +830,19 @@ in the CloudFormation template.
|
|
|
815
830
|
}
|
|
816
831
|
}
|
|
817
832
|
```
|
|
833
|
+
|
|
834
|
+
* `@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId`
|
|
835
|
+
|
|
836
|
+
When enabled, ECS patterns will generate unique target group IDs that include the load balancer name and type (public/private). This prevents CloudFormation conflicts when switching between public and private load balancers.
|
|
837
|
+
|
|
838
|
+
Without this flag, switching an ApplicationLoadBalancedFargateService from public to private (or vice versa) fails with "target group cannot be associated with more than one load balancer" error.
|
|
839
|
+
|
|
840
|
+
*cdk.json*
|
|
841
|
+
|
|
842
|
+
```json
|
|
843
|
+
{
|
|
844
|
+
"context": {
|
|
845
|
+
"@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId": true
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/cx_api/__init__.py,sha256=jtd-XCsgYDTX-ct3yctrj5ww0KH79cFG_S-JJmaPOUw,204545
|
|
2
|
+
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/cx_api/_jsii/__init__.py,sha256=tY_FxIRwct-73BpqVvKf7vAXXedMubpEcblyGcVJAwo,1434
|
|
4
|
+
aws_cdk/cx_api/_jsii/cx-api@2.221.1.jsii.tgz,sha256=yBL4GVFEC75rulx8DDl0aF6cNh-xI6LyorNZiA0EtYw,267057
|
|
5
|
+
aws_cdk_cx_api-2.221.1.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
+
aws_cdk_cx_api-2.221.1.dist-info/METADATA,sha256=9_HosSf-FwvVuLEkYkjS6kdKhL6pCh54LNvtCT4TKoM,28821
|
|
7
|
+
aws_cdk_cx_api-2.221.1.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
+
aws_cdk_cx_api-2.221.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
9
|
+
aws_cdk_cx_api-2.221.1.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk_cx_api-2.221.1.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
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=vGLQrHkLwq3J3i97GneIeshbLrQ0OJJa9Td3JFrZQHw,1434
|
|
4
|
-
aws_cdk/cx_api/_jsii/cx-api@2.220.0.jsii.tgz,sha256=M4P7PbaCrXzjyGPpL1dPgly0f0O50o-fpqWWKwLJHd8,264785
|
|
5
|
-
aws_cdk_cx_api-2.220.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
-
aws_cdk_cx_api-2.220.0.dist-info/METADATA,sha256=KXPq6lEV_0ByZ_KfNQzLXztiDtXXb5kWbLyBo_UFlQI,27777
|
|
7
|
-
aws_cdk_cx_api-2.220.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
-
aws_cdk_cx_api-2.220.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
9
|
-
aws_cdk_cx_api-2.220.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk_cx_api-2.220.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|