aws-cdk-lib 2.178.2__py3-none-any.whl → 2.180.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-lib might be problematic. Click here for more details.

Files changed (70) hide show
  1. aws_cdk/__init__.py +83 -41
  2. aws_cdk/_jsii/__init__.py +1 -2
  3. aws_cdk/_jsii/{aws-cdk-lib@2.178.2.jsii.tgz → aws-cdk-lib@2.180.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +47 -0
  5. aws_cdk/aws_apigateway/__init__.py +176 -35
  6. aws_cdk/aws_apigatewayv2/__init__.py +151 -32
  7. aws_cdk/aws_apigatewayv2_integrations/__init__.py +348 -0
  8. aws_cdk/aws_applicationautoscaling/__init__.py +8 -8
  9. aws_cdk/aws_appsync/__init__.py +10 -7
  10. aws_cdk/aws_backup/__init__.py +89 -0
  11. aws_cdk/aws_batch/__init__.py +89 -50
  12. aws_cdk/aws_bedrock/__init__.py +506 -62
  13. aws_cdk/aws_cloudfront/__init__.py +1037 -146
  14. aws_cdk/aws_cloudfront_origins/__init__.py +1338 -144
  15. aws_cdk/aws_cloudtrail/__init__.py +4 -8
  16. aws_cdk/aws_cloudwatch/__init__.py +1 -1
  17. aws_cdk/aws_codebuild/__init__.py +218 -2
  18. aws_cdk/aws_codepipeline/__init__.py +113 -28
  19. aws_cdk/aws_codepipeline_actions/__init__.py +554 -63
  20. aws_cdk/aws_codestar/__init__.py +2 -1
  21. aws_cdk/aws_cognito/__init__.py +676 -29
  22. aws_cdk/aws_connect/__init__.py +257 -0
  23. aws_cdk/aws_datasync/__init__.py +279 -50
  24. aws_cdk/aws_deadline/__init__.py +683 -6
  25. aws_cdk/aws_directoryservice/__init__.py +9 -4
  26. aws_cdk/aws_dlm/__init__.py +2 -2
  27. aws_cdk/aws_dms/__init__.py +3 -3
  28. aws_cdk/aws_dynamodb/__init__.py +0 -54
  29. aws_cdk/aws_ec2/__init__.py +402 -130
  30. aws_cdk/aws_ecs/__init__.py +28 -43
  31. aws_cdk/aws_efs/__init__.py +1 -1
  32. aws_cdk/aws_eks/__init__.py +560 -182
  33. aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -27
  34. aws_cdk/aws_emrcontainers/__init__.py +44 -1
  35. aws_cdk/aws_events/__init__.py +17 -26
  36. aws_cdk/aws_events_targets/__init__.py +303 -16
  37. aws_cdk/aws_fms/__init__.py +5 -5
  38. aws_cdk/aws_fsx/__init__.py +5 -4
  39. aws_cdk/aws_glue/__init__.py +161 -0
  40. aws_cdk/aws_groundstation/__init__.py +23 -1
  41. aws_cdk/aws_iam/__init__.py +15 -15
  42. aws_cdk/aws_iot/__init__.py +7 -0
  43. aws_cdk/aws_ivs/__init__.py +254 -77
  44. aws_cdk/aws_kinesis/__init__.py +689 -35
  45. aws_cdk/aws_lambda/__init__.py +10 -15
  46. aws_cdk/aws_lambda_event_sources/__init__.py +175 -2
  47. aws_cdk/aws_logs/__init__.py +62 -13
  48. aws_cdk/aws_medialive/__init__.py +314 -4
  49. aws_cdk/aws_opensearchserverless/__init__.py +19 -0
  50. aws_cdk/aws_pinpoint/__init__.py +14 -9
  51. aws_cdk/aws_rds/__init__.py +246 -82
  52. aws_cdk/aws_s3/__init__.py +287 -9
  53. aws_cdk/aws_s3objectlambda/__init__.py +2 -2
  54. aws_cdk/aws_ses/__init__.py +228 -8
  55. aws_cdk/aws_ssm/__init__.py +4 -5
  56. aws_cdk/aws_stepfunctions/__init__.py +301 -70
  57. aws_cdk/aws_stepfunctions_tasks/__init__.py +269 -163
  58. aws_cdk/aws_supportapp/__init__.py +7 -7
  59. aws_cdk/aws_transfer/__init__.py +820 -2
  60. aws_cdk/aws_wafv2/__init__.py +17 -9
  61. aws_cdk/custom_resources/__init__.py +23 -26
  62. aws_cdk/cx_api/__init__.py +16 -0
  63. aws_cdk/pipelines/__init__.py +2 -2
  64. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/METADATA +1 -2
  65. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/RECORD +69 -70
  66. aws_cdk/lambda_layer_kubectl/__init__.py +0 -107
  67. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/LICENSE +0 -0
  68. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/NOTICE +0 -0
  69. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/WHEEL +0 -0
  70. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/top_level.txt +0 -0
@@ -866,7 +866,9 @@ distributed_map.item_processor(sfn.Pass(self, "Pass State"))
866
866
  ```
867
867
  * Objects in a S3 bucket with an optional prefix.
868
868
 
869
- * When `DistributedMap` is required to iterate over objects stored in a S3 bucket, then an object of `S3ObjectsItemReader` can be passed to `itemReader` to configure the iterator source as follows:
869
+ * When `DistributedMap` is required to iterate over objects stored in a S3 bucket, then an object of `S3ObjectsItemReader` can be passed to `itemReader` to configure the iterator source. Note that `S3ObjectsItemReader` will default to use Distributed map's query language. If the
870
+ map does not specify a query language, then it falls back to the State machine's query language. An exmaple of using `S3ObjectsItemReader`
871
+ is as follows:
870
872
 
871
873
  ```python
872
874
  import aws_cdk.aws_s3 as s3
@@ -975,6 +977,9 @@ distributed_map.item_processor(sfn.Pass(self, "Pass State"))
975
977
 
976
978
  Map states in Distributed mode also support writing results of the iterator to an S3 bucket and optional prefix. Use a `ResultWriter` object provided via the optional `resultWriter` property to configure which S3 location iterator results will be written. The default behavior id `resultWriter` is omitted is to use the state output payload. However, if the iterator results are larger than the 256 kb limit for Step Functions payloads then the State Machine will fail.
977
979
 
980
+ ResultWriter object will default to use the Distributed map's query language. If the Distributed map's does not specify a query language, then it
981
+ will fall back to the State machine's query langauge.
982
+
978
983
  ```python
979
984
  import aws_cdk.aws_s3 as s3
980
985
 
@@ -1879,7 +1884,7 @@ class AssignableStateOptions:
1879
1884
 
1880
1885
  :default: - Not assign variables
1881
1886
 
1882
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
1887
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
1883
1888
  '''
1884
1889
  result = self._values.get("assign")
1885
1890
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -1966,7 +1971,7 @@ class CatchProps:
1966
1971
 
1967
1972
  :default: - Not assign variables
1968
1973
 
1969
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
1974
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
1970
1975
  '''
1971
1976
  result = self._values.get("assign")
1972
1977
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -4574,7 +4579,7 @@ class ChoiceTransitionOptions(AssignableStateOptions):
4574
4579
 
4575
4580
  :default: - Not assign variables
4576
4581
 
4577
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
4582
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
4578
4583
  '''
4579
4584
  result = self._values.get("assign")
4580
4585
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -6432,8 +6437,14 @@ class IItemReader(typing_extensions.Protocol):
6432
6437
  ...
6433
6438
 
6434
6439
  @jsii.member(jsii_name="render")
6435
- def render(self) -> typing.Any:
6436
- '''Render the ItemReader as JSON object.'''
6440
+ def render(
6441
+ self,
6442
+ query_language: typing.Optional["QueryLanguage"] = None,
6443
+ ) -> typing.Any:
6444
+ '''Render the ItemReader as JSON object.
6445
+
6446
+ :param query_language: -
6447
+ '''
6437
6448
  ...
6438
6449
 
6439
6450
  @jsii.member(jsii_name="validateItemReader")
@@ -6483,9 +6494,18 @@ class _IItemReaderProxy:
6483
6494
  return typing.cast(typing.List[_PolicyStatement_0fe33853], jsii.invoke(self, "providePolicyStatements", []))
6484
6495
 
6485
6496
  @jsii.member(jsii_name="render")
6486
- def render(self) -> typing.Any:
6487
- '''Render the ItemReader as JSON object.'''
6488
- return typing.cast(typing.Any, jsii.invoke(self, "render", []))
6497
+ def render(
6498
+ self,
6499
+ query_language: typing.Optional["QueryLanguage"] = None,
6500
+ ) -> typing.Any:
6501
+ '''Render the ItemReader as JSON object.
6502
+
6503
+ :param query_language: -
6504
+ '''
6505
+ if __debug__:
6506
+ type_hints = typing.get_type_hints(_typecheckingstub__783b63447c23bb4d8a57ba3e21444d4647a4973f534473e7a1f006d36180cc81)
6507
+ check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
6508
+ return typing.cast(typing.Any, jsii.invoke(self, "render", [query_language]))
6489
6509
 
6490
6510
  @jsii.member(jsii_name="validateItemReader")
6491
6511
  def validate_item_reader(self) -> typing.List[builtins.str]:
@@ -8564,13 +8584,13 @@ class LogOptions:
8564
8584
  def __init__(
8565
8585
  self,
8566
8586
  *,
8567
- destination: _ILogGroup_3c4fa718,
8587
+ destination: typing.Optional[_ILogGroup_3c4fa718] = None,
8568
8588
  include_execution_data: typing.Optional[builtins.bool] = None,
8569
8589
  level: typing.Optional[LogLevel] = None,
8570
8590
  ) -> None:
8571
8591
  '''Defines what execution history events are logged and where they are logged.
8572
8592
 
8573
- :param destination: The log group where the execution history events will be logged.
8593
+ :param destination: The log group where the execution history events will be logged. Default: No log group. Required if your log level is not set to OFF.
8574
8594
  :param include_execution_data: Determines whether execution data is included in your log. Default: false
8575
8595
  :param level: Defines which category of execution history events are logged. Default: ERROR
8576
8596
 
@@ -8598,20 +8618,22 @@ class LogOptions:
8598
8618
  check_type(argname="argument destination", value=destination, expected_type=type_hints["destination"])
8599
8619
  check_type(argname="argument include_execution_data", value=include_execution_data, expected_type=type_hints["include_execution_data"])
8600
8620
  check_type(argname="argument level", value=level, expected_type=type_hints["level"])
8601
- self._values: typing.Dict[builtins.str, typing.Any] = {
8602
- "destination": destination,
8603
- }
8621
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
8622
+ if destination is not None:
8623
+ self._values["destination"] = destination
8604
8624
  if include_execution_data is not None:
8605
8625
  self._values["include_execution_data"] = include_execution_data
8606
8626
  if level is not None:
8607
8627
  self._values["level"] = level
8608
8628
 
8609
8629
  @builtins.property
8610
- def destination(self) -> _ILogGroup_3c4fa718:
8611
- '''The log group where the execution history events will be logged.'''
8630
+ def destination(self) -> typing.Optional[_ILogGroup_3c4fa718]:
8631
+ '''The log group where the execution history events will be logged.
8632
+
8633
+ :default: No log group. Required if your log level is not set to OFF.
8634
+ '''
8612
8635
  result = self._values.get("destination")
8613
- assert result is not None, "Required property 'destination' is missing"
8614
- return typing.cast(_ILogGroup_3c4fa718, result)
8636
+ return typing.cast(typing.Optional[_ILogGroup_3c4fa718], result)
8615
8637
 
8616
8638
  @builtins.property
8617
8639
  def include_execution_data(self) -> typing.Optional[builtins.bool]:
@@ -8887,21 +8909,24 @@ class MapBaseJsonataOptions(JsonataCommonOptions):
8887
8909
 
8888
8910
  @jsii.data_type(
8889
8911
  jsii_type="aws-cdk-lib.aws_stepfunctions.MapBaseOptions",
8890
- jsii_struct_bases=[],
8912
+ jsii_struct_bases=[AssignableStateOptions],
8891
8913
  name_mapping={
8914
+ "assign": "assign",
8892
8915
  "item_selector": "itemSelector",
8893
8916
  "max_concurrency": "maxConcurrency",
8894
8917
  },
8895
8918
  )
8896
- class MapBaseOptions:
8919
+ class MapBaseOptions(AssignableStateOptions):
8897
8920
  def __init__(
8898
8921
  self,
8899
8922
  *,
8923
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
8900
8924
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
8901
8925
  max_concurrency: typing.Optional[jsii.Number] = None,
8902
8926
  ) -> None:
8903
8927
  '''Base properties for defining a Map state.
8904
8928
 
8929
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
8905
8930
  :param item_selector: The JSON that you want to override your default iteration input (mutually exclusive with ``parameters``). Default: $
8906
8931
  :param max_concurrency: MaxConcurrency. An upper bound on the number of iterations you want running at once. Default: - full concurrency
8907
8932
 
@@ -8913,9 +8938,13 @@ class MapBaseOptions:
8913
8938
  # The values are placeholders you should change.
8914
8939
  from aws_cdk import aws_stepfunctions as stepfunctions
8915
8940
 
8941
+ # assign: Any
8916
8942
  # item_selector: Any
8917
8943
 
8918
8944
  map_base_options = stepfunctions.MapBaseOptions(
8945
+ assign={
8946
+ "assign_key": assign
8947
+ },
8919
8948
  item_selector={
8920
8949
  "item_selector_key": item_selector
8921
8950
  },
@@ -8924,14 +8953,30 @@ class MapBaseOptions:
8924
8953
  '''
8925
8954
  if __debug__:
8926
8955
  type_hints = typing.get_type_hints(_typecheckingstub__7e64b5e53f029b5753785385b8477bb5c760876cfc7efe1b7fa47a5f792fffcb)
8956
+ check_type(argname="argument assign", value=assign, expected_type=type_hints["assign"])
8927
8957
  check_type(argname="argument item_selector", value=item_selector, expected_type=type_hints["item_selector"])
8928
8958
  check_type(argname="argument max_concurrency", value=max_concurrency, expected_type=type_hints["max_concurrency"])
8929
8959
  self._values: typing.Dict[builtins.str, typing.Any] = {}
8960
+ if assign is not None:
8961
+ self._values["assign"] = assign
8930
8962
  if item_selector is not None:
8931
8963
  self._values["item_selector"] = item_selector
8932
8964
  if max_concurrency is not None:
8933
8965
  self._values["max_concurrency"] = max_concurrency
8934
8966
 
8967
+ @builtins.property
8968
+ def assign(self) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
8969
+ '''Workflow variables to store in this step.
8970
+
8971
+ Using workflow variables, you can store data in a step and retrieve that data in future steps.
8972
+
8973
+ :default: - Not assign variables
8974
+
8975
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
8976
+ '''
8977
+ result = self._values.get("assign")
8978
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
8979
+
8935
8980
  @builtins.property
8936
8981
  def item_selector(
8937
8982
  self,
@@ -9349,9 +9394,18 @@ class ResultWriter(
9349
9394
  return typing.cast(typing.List[_PolicyStatement_0fe33853], jsii.invoke(self, "providePolicyStatements", []))
9350
9395
 
9351
9396
  @jsii.member(jsii_name="render")
9352
- def render(self) -> typing.Any:
9353
- '''Render ResultWriter in ASL JSON format.'''
9354
- return typing.cast(typing.Any, jsii.invoke(self, "render", []))
9397
+ def render(
9398
+ self,
9399
+ query_language: typing.Optional[QueryLanguage] = None,
9400
+ ) -> typing.Any:
9401
+ '''Render ResultWriter in ASL JSON format.
9402
+
9403
+ :param query_language: -
9404
+ '''
9405
+ if __debug__:
9406
+ type_hints = typing.get_type_hints(_typecheckingstub__690debfadbf5210fcb1a54639e938d5096d2b5eefb9fa6790552d733cf404d6d)
9407
+ check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
9408
+ return typing.cast(typing.Any, jsii.invoke(self, "render", [query_language]))
9355
9409
 
9356
9410
  @builtins.property
9357
9411
  @jsii.member(jsii_name="bucket")
@@ -9381,7 +9435,7 @@ class ResultWriterProps:
9381
9435
  bucket: _IBucket_42e086fd,
9382
9436
  prefix: typing.Optional[builtins.str] = None,
9383
9437
  ) -> None:
9384
- '''Interface for Result Writer configuration properties.
9438
+ '''Interface for Result Writer configuration props.
9385
9439
 
9386
9440
  :param bucket: S3 Bucket in which to save Map Run results.
9387
9441
  :param prefix: S3 prefix in which to save Map Run results. Default: - No prefix
@@ -9659,9 +9713,18 @@ class S3CsvItemReader(
9659
9713
  return typing.cast(typing.List[_PolicyStatement_0fe33853], jsii.invoke(self, "providePolicyStatements", []))
9660
9714
 
9661
9715
  @jsii.member(jsii_name="render")
9662
- def render(self) -> typing.Any:
9663
- '''Renders the ItemReader configuration as JSON object.'''
9664
- return typing.cast(typing.Any, jsii.invoke(self, "render", []))
9716
+ def render(
9717
+ self,
9718
+ query_language: typing.Optional[QueryLanguage] = None,
9719
+ ) -> typing.Any:
9720
+ '''Renders the ItemReader configuration as JSON object.
9721
+
9722
+ :param query_language: -
9723
+ '''
9724
+ if __debug__:
9725
+ type_hints = typing.get_type_hints(_typecheckingstub__c53f9a2ea7d79879b70d5d22b592d43105c7737e7451602d697e1aac041f8ffe)
9726
+ check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
9727
+ return typing.cast(typing.Any, jsii.invoke(self, "render", [query_language]))
9665
9728
 
9666
9729
  @jsii.member(jsii_name="validateItemReader")
9667
9730
  def validate_item_reader(self) -> typing.List[builtins.str]:
@@ -9911,12 +9974,20 @@ class S3JsonItemReader(
9911
9974
  return typing.cast(typing.List[_PolicyStatement_0fe33853], jsii.invoke(self, "providePolicyStatements", []))
9912
9975
 
9913
9976
  @jsii.member(jsii_name="render")
9914
- def render(self) -> typing.Any:
9977
+ def render(
9978
+ self,
9979
+ query_language: typing.Optional[QueryLanguage] = None,
9980
+ ) -> typing.Any:
9915
9981
  '''Renders the ItemReader configuration as JSON object.
9916
9982
 
9983
+ :param query_language: -
9984
+
9917
9985
  :return: - JSON object
9918
9986
  '''
9919
- return typing.cast(typing.Any, jsii.invoke(self, "render", []))
9987
+ if __debug__:
9988
+ type_hints = typing.get_type_hints(_typecheckingstub__f7ba747569314ea29170c03870323ea1ddbbec560569d03719539553067efa54)
9989
+ check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
9990
+ return typing.cast(typing.Any, jsii.invoke(self, "render", [query_language]))
9920
9991
 
9921
9992
  @jsii.member(jsii_name="validateItemReader")
9922
9993
  def validate_item_reader(self) -> typing.List[builtins.str]:
@@ -10022,12 +10093,20 @@ class S3ManifestItemReader(
10022
10093
  return typing.cast(typing.List[_PolicyStatement_0fe33853], jsii.invoke(self, "providePolicyStatements", []))
10023
10094
 
10024
10095
  @jsii.member(jsii_name="render")
10025
- def render(self) -> typing.Any:
10096
+ def render(
10097
+ self,
10098
+ query_language: typing.Optional[QueryLanguage] = None,
10099
+ ) -> typing.Any:
10026
10100
  '''Renders the ItemReader configuration as JSON object.
10027
10101
 
10102
+ :param query_language: -
10103
+
10028
10104
  :return: - JSON object
10029
10105
  '''
10030
- return typing.cast(typing.Any, jsii.invoke(self, "render", []))
10106
+ if __debug__:
10107
+ type_hints = typing.get_type_hints(_typecheckingstub__19056f84ae53892b20d050acc2be09f4ae779dad92d64cefcd50b3ad874b480f)
10108
+ check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
10109
+ return typing.cast(typing.Any, jsii.invoke(self, "render", [query_language]))
10031
10110
 
10032
10111
  @jsii.member(jsii_name="validateItemReader")
10033
10112
  def validate_item_reader(self) -> typing.List[builtins.str]:
@@ -10144,12 +10223,20 @@ class S3ObjectsItemReader(
10144
10223
  return typing.cast(typing.List[_PolicyStatement_0fe33853], jsii.invoke(self, "providePolicyStatements", []))
10145
10224
 
10146
10225
  @jsii.member(jsii_name="render")
10147
- def render(self) -> typing.Any:
10226
+ def render(
10227
+ self,
10228
+ query_language: typing.Optional[QueryLanguage] = None,
10229
+ ) -> typing.Any:
10148
10230
  '''Renders the ItemReader configuration as JSON object.
10149
10231
 
10232
+ :param query_language: -
10233
+
10150
10234
  :return: - JSON object
10151
10235
  '''
10152
- return typing.cast(typing.Any, jsii.invoke(self, "render", []))
10236
+ if __debug__:
10237
+ type_hints = typing.get_type_hints(_typecheckingstub__3bc2701d4d17a9ebaf074864a8e82d7f7fa507a2201b875a0966d6306ef38032)
10238
+ check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
10239
+ return typing.cast(typing.Any, jsii.invoke(self, "render", [query_language]))
10153
10240
 
10154
10241
  @jsii.member(jsii_name="validateItemReader")
10155
10242
  def validate_item_reader(self) -> typing.List[builtins.str]:
@@ -12434,7 +12521,7 @@ class StateProps(
12434
12521
 
12435
12522
  :default: - Not assign variables
12436
12523
 
12437
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
12524
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
12438
12525
  '''
12439
12526
  result = self._values.get("assign")
12440
12527
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -14760,7 +14847,7 @@ class TaskStateBaseProps(
14760
14847
 
14761
14848
  :default: - Not assign variables
14762
14849
 
14763
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
14850
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
14764
14851
  '''
14765
14852
  result = self._values.get("assign")
14766
14853
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -15117,7 +15204,7 @@ class TaskStateJsonPathBaseProps(
15117
15204
 
15118
15205
  :default: - Not assign variables
15119
15206
 
15120
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
15207
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
15121
15208
  '''
15122
15209
  result = self._values.get("assign")
15123
15210
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -15434,7 +15521,7 @@ class TaskStateJsonataBaseProps(
15434
15521
 
15435
15522
  :default: - Not assign variables
15436
15523
 
15437
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
15524
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
15438
15525
  '''
15439
15526
  result = self._values.get("assign")
15440
15527
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -15893,7 +15980,7 @@ class WaitJsonPathProps(StateBaseProps, AssignableStateOptions, JsonPathCommonOp
15893
15980
 
15894
15981
  :default: - Not assign variables
15895
15982
 
15896
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
15983
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
15897
15984
  '''
15898
15985
  result = self._values.get("assign")
15899
15986
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -16048,7 +16135,7 @@ class WaitJsonataProps(StateBaseProps, AssignableStateOptions, JsonataCommonOpti
16048
16135
 
16049
16136
  :default: - Not assign variables
16050
16137
 
16051
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
16138
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
16052
16139
  '''
16053
16140
  result = self._values.get("assign")
16054
16141
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -16205,7 +16292,7 @@ class WaitProps(StateBaseProps, AssignableStateOptions):
16205
16292
 
16206
16293
  :default: - Not assign variables
16207
16294
 
16208
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
16295
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
16209
16296
  '''
16210
16297
  result = self._values.get("assign")
16211
16298
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -17530,7 +17617,7 @@ class ChoiceJsonPathProps(
17530
17617
 
17531
17618
  :default: - Not assign variables
17532
17619
 
17533
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
17620
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
17534
17621
  '''
17535
17622
  result = self._values.get("assign")
17536
17623
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -17678,7 +17765,7 @@ class ChoiceJsonataProps(StateBaseProps, AssignableStateOptions, JsonataCommonOp
17678
17765
 
17679
17766
  :default: - Not assign variables
17680
17767
 
17681
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
17768
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
17682
17769
  '''
17683
17770
  result = self._values.get("assign")
17684
17771
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -17834,7 +17921,7 @@ class ChoiceProps(
17834
17921
 
17835
17922
  :default: - Not assign variables
17836
17923
 
17837
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
17924
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
17838
17925
  '''
17839
17926
  result = self._values.get("assign")
17840
17927
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -18146,6 +18233,7 @@ class CustomerManagedEncryptionConfiguration(
18146
18233
  "comment": "comment",
18147
18234
  "query_language": "queryLanguage",
18148
18235
  "state_name": "stateName",
18236
+ "assign": "assign",
18149
18237
  "item_selector": "itemSelector",
18150
18238
  "max_concurrency": "maxConcurrency",
18151
18239
  "input_path": "inputPath",
@@ -18176,6 +18264,7 @@ class DistributedMapJsonPathProps(
18176
18264
  comment: typing.Optional[builtins.str] = None,
18177
18265
  query_language: typing.Optional[QueryLanguage] = None,
18178
18266
  state_name: typing.Optional[builtins.str] = None,
18267
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
18179
18268
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
18180
18269
  max_concurrency: typing.Optional[jsii.Number] = None,
18181
18270
  input_path: typing.Optional[builtins.str] = None,
@@ -18199,6 +18288,7 @@ class DistributedMapJsonPathProps(
18199
18288
  :param comment: A comment describing this state. Default: No comment
18200
18289
  :param query_language: The name of the query language used by the state. If the state does not contain a ``queryLanguage`` field, then it will use the query language specified in the top-level ``queryLanguage`` field. Default: - JSONPath
18201
18290
  :param state_name: Optional name for this state. Default: - The construct ID will be used as state name
18291
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
18202
18292
  :param item_selector: The JSON that you want to override your default iteration input (mutually exclusive with ``parameters``). Default: $
18203
18293
  :param max_concurrency: MaxConcurrency. An upper bound on the number of iterations you want running at once. Default: - full concurrency
18204
18294
  :param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: $
@@ -18225,6 +18315,7 @@ class DistributedMapJsonPathProps(
18225
18315
  # The values are placeholders you should change.
18226
18316
  from aws_cdk import aws_stepfunctions as stepfunctions
18227
18317
 
18318
+ # assign: Any
18228
18319
  # item_batcher: stepfunctions.ItemBatcher
18229
18320
  # item_reader: stepfunctions.IItemReader
18230
18321
  # item_selector: Any
@@ -18232,6 +18323,9 @@ class DistributedMapJsonPathProps(
18232
18323
  # result_writer: stepfunctions.ResultWriter
18233
18324
 
18234
18325
  distributed_map_json_path_props = stepfunctions.DistributedMapJsonPathProps(
18326
+ assign={
18327
+ "assign_key": assign
18328
+ },
18235
18329
  comment="comment",
18236
18330
  input_path="inputPath",
18237
18331
  item_batcher=item_batcher,
@@ -18263,6 +18357,7 @@ class DistributedMapJsonPathProps(
18263
18357
  check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
18264
18358
  check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
18265
18359
  check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
18360
+ check_type(argname="argument assign", value=assign, expected_type=type_hints["assign"])
18266
18361
  check_type(argname="argument item_selector", value=item_selector, expected_type=type_hints["item_selector"])
18267
18362
  check_type(argname="argument max_concurrency", value=max_concurrency, expected_type=type_hints["max_concurrency"])
18268
18363
  check_type(argname="argument input_path", value=input_path, expected_type=type_hints["input_path"])
@@ -18287,6 +18382,8 @@ class DistributedMapJsonPathProps(
18287
18382
  self._values["query_language"] = query_language
18288
18383
  if state_name is not None:
18289
18384
  self._values["state_name"] = state_name
18385
+ if assign is not None:
18386
+ self._values["assign"] = assign
18290
18387
  if item_selector is not None:
18291
18388
  self._values["item_selector"] = item_selector
18292
18389
  if max_concurrency is not None:
@@ -18352,6 +18449,19 @@ class DistributedMapJsonPathProps(
18352
18449
  result = self._values.get("state_name")
18353
18450
  return typing.cast(typing.Optional[builtins.str], result)
18354
18451
 
18452
+ @builtins.property
18453
+ def assign(self) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
18454
+ '''Workflow variables to store in this step.
18455
+
18456
+ Using workflow variables, you can store data in a step and retrieve that data in future steps.
18457
+
18458
+ :default: - Not assign variables
18459
+
18460
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
18461
+ '''
18462
+ result = self._values.get("assign")
18463
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
18464
+
18355
18465
  @builtins.property
18356
18466
  def item_selector(
18357
18467
  self,
@@ -18568,6 +18678,7 @@ class DistributedMapJsonPathProps(
18568
18678
  "comment": "comment",
18569
18679
  "query_language": "queryLanguage",
18570
18680
  "state_name": "stateName",
18681
+ "assign": "assign",
18571
18682
  "item_selector": "itemSelector",
18572
18683
  "max_concurrency": "maxConcurrency",
18573
18684
  "outputs": "outputs",
@@ -18588,6 +18699,7 @@ class DistributedMapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataO
18588
18699
  comment: typing.Optional[builtins.str] = None,
18589
18700
  query_language: typing.Optional[QueryLanguage] = None,
18590
18701
  state_name: typing.Optional[builtins.str] = None,
18702
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
18591
18703
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
18592
18704
  max_concurrency: typing.Optional[jsii.Number] = None,
18593
18705
  outputs: typing.Any = None,
@@ -18605,6 +18717,7 @@ class DistributedMapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataO
18605
18717
  :param comment: A comment describing this state. Default: No comment
18606
18718
  :param query_language: The name of the query language used by the state. If the state does not contain a ``queryLanguage`` field, then it will use the query language specified in the top-level ``queryLanguage`` field. Default: - JSONPath
18607
18719
  :param state_name: Optional name for this state. Default: - The construct ID will be used as state name
18720
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
18608
18721
  :param item_selector: The JSON that you want to override your default iteration input (mutually exclusive with ``parameters``). Default: $
18609
18722
  :param max_concurrency: MaxConcurrency. An upper bound on the number of iterations you want running at once. Default: - full concurrency
18610
18723
  :param outputs: Used to specify and transform output from the state. When specified, the value overrides the state output default. The output field accepts any JSON value (object, array, string, number, boolean, null). Any string value, including those inside objects or arrays, will be evaluated as JSONata if surrounded by {% %} characters. Output also accepts a JSONata expression directly. Default: - $states.result or $states.errorOutput
@@ -18625,6 +18738,7 @@ class DistributedMapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataO
18625
18738
  # The values are placeholders you should change.
18626
18739
  from aws_cdk import aws_stepfunctions as stepfunctions
18627
18740
 
18741
+ # assign: Any
18628
18742
  # item_batcher: stepfunctions.ItemBatcher
18629
18743
  # item_reader: stepfunctions.IItemReader
18630
18744
  # item_selector: Any
@@ -18633,6 +18747,9 @@ class DistributedMapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataO
18633
18747
  # result_writer: stepfunctions.ResultWriter
18634
18748
 
18635
18749
  distributed_map_jsonata_props = stepfunctions.DistributedMapJsonataProps(
18750
+ assign={
18751
+ "assign_key": assign
18752
+ },
18636
18753
  comment="comment",
18637
18754
  item_batcher=item_batcher,
18638
18755
  item_reader=item_reader,
@@ -18656,6 +18773,7 @@ class DistributedMapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataO
18656
18773
  check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
18657
18774
  check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
18658
18775
  check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
18776
+ check_type(argname="argument assign", value=assign, expected_type=type_hints["assign"])
18659
18777
  check_type(argname="argument item_selector", value=item_selector, expected_type=type_hints["item_selector"])
18660
18778
  check_type(argname="argument max_concurrency", value=max_concurrency, expected_type=type_hints["max_concurrency"])
18661
18779
  check_type(argname="argument outputs", value=outputs, expected_type=type_hints["outputs"])
@@ -18674,6 +18792,8 @@ class DistributedMapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataO
18674
18792
  self._values["query_language"] = query_language
18675
18793
  if state_name is not None:
18676
18794
  self._values["state_name"] = state_name
18795
+ if assign is not None:
18796
+ self._values["assign"] = assign
18677
18797
  if item_selector is not None:
18678
18798
  self._values["item_selector"] = item_selector
18679
18799
  if max_concurrency is not None:
@@ -18727,6 +18847,19 @@ class DistributedMapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataO
18727
18847
  result = self._values.get("state_name")
18728
18848
  return typing.cast(typing.Optional[builtins.str], result)
18729
18849
 
18850
+ @builtins.property
18851
+ def assign(self) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
18852
+ '''Workflow variables to store in this step.
18853
+
18854
+ Using workflow variables, you can store data in a step and retrieve that data in future steps.
18855
+
18856
+ :default: - Not assign variables
18857
+
18858
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
18859
+ '''
18860
+ result = self._values.get("assign")
18861
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
18862
+
18730
18863
  @builtins.property
18731
18864
  def item_selector(
18732
18865
  self,
@@ -19638,7 +19771,7 @@ class JsonPathStateProps(StateBaseProps, JsonPathCommonOptions, AssignableStateO
19638
19771
 
19639
19772
  :default: - Not assign variables
19640
19773
 
19641
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
19774
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
19642
19775
  '''
19643
19776
  result = self._values.get("assign")
19644
19777
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -19837,7 +19970,7 @@ class JsonataStateProps(StateBaseProps, JsonataStateOptions, AssignableStateOpti
19837
19970
 
19838
19971
  :default: - Not assign variables
19839
19972
 
19840
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
19973
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
19841
19974
  '''
19842
19975
  result = self._values.get("assign")
19843
19976
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -19879,7 +20012,6 @@ class MapBase(
19879
20012
  comment: typing.Optional[builtins.str] = None,
19880
20013
  query_language: typing.Optional[QueryLanguage] = None,
19881
20014
  state_name: typing.Optional[builtins.str] = None,
19882
- assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
19883
20015
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
19884
20016
  max_concurrency: typing.Optional[jsii.Number] = None,
19885
20017
  items_path: typing.Optional[builtins.str] = None,
@@ -19887,6 +20019,7 @@ class MapBase(
19887
20019
  result_path: typing.Optional[builtins.str] = None,
19888
20020
  result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
19889
20021
  items: typing.Optional[ProvideItems] = None,
20022
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
19890
20023
  input_path: typing.Optional[builtins.str] = None,
19891
20024
  output_path: typing.Optional[builtins.str] = None,
19892
20025
  outputs: typing.Any = None,
@@ -19897,7 +20030,6 @@ class MapBase(
19897
20030
  :param comment: A comment describing this state. Default: No comment
19898
20031
  :param query_language: The name of the query language used by the state. If the state does not contain a ``queryLanguage`` field, then it will use the query language specified in the top-level ``queryLanguage`` field. Default: - JSONPath
19899
20032
  :param state_name: Optional name for this state. Default: - The construct ID will be used as state name
19900
- :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
19901
20033
  :param item_selector: The JSON that you want to override your default iteration input (mutually exclusive with ``parameters``). Default: $
19902
20034
  :param max_concurrency: MaxConcurrency. An upper bound on the number of iterations you want running at once. Default: - full concurrency
19903
20035
  :param items_path: JSONPath expression to select the array to iterate over. Default: $
@@ -19905,6 +20037,7 @@ class MapBase(
19905
20037
  :param result_path: JSONPath expression to indicate where to inject the state's output. May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output. Default: $
19906
20038
  :param result_selector: The JSON that will replace the state's raw result and become the effective result before ResultPath is applied. You can use ResultSelector to create a payload with values that are static or selected from the state's raw result. Default: - None
19907
20039
  :param items: The array that the Map state will iterate over. Default: - The state input as is.
20040
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
19908
20041
  :param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: $
19909
20042
  :param output_path: JSONPath expression to select part of the state to be the output to this state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: $
19910
20043
  :param outputs: Used to specify and transform output from the state. When specified, the value overrides the state output default. The output field accepts any JSON value (object, array, string, number, boolean, null). Any string value, including those inside objects or arrays, will be evaluated as JSONata if surrounded by {% %} characters. Output also accepts a JSONata expression directly. Default: - $states.result or $states.errorOutput
@@ -19917,7 +20050,6 @@ class MapBase(
19917
20050
  comment=comment,
19918
20051
  query_language=query_language,
19919
20052
  state_name=state_name,
19920
- assign=assign,
19921
20053
  item_selector=item_selector,
19922
20054
  max_concurrency=max_concurrency,
19923
20055
  items_path=items_path,
@@ -19925,6 +20057,7 @@ class MapBase(
19925
20057
  result_path=result_path,
19926
20058
  result_selector=result_selector,
19927
20059
  items=items,
20060
+ assign=assign,
19928
20061
  input_path=input_path,
19929
20062
  output_path=output_path,
19930
20063
  outputs=outputs,
@@ -19999,11 +20132,7 @@ typing.cast(typing.Any, MapBase).__jsii_proxy_class__ = lambda : _MapBaseProxy
19999
20132
  @jsii.data_type(
20000
20133
  jsii_type="aws-cdk-lib.aws_stepfunctions.MapBaseProps",
20001
20134
  jsii_struct_bases=[
20002
- StateBaseProps,
20003
- AssignableStateOptions,
20004
- MapBaseOptions,
20005
- MapBaseJsonPathOptions,
20006
- MapBaseJsonataOptions,
20135
+ StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions, MapBaseJsonataOptions
20007
20136
  ],
20008
20137
  name_mapping={
20009
20138
  "comment": "comment",
@@ -20024,7 +20153,6 @@ typing.cast(typing.Any, MapBase).__jsii_proxy_class__ = lambda : _MapBaseProxy
20024
20153
  )
20025
20154
  class MapBaseProps(
20026
20155
  StateBaseProps,
20027
- AssignableStateOptions,
20028
20156
  MapBaseOptions,
20029
20157
  MapBaseJsonPathOptions,
20030
20158
  MapBaseJsonataOptions,
@@ -20185,7 +20313,7 @@ class MapBaseProps(
20185
20313
 
20186
20314
  :default: - Not assign variables
20187
20315
 
20188
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
20316
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
20189
20317
  '''
20190
20318
  result = self._values.get("assign")
20191
20319
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -20335,6 +20463,7 @@ class MapBaseProps(
20335
20463
  "comment": "comment",
20336
20464
  "query_language": "queryLanguage",
20337
20465
  "state_name": "stateName",
20466
+ "assign": "assign",
20338
20467
  "item_selector": "itemSelector",
20339
20468
  "max_concurrency": "maxConcurrency",
20340
20469
  "input_path": "inputPath",
@@ -20353,6 +20482,7 @@ class MapJsonPathProps(StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions):
20353
20482
  comment: typing.Optional[builtins.str] = None,
20354
20483
  query_language: typing.Optional[QueryLanguage] = None,
20355
20484
  state_name: typing.Optional[builtins.str] = None,
20485
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
20356
20486
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
20357
20487
  max_concurrency: typing.Optional[jsii.Number] = None,
20358
20488
  input_path: typing.Optional[builtins.str] = None,
@@ -20368,6 +20498,7 @@ class MapJsonPathProps(StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions):
20368
20498
  :param comment: A comment describing this state. Default: No comment
20369
20499
  :param query_language: The name of the query language used by the state. If the state does not contain a ``queryLanguage`` field, then it will use the query language specified in the top-level ``queryLanguage`` field. Default: - JSONPath
20370
20500
  :param state_name: Optional name for this state. Default: - The construct ID will be used as state name
20501
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
20371
20502
  :param item_selector: The JSON that you want to override your default iteration input (mutually exclusive with ``parameters``). Default: $
20372
20503
  :param max_concurrency: MaxConcurrency. An upper bound on the number of iterations you want running at once. Default: - full concurrency
20373
20504
  :param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: $
@@ -20386,11 +20517,15 @@ class MapJsonPathProps(StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions):
20386
20517
  # The values are placeholders you should change.
20387
20518
  from aws_cdk import aws_stepfunctions as stepfunctions
20388
20519
 
20520
+ # assign: Any
20389
20521
  # item_selector: Any
20390
20522
  # parameters: Any
20391
20523
  # result_selector: Any
20392
20524
 
20393
20525
  map_json_path_props = stepfunctions.MapJsonPathProps(
20526
+ assign={
20527
+ "assign_key": assign
20528
+ },
20394
20529
  comment="comment",
20395
20530
  input_path="inputPath",
20396
20531
  item_selector={
@@ -20416,6 +20551,7 @@ class MapJsonPathProps(StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions):
20416
20551
  check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
20417
20552
  check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
20418
20553
  check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
20554
+ check_type(argname="argument assign", value=assign, expected_type=type_hints["assign"])
20419
20555
  check_type(argname="argument item_selector", value=item_selector, expected_type=type_hints["item_selector"])
20420
20556
  check_type(argname="argument max_concurrency", value=max_concurrency, expected_type=type_hints["max_concurrency"])
20421
20557
  check_type(argname="argument input_path", value=input_path, expected_type=type_hints["input_path"])
@@ -20432,6 +20568,8 @@ class MapJsonPathProps(StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions):
20432
20568
  self._values["query_language"] = query_language
20433
20569
  if state_name is not None:
20434
20570
  self._values["state_name"] = state_name
20571
+ if assign is not None:
20572
+ self._values["assign"] = assign
20435
20573
  if item_selector is not None:
20436
20574
  self._values["item_selector"] = item_selector
20437
20575
  if max_concurrency is not None:
@@ -20481,6 +20619,19 @@ class MapJsonPathProps(StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions):
20481
20619
  result = self._values.get("state_name")
20482
20620
  return typing.cast(typing.Optional[builtins.str], result)
20483
20621
 
20622
+ @builtins.property
20623
+ def assign(self) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
20624
+ '''Workflow variables to store in this step.
20625
+
20626
+ Using workflow variables, you can store data in a step and retrieve that data in future steps.
20627
+
20628
+ :default: - Not assign variables
20629
+
20630
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
20631
+ '''
20632
+ result = self._values.get("assign")
20633
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
20634
+
20484
20635
  @builtins.property
20485
20636
  def item_selector(
20486
20637
  self,
@@ -20617,6 +20768,7 @@ class MapJsonPathProps(StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions):
20617
20768
  "comment": "comment",
20618
20769
  "query_language": "queryLanguage",
20619
20770
  "state_name": "stateName",
20771
+ "assign": "assign",
20620
20772
  "item_selector": "itemSelector",
20621
20773
  "max_concurrency": "maxConcurrency",
20622
20774
  "outputs": "outputs",
@@ -20631,6 +20783,7 @@ class MapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataOptions):
20631
20783
  comment: typing.Optional[builtins.str] = None,
20632
20784
  query_language: typing.Optional[QueryLanguage] = None,
20633
20785
  state_name: typing.Optional[builtins.str] = None,
20786
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
20634
20787
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
20635
20788
  max_concurrency: typing.Optional[jsii.Number] = None,
20636
20789
  outputs: typing.Any = None,
@@ -20642,6 +20795,7 @@ class MapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataOptions):
20642
20795
  :param comment: A comment describing this state. Default: No comment
20643
20796
  :param query_language: The name of the query language used by the state. If the state does not contain a ``queryLanguage`` field, then it will use the query language specified in the top-level ``queryLanguage`` field. Default: - JSONPath
20644
20797
  :param state_name: Optional name for this state. Default: - The construct ID will be used as state name
20798
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
20645
20799
  :param item_selector: The JSON that you want to override your default iteration input (mutually exclusive with ``parameters``). Default: $
20646
20800
  :param max_concurrency: MaxConcurrency. An upper bound on the number of iterations you want running at once. Default: - full concurrency
20647
20801
  :param outputs: Used to specify and transform output from the state. When specified, the value overrides the state output default. The output field accepts any JSON value (object, array, string, number, boolean, null). Any string value, including those inside objects or arrays, will be evaluated as JSONata if surrounded by {% %} characters. Output also accepts a JSONata expression directly. Default: - $states.result or $states.errorOutput
@@ -20656,12 +20810,16 @@ class MapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataOptions):
20656
20810
  # The values are placeholders you should change.
20657
20811
  from aws_cdk import aws_stepfunctions as stepfunctions
20658
20812
 
20813
+ # assign: Any
20659
20814
  # item_selector: Any
20660
20815
  # outputs: Any
20661
20816
  # parameters: Any
20662
20817
  # provide_items: stepfunctions.ProvideItems
20663
20818
 
20664
20819
  map_jsonata_props = stepfunctions.MapJsonataProps(
20820
+ assign={
20821
+ "assign_key": assign
20822
+ },
20665
20823
  comment="comment",
20666
20824
  items=provide_items,
20667
20825
  item_selector={
@@ -20681,6 +20839,7 @@ class MapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataOptions):
20681
20839
  check_type(argname="argument comment", value=comment, expected_type=type_hints["comment"])
20682
20840
  check_type(argname="argument query_language", value=query_language, expected_type=type_hints["query_language"])
20683
20841
  check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
20842
+ check_type(argname="argument assign", value=assign, expected_type=type_hints["assign"])
20684
20843
  check_type(argname="argument item_selector", value=item_selector, expected_type=type_hints["item_selector"])
20685
20844
  check_type(argname="argument max_concurrency", value=max_concurrency, expected_type=type_hints["max_concurrency"])
20686
20845
  check_type(argname="argument outputs", value=outputs, expected_type=type_hints["outputs"])
@@ -20693,6 +20852,8 @@ class MapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataOptions):
20693
20852
  self._values["query_language"] = query_language
20694
20853
  if state_name is not None:
20695
20854
  self._values["state_name"] = state_name
20855
+ if assign is not None:
20856
+ self._values["assign"] = assign
20696
20857
  if item_selector is not None:
20697
20858
  self._values["item_selector"] = item_selector
20698
20859
  if max_concurrency is not None:
@@ -20734,6 +20895,19 @@ class MapJsonataProps(StateBaseProps, MapBaseOptions, MapBaseJsonataOptions):
20734
20895
  result = self._values.get("state_name")
20735
20896
  return typing.cast(typing.Optional[builtins.str], result)
20736
20897
 
20898
+ @builtins.property
20899
+ def assign(self) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
20900
+ '''Workflow variables to store in this step.
20901
+
20902
+ Using workflow variables, you can store data in a step and retrieve that data in future steps.
20903
+
20904
+ :default: - Not assign variables
20905
+
20906
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
20907
+ '''
20908
+ result = self._values.get("assign")
20909
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
20910
+
20737
20911
  @builtins.property
20738
20912
  def item_selector(
20739
20913
  self,
@@ -20986,7 +21160,7 @@ class MapProps(MapBaseProps, MapBaseOptions):
20986
21160
 
20987
21161
  :default: - Not assign variables
20988
21162
 
20989
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
21163
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
20990
21164
  '''
20991
21165
  result = self._values.get("assign")
20992
21166
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -21592,7 +21766,7 @@ class ParallelJsonPathProps(
21592
21766
 
21593
21767
  :default: - Not assign variables
21594
21768
 
21595
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
21769
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
21596
21770
  '''
21597
21771
  result = self._values.get("assign")
21598
21772
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -21782,7 +21956,7 @@ class ParallelJsonataProps(
21782
21956
 
21783
21957
  :default: - Not assign variables
21784
21958
 
21785
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
21959
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
21786
21960
  '''
21787
21961
  result = self._values.get("assign")
21788
21962
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -21985,7 +22159,7 @@ class ParallelProps(
21985
22159
 
21986
22160
  :default: - Not assign variables
21987
22161
 
21988
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
22162
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
21989
22163
  '''
21990
22164
  result = self._values.get("assign")
21991
22165
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -22413,7 +22587,7 @@ class PassJsonPathProps(StateBaseProps, AssignableStateOptions, JsonPathCommonOp
22413
22587
 
22414
22588
  :default: - Not assign variables
22415
22589
 
22416
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
22590
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
22417
22591
  '''
22418
22592
  result = self._values.get("assign")
22419
22593
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -22599,7 +22773,7 @@ class PassJsonataProps(StateBaseProps, AssignableStateOptions, JsonataCommonOpti
22599
22773
 
22600
22774
  :default: - Not assign variables
22601
22775
 
22602
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
22776
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
22603
22777
  '''
22604
22778
  result = self._values.get("assign")
22605
22779
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -22784,7 +22958,7 @@ class PassProps(
22784
22958
 
22785
22959
  :default: - Not assign variables
22786
22960
 
22787
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
22961
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
22788
22962
  '''
22789
22963
  result = self._values.get("assign")
22790
22964
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -23167,7 +23341,7 @@ class SingleStateOptions(ParallelProps):
23167
23341
 
23168
23342
  :default: - Not assign variables
23169
23343
 
23170
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
23344
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
23171
23345
  '''
23172
23346
  result = self._values.get("assign")
23173
23347
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -23431,6 +23605,7 @@ class DistributedMap(
23431
23605
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
23432
23606
  max_concurrency: typing.Optional[jsii.Number] = None,
23433
23607
  items: typing.Optional[ProvideItems] = None,
23608
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
23434
23609
  outputs: typing.Any = None,
23435
23610
  ) -> "DistributedMap":
23436
23611
  '''Define a Distributed Mode Map state using JSONata in the state machine.
@@ -23459,6 +23634,7 @@ class DistributedMap(
23459
23634
  :param item_selector: The JSON that you want to override your default iteration input (mutually exclusive with ``parameters``). Default: $
23460
23635
  :param max_concurrency: MaxConcurrency. An upper bound on the number of iterations you want running at once. Default: - full concurrency
23461
23636
  :param items: The array that the Map state will iterate over. Default: - The state input as is.
23637
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
23462
23638
  :param outputs: Used to specify and transform output from the state. When specified, the value overrides the state output default. The output field accepts any JSON value (object, array, string, number, boolean, null). Any string value, including those inside objects or arrays, will be evaluated as JSONata if surrounded by {% %} characters. Output also accepts a JSONata expression directly. Default: - $states.result or $states.errorOutput
23463
23639
 
23464
23640
  :see: https://docs.aws.amazon.com/step-functions/latest/dg/concepts-asl-use-map-state-distributed.html
@@ -23481,6 +23657,7 @@ class DistributedMap(
23481
23657
  item_selector=item_selector,
23482
23658
  max_concurrency=max_concurrency,
23483
23659
  items=items,
23660
+ assign=assign,
23484
23661
  outputs=outputs,
23485
23662
  )
23486
23663
 
@@ -23511,6 +23688,7 @@ class DistributedMap(
23511
23688
  max_concurrency_path: typing.Optional[builtins.str] = None,
23512
23689
  result_path: typing.Optional[builtins.str] = None,
23513
23690
  result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
23691
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
23514
23692
  input_path: typing.Optional[builtins.str] = None,
23515
23693
  output_path: typing.Optional[builtins.str] = None,
23516
23694
  ) -> "DistributedMap":
@@ -23545,6 +23723,7 @@ class DistributedMap(
23545
23723
  :param max_concurrency_path: MaxConcurrencyPath. A JsonPath that specifies the maximum concurrency dynamically from the state input. Default: - full concurrency
23546
23724
  :param result_path: JSONPath expression to indicate where to inject the state's output. May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output. Default: $
23547
23725
  :param result_selector: The JSON that will replace the state's raw result and become the effective result before ResultPath is applied. You can use ResultSelector to create a payload with values that are static or selected from the state's raw result. Default: - None
23726
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
23548
23727
  :param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: $
23549
23728
  :param output_path: JSONPath expression to select part of the state to be the output to this state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: $
23550
23729
 
@@ -23573,6 +23752,7 @@ class DistributedMap(
23573
23752
  max_concurrency_path=max_concurrency_path,
23574
23753
  result_path=result_path,
23575
23754
  result_selector=result_selector,
23755
+ assign=assign,
23576
23756
  input_path=input_path,
23577
23757
  output_path=output_path,
23578
23758
  )
@@ -23919,7 +24099,7 @@ class DistributedMapProps(
23919
24099
 
23920
24100
  :default: - Not assign variables
23921
24101
 
23922
- :see: https://docs.aws.amazon.com/ja_jp/step-functions/latest/dg/workflow-variables.html
24102
+ :see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
23923
24103
  '''
23924
24104
  result = self._values.get("assign")
23925
24105
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
@@ -24211,12 +24391,12 @@ class Map(
24211
24391
  comment: typing.Optional[builtins.str] = None,
24212
24392
  query_language: typing.Optional[QueryLanguage] = None,
24213
24393
  state_name: typing.Optional[builtins.str] = None,
24214
- assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
24215
24394
  items_path: typing.Optional[builtins.str] = None,
24216
24395
  max_concurrency_path: typing.Optional[builtins.str] = None,
24217
24396
  result_path: typing.Optional[builtins.str] = None,
24218
24397
  result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
24219
24398
  items: typing.Optional[ProvideItems] = None,
24399
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
24220
24400
  input_path: typing.Optional[builtins.str] = None,
24221
24401
  output_path: typing.Optional[builtins.str] = None,
24222
24402
  outputs: typing.Any = None,
@@ -24230,12 +24410,12 @@ class Map(
24230
24410
  :param comment: A comment describing this state. Default: No comment
24231
24411
  :param query_language: The name of the query language used by the state. If the state does not contain a ``queryLanguage`` field, then it will use the query language specified in the top-level ``queryLanguage`` field. Default: - JSONPath
24232
24412
  :param state_name: Optional name for this state. Default: - The construct ID will be used as state name
24233
- :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
24234
24413
  :param items_path: JSONPath expression to select the array to iterate over. Default: $
24235
24414
  :param max_concurrency_path: MaxConcurrencyPath. A JsonPath that specifies the maximum concurrency dynamically from the state input. Default: - full concurrency
24236
24415
  :param result_path: JSONPath expression to indicate where to inject the state's output. May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output. Default: $
24237
24416
  :param result_selector: The JSON that will replace the state's raw result and become the effective result before ResultPath is applied. You can use ResultSelector to create a payload with values that are static or selected from the state's raw result. Default: - None
24238
24417
  :param items: The array that the Map state will iterate over. Default: - The state input as is.
24418
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
24239
24419
  :param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: $
24240
24420
  :param output_path: JSONPath expression to select part of the state to be the output to this state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: $
24241
24421
  :param outputs: Used to specify and transform output from the state. When specified, the value overrides the state output default. The output field accepts any JSON value (object, array, string, number, boolean, null). Any string value, including those inside objects or arrays, will be evaluated as JSONata if surrounded by {% %} characters. Output also accepts a JSONata expression directly. Default: - $states.result or $states.errorOutput
@@ -24251,12 +24431,12 @@ class Map(
24251
24431
  comment=comment,
24252
24432
  query_language=query_language,
24253
24433
  state_name=state_name,
24254
- assign=assign,
24255
24434
  items_path=items_path,
24256
24435
  max_concurrency_path=max_concurrency_path,
24257
24436
  result_path=result_path,
24258
24437
  result_selector=result_selector,
24259
24438
  items=items,
24439
+ assign=assign,
24260
24440
  input_path=input_path,
24261
24441
  output_path=output_path,
24262
24442
  outputs=outputs,
@@ -24278,6 +24458,7 @@ class Map(
24278
24458
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
24279
24459
  max_concurrency: typing.Optional[jsii.Number] = None,
24280
24460
  items: typing.Optional[ProvideItems] = None,
24461
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
24281
24462
  outputs: typing.Any = None,
24282
24463
  ) -> "Map":
24283
24464
  '''Define a Map state using JSONata in the state machine.
@@ -24297,6 +24478,7 @@ class Map(
24297
24478
  :param item_selector: The JSON that you want to override your default iteration input (mutually exclusive with ``parameters``). Default: $
24298
24479
  :param max_concurrency: MaxConcurrency. An upper bound on the number of iterations you want running at once. Default: - full concurrency
24299
24480
  :param items: The array that the Map state will iterate over. Default: - The state input as is.
24481
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
24300
24482
  :param outputs: Used to specify and transform output from the state. When specified, the value overrides the state output default. The output field accepts any JSON value (object, array, string, number, boolean, null). Any string value, including those inside objects or arrays, will be evaluated as JSONata if surrounded by {% %} characters. Output also accepts a JSONata expression directly. Default: - $states.result or $states.errorOutput
24301
24483
 
24302
24484
  :see: https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-map-state.html
@@ -24313,6 +24495,7 @@ class Map(
24313
24495
  item_selector=item_selector,
24314
24496
  max_concurrency=max_concurrency,
24315
24497
  items=items,
24498
+ assign=assign,
24316
24499
  outputs=outputs,
24317
24500
  )
24318
24501
 
@@ -24335,6 +24518,7 @@ class Map(
24335
24518
  max_concurrency_path: typing.Optional[builtins.str] = None,
24336
24519
  result_path: typing.Optional[builtins.str] = None,
24337
24520
  result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
24521
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
24338
24522
  input_path: typing.Optional[builtins.str] = None,
24339
24523
  output_path: typing.Optional[builtins.str] = None,
24340
24524
  ) -> "Map":
@@ -24358,6 +24542,7 @@ class Map(
24358
24542
  :param max_concurrency_path: MaxConcurrencyPath. A JsonPath that specifies the maximum concurrency dynamically from the state input. Default: - full concurrency
24359
24543
  :param result_path: JSONPath expression to indicate where to inject the state's output. May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output. Default: $
24360
24544
  :param result_selector: The JSON that will replace the state's raw result and become the effective result before ResultPath is applied. You can use ResultSelector to create a payload with values that are static or selected from the state's raw result. Default: - None
24545
+ :param assign: Workflow variables to store in this step. Using workflow variables, you can store data in a step and retrieve that data in future steps. Default: - Not assign variables
24361
24546
  :param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: $
24362
24547
  :param output_path: JSONPath expression to select part of the state to be the output to this state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: $
24363
24548
 
@@ -24378,6 +24563,7 @@ class Map(
24378
24563
  max_concurrency_path=max_concurrency_path,
24379
24564
  result_path=result_path,
24380
24565
  result_selector=result_selector,
24566
+ assign=assign,
24381
24567
  input_path=input_path,
24382
24568
  output_path=output_path,
24383
24569
  )
@@ -25499,6 +25685,12 @@ def _typecheckingstub__2ff50e720afaefc7918f464dff492d9f8f0c7249476cc81f87395388b
25499
25685
  """Type checking stubs"""
25500
25686
  pass
25501
25687
 
25688
+ def _typecheckingstub__783b63447c23bb4d8a57ba3e21444d4647a4973f534473e7a1f006d36180cc81(
25689
+ query_language: typing.Optional[QueryLanguage] = None,
25690
+ ) -> None:
25691
+ """Type checking stubs"""
25692
+ pass
25693
+
25502
25694
  def _typecheckingstub__3dbb71ff45be8e3c94fd024ed10a51f986e7e089ef33bfae17adc18a574bf024(
25503
25695
  state: IChainable,
25504
25696
  ) -> None:
@@ -25748,7 +25940,7 @@ def _typecheckingstub__fcf28e5e7257e423138f4865382515f73bbac4c41c327df36b853bccf
25748
25940
 
25749
25941
  def _typecheckingstub__8b27a348000a6495796817f9fd3b73934a015750ac2d2e09e165c45b4d2d5772(
25750
25942
  *,
25751
- destination: _ILogGroup_3c4fa718,
25943
+ destination: typing.Optional[_ILogGroup_3c4fa718] = None,
25752
25944
  include_execution_data: typing.Optional[builtins.bool] = None,
25753
25945
  level: typing.Optional[LogLevel] = None,
25754
25946
  ) -> None:
@@ -25777,6 +25969,7 @@ def _typecheckingstub__a537c5472fd8c41c516513cba3bdb57f6bd977d16b4afd0b275934481
25777
25969
 
25778
25970
  def _typecheckingstub__7e64b5e53f029b5753785385b8477bb5c760876cfc7efe1b7fa47a5f792fffcb(
25779
25971
  *,
25972
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
25780
25973
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
25781
25974
  max_concurrency: typing.Optional[jsii.Number] = None,
25782
25975
  ) -> None:
@@ -25839,6 +26032,12 @@ def _typecheckingstub__3615b36aa1e6d0193c5cb37ecfb6f1833c1503331f692609e27754142
25839
26032
  """Type checking stubs"""
25840
26033
  pass
25841
26034
 
26035
+ def _typecheckingstub__690debfadbf5210fcb1a54639e938d5096d2b5eefb9fa6790552d733cf404d6d(
26036
+ query_language: typing.Optional[QueryLanguage] = None,
26037
+ ) -> None:
26038
+ """Type checking stubs"""
26039
+ pass
26040
+
25842
26041
  def _typecheckingstub__60e7633dd729e9dd58a8e472e766fe10b0748d68a61f3d07bfec9cc5b8b4721f(
25843
26042
  *,
25844
26043
  bucket: _IBucket_42e086fd,
@@ -25859,6 +26058,12 @@ def _typecheckingstub__984afa5a2055f0c35fc8c3cf6882093d3a32a8b56c725bd4e3c643f69
25859
26058
  """Type checking stubs"""
25860
26059
  pass
25861
26060
 
26061
+ def _typecheckingstub__c53f9a2ea7d79879b70d5d22b592d43105c7737e7451602d697e1aac041f8ffe(
26062
+ query_language: typing.Optional[QueryLanguage] = None,
26063
+ ) -> None:
26064
+ """Type checking stubs"""
26065
+ pass
26066
+
25862
26067
  def _typecheckingstub__fc17fd96c577f0b5f18e9d0043337043a5db7cf7c35fdc1b09e959cf7f58221c(
25863
26068
  *,
25864
26069
  bucket: typing.Optional[_IBucket_42e086fd] = None,
@@ -25869,6 +26074,24 @@ def _typecheckingstub__fc17fd96c577f0b5f18e9d0043337043a5db7cf7c35fdc1b09e959cf7
25869
26074
  """Type checking stubs"""
25870
26075
  pass
25871
26076
 
26077
+ def _typecheckingstub__f7ba747569314ea29170c03870323ea1ddbbec560569d03719539553067efa54(
26078
+ query_language: typing.Optional[QueryLanguage] = None,
26079
+ ) -> None:
26080
+ """Type checking stubs"""
26081
+ pass
26082
+
26083
+ def _typecheckingstub__19056f84ae53892b20d050acc2be09f4ae779dad92d64cefcd50b3ad874b480f(
26084
+ query_language: typing.Optional[QueryLanguage] = None,
26085
+ ) -> None:
26086
+ """Type checking stubs"""
26087
+ pass
26088
+
26089
+ def _typecheckingstub__3bc2701d4d17a9ebaf074864a8e82d7f7fa507a2201b875a0966d6306ef38032(
26090
+ query_language: typing.Optional[QueryLanguage] = None,
26091
+ ) -> None:
26092
+ """Type checking stubs"""
26093
+ pass
26094
+
25872
26095
  def _typecheckingstub__0839027a57f578b6a339286602923b0024b1f5e10dc2fb3ce8ac185f643a3bbc(
25873
26096
  *,
25874
26097
  bucket: typing.Optional[_IBucket_42e086fd] = None,
@@ -26934,6 +27157,7 @@ def _typecheckingstub__ec64abf9bcf7fc88fbbd0e8dea491d0fe3b15022e0a3a15ff395d55b0
26934
27157
  comment: typing.Optional[builtins.str] = None,
26935
27158
  query_language: typing.Optional[QueryLanguage] = None,
26936
27159
  state_name: typing.Optional[builtins.str] = None,
27160
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
26937
27161
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
26938
27162
  max_concurrency: typing.Optional[jsii.Number] = None,
26939
27163
  input_path: typing.Optional[builtins.str] = None,
@@ -26960,6 +27184,7 @@ def _typecheckingstub__81ff0c38557baaa35eb92b4d57e31ecde27db396059124470432c8292
26960
27184
  comment: typing.Optional[builtins.str] = None,
26961
27185
  query_language: typing.Optional[QueryLanguage] = None,
26962
27186
  state_name: typing.Optional[builtins.str] = None,
27187
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
26963
27188
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
26964
27189
  max_concurrency: typing.Optional[jsii.Number] = None,
26965
27190
  outputs: typing.Any = None,
@@ -27095,7 +27320,6 @@ def _typecheckingstub__0d25d492eb753f17d954200a30dfae328a6f5710335312d1b5ffe0113
27095
27320
  comment: typing.Optional[builtins.str] = None,
27096
27321
  query_language: typing.Optional[QueryLanguage] = None,
27097
27322
  state_name: typing.Optional[builtins.str] = None,
27098
- assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27099
27323
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27100
27324
  max_concurrency: typing.Optional[jsii.Number] = None,
27101
27325
  items_path: typing.Optional[builtins.str] = None,
@@ -27103,6 +27327,7 @@ def _typecheckingstub__0d25d492eb753f17d954200a30dfae328a6f5710335312d1b5ffe0113
27103
27327
  result_path: typing.Optional[builtins.str] = None,
27104
27328
  result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27105
27329
  items: typing.Optional[ProvideItems] = None,
27330
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27106
27331
  input_path: typing.Optional[builtins.str] = None,
27107
27332
  output_path: typing.Optional[builtins.str] = None,
27108
27333
  outputs: typing.Any = None,
@@ -27147,6 +27372,7 @@ def _typecheckingstub__1418bfef4d27a80b418f4fccfa22e0abfc4cf5008b74d8c088c96b991
27147
27372
  comment: typing.Optional[builtins.str] = None,
27148
27373
  query_language: typing.Optional[QueryLanguage] = None,
27149
27374
  state_name: typing.Optional[builtins.str] = None,
27375
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27150
27376
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27151
27377
  max_concurrency: typing.Optional[jsii.Number] = None,
27152
27378
  input_path: typing.Optional[builtins.str] = None,
@@ -27165,6 +27391,7 @@ def _typecheckingstub__a2445c2dd683291fecf01b56e77d0cbe2d0d8486f7f01b558c189426a
27165
27391
  comment: typing.Optional[builtins.str] = None,
27166
27392
  query_language: typing.Optional[QueryLanguage] = None,
27167
27393
  state_name: typing.Optional[builtins.str] = None,
27394
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27168
27395
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27169
27396
  max_concurrency: typing.Optional[jsii.Number] = None,
27170
27397
  outputs: typing.Any = None,
@@ -27505,6 +27732,7 @@ def _typecheckingstub__571881b9fd1e6c545891d3d8e303faaf2af3b7abf8dedfe7af5b088c9
27505
27732
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27506
27733
  max_concurrency: typing.Optional[jsii.Number] = None,
27507
27734
  items: typing.Optional[ProvideItems] = None,
27735
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27508
27736
  outputs: typing.Any = None,
27509
27737
  ) -> None:
27510
27738
  """Type checking stubs"""
@@ -27532,6 +27760,7 @@ def _typecheckingstub__9a2f34bdddff2f64215983e3f128e7644b5b5bf72fc9af9b5b0c0e3b3
27532
27760
  max_concurrency_path: typing.Optional[builtins.str] = None,
27533
27761
  result_path: typing.Optional[builtins.str] = None,
27534
27762
  result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27763
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27535
27764
  input_path: typing.Optional[builtins.str] = None,
27536
27765
  output_path: typing.Optional[builtins.str] = None,
27537
27766
  ) -> None:
@@ -27609,12 +27838,12 @@ def _typecheckingstub__78d28fbd908923a38f00f8f82b2387552ae3a53fe5d860d66d336f49b
27609
27838
  comment: typing.Optional[builtins.str] = None,
27610
27839
  query_language: typing.Optional[QueryLanguage] = None,
27611
27840
  state_name: typing.Optional[builtins.str] = None,
27612
- assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27613
27841
  items_path: typing.Optional[builtins.str] = None,
27614
27842
  max_concurrency_path: typing.Optional[builtins.str] = None,
27615
27843
  result_path: typing.Optional[builtins.str] = None,
27616
27844
  result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27617
27845
  items: typing.Optional[ProvideItems] = None,
27846
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27618
27847
  input_path: typing.Optional[builtins.str] = None,
27619
27848
  output_path: typing.Optional[builtins.str] = None,
27620
27849
  outputs: typing.Any = None,
@@ -27633,6 +27862,7 @@ def _typecheckingstub__117dd132ca8c26f59efc69b8fbd2855fd633da22be9b9bbcfc5209542
27633
27862
  item_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27634
27863
  max_concurrency: typing.Optional[jsii.Number] = None,
27635
27864
  items: typing.Optional[ProvideItems] = None,
27865
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27636
27866
  outputs: typing.Any = None,
27637
27867
  ) -> None:
27638
27868
  """Type checking stubs"""
@@ -27652,6 +27882,7 @@ def _typecheckingstub__27e601e2ac6be39a50ef90276193f9993e276497c1482cf6fe3ebf359
27652
27882
  max_concurrency_path: typing.Optional[builtins.str] = None,
27653
27883
  result_path: typing.Optional[builtins.str] = None,
27654
27884
  result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27885
+ assign: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
27655
27886
  input_path: typing.Optional[builtins.str] = None,
27656
27887
  output_path: typing.Optional[builtins.str] = None,
27657
27888
  ) -> None: