aws-cdk.cx-api 2.160.0__tar.gz → 2.161.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.160.0/src/aws_cdk.cx_api.egg-info → aws_cdk_cx_api-2.161.0}/PKG-INFO +51 -1
  2. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/README.md +50 -0
  3. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/setup.py +2 -2
  4. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/src/aws_cdk/cx_api/__init__.py +50 -0
  5. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
  6. aws_cdk_cx_api-2.161.0/src/aws_cdk/cx_api/_jsii/cx-api@2.161.0.jsii.tgz +0 -0
  7. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0/src/aws_cdk.cx_api.egg-info}/PKG-INFO +51 -1
  8. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
  9. aws_cdk_cx_api-2.160.0/src/aws_cdk/cx_api/_jsii/cx-api@2.160.0.jsii.tgz +0 -0
  10. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/LICENSE +0 -0
  11. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/MANIFEST.in +0 -0
  12. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/NOTICE +0 -0
  13. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/pyproject.toml +0 -0
  14. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/setup.cfg +0 -0
  15. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/src/aws_cdk/cx_api/py.typed +0 -0
  16. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
  17. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.0}/src/aws_cdk.cx_api.egg-info/requires.txt +0 -0
  18. {aws_cdk_cx_api-2.160.0 → aws_cdk_cx_api-2.161.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.160.0
3
+ Version: 2.161.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -455,3 +455,53 @@ When this feature flag is enabled, if both initOptions.timeout and resourceSigna
455
455
  }
456
456
  }
