aws-cdk.cx-api 2.132.1__tar.gz → 2.134.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 (19) hide show
  1. {aws-cdk.cx-api-2.132.1/src/aws_cdk.cx_api.egg-info → aws-cdk.cx-api-2.134.0}/PKG-INFO +35 -1
  2. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/README.md +34 -0
  3. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/setup.py +4 -4
  4. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/src/aws_cdk/cx_api/__init__.py +34 -0
  5. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
  6. aws-cdk.cx-api-2.134.0/src/aws_cdk/cx_api/_jsii/cx-api@2.134.0.jsii.tgz +0 -0
  7. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0/src/aws_cdk.cx_api.egg-info}/PKG-INFO +35 -1
  8. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
  9. aws-cdk.cx-api-2.134.0/src/aws_cdk.cx_api.egg-info/requires.txt +4 -0
  10. aws-cdk.cx-api-2.132.1/src/aws_cdk/cx_api/_jsii/cx-api@2.132.1.jsii.tgz +0 -0
  11. aws-cdk.cx-api-2.132.1/src/aws_cdk.cx_api.egg-info/requires.txt +0 -4
  12. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/LICENSE +0 -0
  13. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/MANIFEST.in +0 -0
  14. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/NOTICE +0 -0
  15. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/pyproject.toml +0 -0
  16. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/setup.cfg +0 -0
  17. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/src/aws_cdk/cx_api/py.typed +0 -0
  18. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
  19. {aws-cdk.cx-api-2.132.1 → aws-cdk.cx-api-2.134.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.132.1
3
+ Version: 2.134.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -301,3 +301,37 @@ construct, the construct automatically defaults the value of this property to fa
301
301
  }
302
302
  }
303
303
  ```
304
+
305
+ * `@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2`
306
+
307
+ Enables Pipeline to set the default pipeline type to V2.
308
+
309
+ When this feature flag is enabled, and the `pipelineType` property is not provided in a `Pipeline`
310
+ construct, the construct automatically defaults the value of this property to `PipelineType.V2`.
311
+
312
+ *cdk.json*
313
+
314
+ ```json
315
+ {
316
+ "context": {
317
+ "@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2": true
318
+ }
319
+ }
320
+ ```
321
+
322
+ * `@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope`
323
+
324
+ Reduce resource scope of the IAM Policy created from KMS key grant to granting key only.
325
+
326
+ When this feature flag is enabled and calling KMS key grant method, the created IAM policy will reduce the resource scope from
327
+ '*' to this specific granting KMS key.
328
+
329
+ *cdk.json*
330
+
331
+ ```json
332
+ {
333
+ "context": {
334
+ "@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope": true
335
+ }
336
+ }
337
+ ```
@@ -275,3 +275,37 @@ construct, the construct automatically defaults the value of this property to fa
275
275
  }
276
276
  }
277
277
  ```
278
+
279
+ * `@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2`
280
+
281
+ Enables Pipeline to set the default pipeline type to V2.
282
+
283
+ When this feature flag is enabled, and the `pipelineType` property is not provided in a `Pipeline`
284
+ construct, the construct automatically defaults the value of this property to `PipelineType.V2`.
285
+
286
+ *cdk.json*
287
+
288
+ ```json
289
+ {
290
+ "context": {
291
+ "@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2": true
292
+ }
293
+ }
294
+ ```
295
+
296
+ * `@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope`
297
+
298
+ Reduce resource scope of the IAM Policy created from KMS key grant to granting key only.
299
+
300
+ When this feature flag is enabled and calling KMS key grant method, the created IAM policy will reduce the resource scope from
301
+ '*' to this specific granting KMS key.
302
+
303
+ *cdk.json*
304
+
305
+ ```json
306
+ {
307
+ "context": {
308
+ "@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope": true
309
+ }
310
+ }
311
+ ```
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-cdk.cx-api",
8
- "version": "2.132.1",
8
+ "version": "2.134.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.132.1.jsii.tgz"
29
+ "cx-api@2.134.0.jsii.tgz"
30
30
  ],
