aws-cdk.cx-api 2.184.0__py3-none-any.whl → 2.185.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 +30 -0
- aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws_cdk/cx_api/_jsii/cx-api@2.185.0.jsii.tgz +0 -0
- {aws_cdk.cx_api-2.184.0.dist-info → aws_cdk.cx_api-2.185.0.dist-info}/METADATA +31 -1
- aws_cdk.cx_api-2.185.0.dist-info/RECORD +10 -0
- aws_cdk/cx_api/_jsii/cx-api@2.184.0.jsii.tgz +0 -0
- aws_cdk.cx_api-2.184.0.dist-info/RECORD +0 -10
- {aws_cdk.cx_api-2.184.0.dist-info → aws_cdk.cx_api-2.185.0.dist-info}/LICENSE +0 -0
- {aws_cdk.cx_api-2.184.0.dist-info → aws_cdk.cx_api-2.185.0.dist-info}/NOTICE +0 -0
- {aws_cdk.cx_api-2.184.0.dist-info → aws_cdk.cx_api-2.185.0.dist-info}/WHEEL +0 -0
- {aws_cdk.cx_api-2.184.0.dist-info → aws_cdk.cx_api-2.185.0.dist-info}/top_level.txt +0 -0
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -629,6 +629,36 @@ This solves an issue where a circular dependency could occur if adding lambda to
|
|
|
629
629
|
}
|
|
630
630
|
}
|
|
631
631
|
```
|
|
632
|
+
|
|
633
|
+
* `@aws-cdk/aws-s3:setUniqueReplicationRoleName`
|
|
634
|
+
|
|
635
|
+
When this feature flag is enabled, a unique role name is specified only when performing cross-account replication.
|
|
636
|
+
When disabled, 'CDKReplicationRole' is always specified.
|
|
637
|
+
|
|
638
|
+
*cdk.json*
|
|
639
|
+
|
|
640
|
+
```json
|
|
641
|
+
{
|
|
642
|
+
"context": {
|
|
643
|
+
"@aws-cdk/aws-s3:setUniqueReplicationRoleName": true
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
```
|
|
647
|
+
|
|
648
|
+
* `@aws-cdk/pipelines:reduceStageRoleTrustScope`
|
|
649
|
+
|
|
650
|
+
When this feature flag is enabled, the root account principal will not be added to the trust policy of stage role.
|
|
651
|
+
When this feature flag is disabled, it will keep the root account principal in the trust policy.
|
|
652
|
+
|
|
653
|
+
*cdk.json*
|
|
654
|
+
|
|
655
|
+
```json
|
|
656
|
+
{
|
|
657
|
+
"context": {
|
|
658
|
+
"@aws-cdk/pipelines:reduceStageRoleTrustScope": true
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
```
|
|
632
662
|
'''
|
|
633
663
|
from pkgutil import extend_path
|
|
634
664
|
__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.185.0", __name__[0:-6], "cx-api@2.185.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.185.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -657,3 +657,33 @@ This solves an issue where a circular dependency could occur if adding lambda to
|
|
|
657
657
|
}
|
|
658
658
|
}
|
|
659
659
|
```
|
|
660
|
+
|
|
661
|
+
* `@aws-cdk/aws-s3:setUniqueReplicationRoleName`
|
|
662
|
+
|
|
663
|
+
When this feature flag is enabled, a unique role name is specified only when performing cross-account replication.
|
|
664
|
+
When disabled, 'CDKReplicationRole' is always specified.
|
|
665
|
+
|
|
666
|
+
*cdk.json*
|
|
667
|
+
|
|
668
|
+
```json
|
|
669
|
+
{
|
|
670
|
+
"context": {
|
|
671
|
+
"@aws-cdk/aws-s3:setUniqueReplicationRoleName": true
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
```
|
|
675
|
+
|
|
676
|
+
* `@aws-cdk/pipelines:reduceStageRoleTrustScope`
|
|
677
|
+
|
|
678
|
+
When this feature flag is enabled, the root account principal will not be added to the trust policy of stage role.
|
|
679
|
+
When this feature flag is disabled, it will keep the root account principal in the trust policy.
|
|
680
|
+
|
|
681
|
+
*cdk.json*
|
|
682
|
+
|
|
683
|
+
```json
|
|
684
|
+
{
|
|
685
|
+
"context": {
|
|
686
|
+
"@aws-cdk/pipelines:reduceStageRoleTrustScope": true
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/cx_api/__init__.py,sha256=hLQ0vsw8fbTTs-w7sOZ2LDduVW25iUVyMsfxr78VSFI,195185
|
|
2
|
+
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/cx_api/_jsii/__init__.py,sha256=Gw1Stw_kWbGf0l-Z08WXPgNOIKA_954KIhCB54SMCKo,1434
|
|
4
|
+
aws_cdk/cx_api/_jsii/cx-api@2.185.0.jsii.tgz,sha256=uCGEnR6WrxfmGG0WWUVZFH5tfAQT-oSv2JNjiRHHNJQ,241364
|
|
5
|
+
aws_cdk.cx_api-2.185.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
+
aws_cdk.cx_api-2.185.0.dist-info/METADATA,sha256=T6akWfIDSyPIpNC8NuMhuwpCI1K4yRLNrMUQlmhsEMw,23282
|
|
7
|
+
aws_cdk.cx_api-2.185.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
+
aws_cdk.cx_api-2.185.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
9
|
+
aws_cdk.cx_api-2.185.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk.cx_api-2.185.0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
aws_cdk/cx_api/__init__.py,sha256=xU3iBDJQ4KcOzO8_gxVxYVLa-XM1MJ4mk0tvruMZkF8,194489
|
|
2
|
-
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/cx_api/_jsii/__init__.py,sha256=S8j5p1EZc-w14WMUEjYmF64xi-S9arKmPNemCSFdNwM,1434
|
|
4
|
-
aws_cdk/cx_api/_jsii/cx-api@2.184.0.jsii.tgz,sha256=TASF0dR1ebqKAnyraNcLqqUmJ4e1MHD8MFNNyohd7C0,241150
|
|
5
|
-
aws_cdk.cx_api-2.184.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
-
aws_cdk.cx_api-2.184.0.dist-info/METADATA,sha256=Bj9xrqeiKXsin35BzGVFIuS0MNX36iCvlJ0vGWc3zXM,22586
|
|
7
|
-
aws_cdk.cx_api-2.184.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
-
aws_cdk.cx_api-2.184.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
9
|
-
aws_cdk.cx_api-2.184.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk.cx_api-2.184.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|