457
457
  ```
458
+
459
+ * `@aws-cdk/aws-appsync:appSyncGraphQLAPIScopeLambdaPermission`
460
+
461
+ Currently, when using a Lambda authorizer with an AppSync GraphQL API, the AWS CDK automatically generates the necessary AWS::Lambda::Permission to allow the AppSync API to invoke the Lambda authorizer. This permission is overly permissive because it lacks a SourceArn, meaning it allows invocations from any source.
462
+
463
+ When this feature flag is enabled, the AWS::Lambda::Permission will be properly scoped with the SourceArn corresponding to the specific AppSync GraphQL API.
464
+
465
+ *cdk.json*
466
+
467
+ ```json
468
+ {
469
+ "context": {
470
+ "@aws-cdk/aws-ec2:appSyncGraphQLAPIScopeLambdaPermission": true
471
+ }
472
+ }
473
+ ```
474
+
475
+ * `@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId`
476
+
477
+ When enabled, the value of property `instanceResourceId` in construct `DatabaseInstanceReadReplica` will be set to the correct value which is `DbiResourceId` instead of currently `DbInstanceArn`* (fix)
478
+
479
+ When this feature flag is enabled, the value of that property will be as expected set to `DbiResourceId` attribute, and that will fix the grantConnect method.
480
+
481
+ *cdk.json*
482
+
483
+ ```json
484
+ {
485
+ "context": {
486
+ "@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId": true
487
+ }
488
+ }
489
+ ```
490
+
491
+ * `@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages`
492
+
493
+ Currently, when bundling Lambda functions with the non-latest runtime that supports AWS SDK JavaScript (v3), only the `@aws-sdk/*` packages are excluded by default.
494
+ However, this can cause version mismatches between the `@aws-sdk/*` and `@smithy/*` packages, as they are tightly coupled dependencies in AWS SDK v3.
495
+
496
+ When this feature flag is enabled, both `@aws-sdk/*` and `@smithy/*` packages will be excluded during the bundling process. This ensures that no mismatches
497
+ occur between these tightly coupled dependencies when using the AWS SDK v3 in Lambda functions.
498
+
499
+ *cdk.json*
500
+
501
+ ```json
502
+ {
503
+ "context": {
504
+ "@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages": true
505
+ }
506
+ }
507
+ ```
@@ -425,3 +425,53 @@ When this feature flag is enabled, if both initOptions.timeout and resourceSigna
425
425
  }
426
426
  }
427
427
  ```
428
+
429
+ * `@aws-cdk/aws-appsync:appSyncGraphQLAPIScopeLambdaPermission`
430
+
431
+ Currently, when using a Lambda authorizer with an AppSync GraphQL API, the AWS CDK automatically generates the necessary AWS::Lambda::Permission to allow the AppSync API to invoke the Lambda authorizer. This permission is overly permissive because it lacks a SourceArn, meaning it allows invocations from any source.
432
+
433
+ When this feature flag is enabled, the AWS::Lambda::Permission will be properly scoped with the SourceArn corresponding to the specific AppSync GraphQL API.
434
+
435
+ *cdk.json*
436
+
437
+ ```json
438
+ {
439
+ "context": {
440
+ "@aws-cdk/aws-ec2:appSyncGraphQLAPIScopeLambdaPermission": true
441
+ }
442
+ }
443
+ ```
444
+
445
+ * `@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId`
446
+
447
+ When enabled, the value of property `instanceResourceId` in construct `DatabaseInstanceReadReplica` will be set to the correct value which is `DbiResourceId` instead of currently `DbInstanceArn`* (fix)
448
+
449
+ When this feature flag is enabled, the value of that property will be as expected set to `DbiResourceId` attribute, and that will fix the grantConnect method.
450
+
451
+ *cdk.json*
452
+
453
+ ```json
454
+ {
455
+ "context": {
456
+ "@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId": true
457
+ }
458
+ }
459
+ ```
460
+
461
+ * `@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages`
462
+
463
+ Currently, when bundling Lambda functions with the non-latest runtime that supports AWS SDK JavaScript (v3), only the `@aws-sdk/*` packages are excluded by default.
464
+ However, this can cause version mismatches between the `@aws-sdk/*` and `@smithy/*` packages, as they are tightly coupled dependencies in AWS SDK v3.
465
+
466
+ When this feature flag is enabled, both `@aws-sdk/*` and `@smithy/*` packages will be excluded during the bundling process. This ensures that no mismatches
467
+ occur between these tightly coupled dependencies when using the AWS SDK v3 in Lambda functions.
468
+
469
+ *cdk.json*
470
+
471
+ ```json
472
+ {
473
+ "context": {
474
+ "@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages": true
475
+ }
476
+ }
477
+ ```
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-cdk.cx-api",
8
- "version": "2.160.0",
8
+ "version": "2.161.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.160.0.jsii.tgz"
29
+ "cx-api@2.161.0.jsii.tgz"
30
30
  ],
31
31
  "aws_cdk.cx_api": [
32
32
  "py.typed"
@@ -426,6 +426,56 @@ When this feature flag is enabled, if both initOptions.timeout and resourceSigna
426
426
  }
427
427
  }
428
428
  ```
429
+
430
+ * `@aws-cdk/aws-appsync:appSyncGraphQLAPIScopeLambdaPermission`
431
+
432
+ Currently, when using a Lambda authorizer with an AppSync GraphQL API, the AWS CDK automatically generates the necessary AWS::Lambda::Permission to allow the AppSync API to invoke the Lambda authorizer. This permission is overly permissive because it lacks a SourceArn, meaning it allows invocations from any source.
433
+
434
+ When this feature flag is enabled, the AWS::Lambda::Permission will be properly scoped with the SourceArn corresponding to the specific AppSync GraphQL API.
435
+
436
+ *cdk.json*
437
+
438
+ ```json
439
+ {
440
+ "context": {
441
+ "@aws-cdk/aws-ec2:appSyncGraphQLAPIScopeLambdaPermission": true
442
+ }
443
+ }
444
+ ```
445
+
446
+ * `@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId`
447
+
448
+ When enabled, the value of property `instanceResourceId` in construct `DatabaseInstanceReadReplica` will be set to the correct value which is `DbiResourceId` instead of currently `DbInstanceArn`* (fix)
449
+
450
+ When this feature flag is enabled, the value of that property will be as expected set to `DbiResourceId` attribute, and that will fix the grantConnect method.
451
+
452
+ *cdk.json*
453
+
454
+ ```json
455
+ {
456
+ "context": {
457
+ "@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId": true
458
+ }
459
+ }
460
+ ```
461
+
462
+ * `@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages`
463
+
464
+ Currently, when bundling Lambda functions with the non-latest runtime that supports AWS SDK JavaScript (v3), only the `@aws-sdk/*` packages are excluded by default.
465
+ However, this can cause version mismatches between the `@aws-sdk/*` and `@smithy/*` packages, as they are tightly coupled dependencies in AWS SDK v3.
466
+
467
+ When this feature flag is enabled, both `@aws-sdk/*` and `@smithy/*` packages will be excluded during the bundling process. This ensures that no mismatches
468
+ occur between these tightly coupled dependencies when using the AWS SDK v3 in Lambda functions.
469
+
470
+ *cdk.json*
471
+
472
+ ```json
473
+ {
474
+ "context": {
475
+ "@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages": true
476
+ }
477
+ }
478
+ ```
429
479
  '''
430
480
  from pkgutil import extend_path
431
481
  __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.160.0", __name__[0:-6], "cx-api@2.160.0.jsii.tgz"
34
+ "@aws-cdk/cx-api", "2.161.0", __name__[0:-6], "cx-api@2.161.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.160.0
3
+ Version: 2.161.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -455,3 +455,53 @@ When this feature flag is enabled, if both initOptions.timeout and resourceSigna
455
455
  }
456
456
  }
457
457
  ```
458
+
459
+ * `@aws-cdk/aws-appsync:appSyncGraphQLAPIScopeLambdaPermission`
460
+
461
+ Currently, when using a Lambda authorizer with an AppSync GraphQL API, the AWS CDK automatically generates the necessary AWS::Lambda::Permission to allow the AppSync API to invoke the Lambda authorizer. This permission is overly permissive because it lacks a SourceArn, meaning it allows invocations from any source.
462
+
463
+ When this feature flag is enabled, the AWS::Lambda::Permission will be properly scoped with the SourceArn corresponding to the specific AppSync GraphQL API.
464
+
465
+ *cdk.json*
466
+
467
+ ```json
468
+ {
469
+ "context": {
470
+ "@aws-cdk/aws-ec2:appSyncGraphQLAPIScopeLambdaPermission": true
471
+ }
472
+ }
473
+ ```
474
+
475
+ * `@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId`
476
+
477
+ When enabled, the value of property `instanceResourceId` in construct `DatabaseInstanceReadReplica` will be set to the correct value which is `DbiResourceId` instead of currently `DbInstanceArn`* (fix)
478
+
479
+ When this feature flag is enabled, the value of that property will be as expected set to `DbiResourceId` attribute, and that will fix the grantConnect method.
480
+
481
+ *cdk.json*
482
+
483
+ ```json
484
+ {
485
+ "context": {
486
+ "@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId": true
487
+ }
488
+ }
489
+ ```
490
+
491
+ * `@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages`
492
+
493
+ Currently, when bundling Lambda functions with the non-latest runtime that supports AWS SDK JavaScript (v3), only the `@aws-sdk/*` packages are excluded by default.
494
+ However, this can cause version mismatches between the `@aws-sdk/*` and `@smithy/*` packages, as they are tightly coupled dependencies in AWS SDK v3.
495
+
496
+ When this feature flag is enabled, both `@aws-sdk/*` and `@smithy/*` packages will be excluded during the bundling process. This ensures that no mismatches
497
+ occur between these tightly coupled dependencies when using the AWS SDK v3 in Lambda functions.
498
+
499
+ *cdk.json*
500
+
501
+ ```json
502
+ {
503
+ "context": {
504
+ "@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages": true
505
+ }
506
+ }
507
+ ```
@@ -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.160.0.jsii.tgz
15
+ src/aws_cdk/cx_api/_jsii/cx-api@2.161.0.jsii.tgz