aws-cdk.cx-api 2.155.0__tar.gz → 2.156.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.155.0/src/aws_cdk.cx_api.egg-info → aws_cdk_cx_api-2.156.0}/PKG-INFO +17 -1
  2. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/README.md +16 -0
  3. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/setup.py +2 -2
  4. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/src/aws_cdk/cx_api/__init__.py +16 -0
  5. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
  6. aws_cdk_cx_api-2.156.0/src/aws_cdk/cx_api/_jsii/cx-api@2.156.0.jsii.tgz +0 -0
  7. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0/src/aws_cdk.cx_api.egg-info}/PKG-INFO +17 -1
  8. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
  9. aws_cdk_cx_api-2.155.0/src/aws_cdk/cx_api/_jsii/cx-api@2.155.0.jsii.tgz +0 -0
  10. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/LICENSE +0 -0
  11. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/MANIFEST.in +0 -0
  12. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/NOTICE +0 -0
  13. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/pyproject.toml +0 -0
  14. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/setup.cfg +0 -0
  15. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/src/aws_cdk/cx_api/py.typed +0 -0
  16. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
  17. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.0}/src/aws_cdk.cx_api.egg-info/requires.txt +0 -0
  18. {aws_cdk_cx_api-2.155.0 → aws_cdk_cx_api-2.156.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.155.0
3
+ Version: 2.156.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -406,3 +406,19 @@ for more details.
406
406
  }
407
407
  }
408
408
  ```
409
+
410
+ * `@aws-cdk/aws-stepfunctions-taks:useNewS3UriParametersForBedrockInvokeModelTask`
411
+
412
+ When enabled, use new props for S3 URI under `input` and `output` fields in task definition of state machine for bedrock invoke model.
413
+
414
+ When this feature flag is enabled, use newly introduced props `s3InputUri` and `s3OutputUri` to populate S3 uri under input and output fields in state machine task definition for Bedrock invoke model.
415
+
416
+ *cdk.json*
417
+
418
+ ```json
419
+ {
420
+ "context": {
421
+ "@aws-cdk/aws-stepfunctions-tasks:useNewS3UriParametersForBedrockInvokeModelTask": true
422
+ }
423
+ }
424
+ ```
@@ -376,3 +376,19 @@ for more details.
376
376
  }
377
377
  }
378
378
  ```
379
+
380
+ * `@aws-cdk/aws-stepfunctions-taks:useNewS3UriParametersForBedrockInvokeModelTask`
381
+
382
+ When enabled, use new props for S3 URI under `input` and `output` fields in task definition of state machine for bedrock invoke model.
383
+
384
+ When this feature flag is enabled, use newly introduced props `s3InputUri` and `s3OutputUri` to populate S3 uri under input and output fields in state machine task definition for Bedrock invoke model.
385
+
386
+ *cdk.json*
387
+
388
+ ```json
389
+ {
390
+ "context": {
391
+ "@aws-cdk/aws-stepfunctions-tasks:useNewS3UriParametersForBedrockInvokeModelTask": true
392
+ }
393
+ }
394
+ ```
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-cdk.cx-api",
8
- "version": "2.155.0",
8
+ "version": "2.156.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.155.0.jsii.tgz"
29
+ "cx-api@2.156.0.jsii.tgz"
30
30
  ],
31
31
  "aws_cdk.cx_api": [
32
32
  "py.typed"
@@ -377,6 +377,22 @@ for more details.
377
377
  }
378
378
  }
379
379
  ```
380
+
381
+ * `@aws-cdk/aws-stepfunctions-taks:useNewS3UriParametersForBedrockInvokeModelTask`
382
+
383
+ When enabled, use new props for S3 URI under `input` and `output` fields in task definition of state machine for bedrock invoke model.
384
+
385
+ When this feature flag is enabled, use newly introduced props `s3InputUri` and `s3OutputUri` to populate S3 uri under input and output fields in state machine task definition for Bedrock invoke model.
386
+
387
+ *cdk.json*
388
+
389
+ ```json
390
+ {
391
+ "context": {
392
+ "@aws-cdk/aws-stepfunctions-tasks:useNewS3UriParametersForBedrockInvokeModelTask": true
393
+ }
394
+ }
395
+ ```
380
396
  '''
381
397
  from pkgutil import extend_path
382
398
  __path__ = extend_path(__path__, __name__)
@@ -16,7 +16,7 @@ from typeguard import check_type
16
16
  import aws_cdk.cloud_assembly_schema._jsii
17
17
 
18
18
  __jsii_assembly__ = jsii.JSIIAssembly.load(
19
- "@aws-cdk/cx-api", "2.155.0", __name__[0:-6], "cx-api@2.155.0.jsii.tgz"
19
+ "@aws-cdk/cx-api", "2.156.0", __name__[0:-6], "cx-api@2.156.0.jsii.tgz"
20
20
  )
21
21
 
22
22
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.cx-api
3
- Version: 2.155.0
3
+ Version: 2.156.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -406,3 +406,19 @@ for more details.
406
406
  }
407
407
  }
408
408
  ```
409
+
410
+ * `@aws-cdk/aws-stepfunctions-taks:useNewS3UriParametersForBedrockInvokeModelTask`
411
+
412
+ When enabled, use new props for S3 URI under `input` and `output` fields in task definition of state machine for bedrock invoke model.
413
+
414
+ When this feature flag is enabled, use newly introduced props `s3InputUri` and `s3OutputUri` to populate S3 uri under input and output fields in state machine task definition for Bedrock invoke model.
415
+
416
+ *cdk.json*
417
+
418
+ ```json
419
+ {
420
+ "context": {
421
+ "@aws-cdk/aws-stepfunctions-tasks:useNewS3UriParametersForBedrockInvokeModelTask": true
422
+ }
423
+ }
424
+ ```
@@ -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.155.0.jsii.tgz
15
+ src/aws_cdk/cx_api/_jsii/cx-api@2.156.0.jsii.tgz