31
31
  "aws_cdk.cx_api": [
32
32
  "py.typed"
@@ -34,8 +34,8 @@ kwargs = json.loads(
34
34
  },
35
35
  "python_requires": "~=3.8",
36
36
  "install_requires": [
37
- "aws-cdk.cloud-assembly-schema==2.132.1",
38
- "jsii>=1.94.0, <2.0.0",
37
+ "aws-cdk.cloud-assembly-schema==2.134.0",
38
+ "jsii>=1.95.0, <2.0.0",
39
39
  "publication>=0.0.3",
40
40
  "typeguard~=2.13.3"
41
41
  ],
@@ -276,6 +276,40 @@ construct, the construct automatically defaults the value of this property to fa
276
276
  }
277
277
  }
278
278
  ```
279
+
280
+ * `@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2`
281
+
282
+ Enables Pipeline to set the default pipeline type to V2.
283
+
284
+ When this feature flag is enabled, and the `pipelineType` property is not provided in a `Pipeline`
285
+ construct, the construct automatically defaults the value of this property to `PipelineType.V2`.
286
+
287
+ *cdk.json*
288
+
289
+ ```json
290
+ {
291
+ "context": {
292
+ "@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2": true
293
+ }
294
+ }
295
+ ```
296
+
297
+ * `@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope`
298
+
299
+ Reduce resource scope of the IAM Policy created from KMS key grant to granting key only.
300
+
301
+ When this feature flag is enabled and calling KMS key grant method, the created IAM policy will reduce the resource scope from
302
+ '*' to this specific granting KMS key.
303
+
304
+ *cdk.json*
305
+
306
+ ```json
307
+ {
308
+ "context": {
309
+ "@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope": true
310
+ }
311
+ }
312
+ ```
279
313
  '''
280
314
  import abc
281
315
  import builtins
@@ -13,7 +13,7 @@ from typeguard import check_type
13
13
  import aws_cdk.cloud_assembly_schema._jsii
14
14
 
15
15
  __jsii_assembly__ = jsii.JSIIAssembly.load(
16
- "@aws-cdk/cx-api", "2.132.1", __name__[0:-6], "cx-api@2.132.1.jsii.tgz"
16
+ "@aws-cdk/cx-api", "2.134.0", __name__[0:-6], "cx-api@2.134.0.jsii.tgz"
17
17
  )
18
18
 
19
19
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.cx-api
3
- Version: 2.132.1
3
+ Version: 2.134.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -301,3 +301,37 @@ construct, the construct automatically defaults the value of this property to fa
301
301
  }
302
302
  }
303
303
  ```
304
+
305
+ * `@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2`
306
+
307
+ Enables Pipeline to set the default pipeline type to V2.
308
+
309
+ When this feature flag is enabled, and the `pipelineType` property is not provided in a `Pipeline`
310
+ construct, the construct automatically defaults the value of this property to `PipelineType.V2`.
311
+
312
+ *cdk.json*
313
+
314
+ ```json
315
+ {
316
+ "context": {
317
+ "@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2": true
318
+ }
319
+ }
320
+ ```
321
+
322
+ * `@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope`
323
+
324
+ Reduce resource scope of the IAM Policy created from KMS key grant to granting key only.
325
+
326
+ When this feature flag is enabled and calling KMS key grant method, the created IAM policy will reduce the resource scope from
327
+ '*' to this specific granting KMS key.
328
+
329
+ *cdk.json*
330
+
331
+ ```json
332
+ {
333
+ "context": {
334
+ "@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope": true
335
+ }
336
+ }
337
+ ```
@@ -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.132.1.jsii.tgz
15
+ src/aws_cdk/cx_api/_jsii/cx-api@2.134.0.jsii.tgz
@@ -0,0 +1,4 @@
1
+ aws-cdk.cloud-assembly-schema==2.134.0
2
+ jsii<2.0.0,>=1.95.0
3
+ publication>=0.0.3
4
+ typeguard~=2.13.3
@@ -1,4 +0,0 @@
1
- aws-cdk.cloud-assembly-schema==2.132.1
2
- jsii<2.0.0,>=1.94.0
3
- publication>=0.0.3
4
- typeguard~=2.13.3