aws-cdk-lib 2.179.0__py3-none-any.whl → 2.181.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.
- aws_cdk/__init__.py +92 -34
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.179.0.jsii.tgz → aws-cdk-lib@2.181.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +48 -1
- aws_cdk/aws_apigateway/__init__.py +6 -6
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_backup/__init__.py +89 -0
- aws_cdk/aws_batch/__init__.py +89 -50
- aws_cdk/aws_bedrock/__init__.py +1265 -62
- aws_cdk/aws_chatbot/__init__.py +80 -53
- aws_cdk/aws_cloudformation/__init__.py +40 -8
- aws_cdk/aws_cloudfront/__init__.py +1046 -155
- aws_cdk/aws_cloudfront_origins/__init__.py +1338 -144
- aws_cdk/aws_cloudtrail/__init__.py +4 -8
- aws_cdk/aws_cloudwatch/__init__.py +1 -1
- aws_cdk/aws_codebuild/__init__.py +2 -2
- aws_cdk/aws_codepipeline/__init__.py +24 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +28 -1
- aws_cdk/aws_codestar/__init__.py +2 -1
- aws_cdk/aws_cognito/__init__.py +100 -13
- aws_cdk/aws_config/__init__.py +3 -3
- aws_cdk/aws_connect/__init__.py +257 -0
- aws_cdk/aws_datasync/__init__.py +279 -50
- aws_cdk/aws_deadline/__init__.py +683 -6
- aws_cdk/aws_directoryservice/__init__.py +9 -4
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_dms/__init__.py +3 -3
- aws_cdk/aws_dynamodb/__init__.py +4 -58
- aws_cdk/aws_ec2/__init__.py +377 -121
- aws_cdk/aws_ecs/__init__.py +37 -46
- aws_cdk/aws_efs/__init__.py +1 -1
- aws_cdk/aws_eks/__init__.py +19 -13
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +13 -27
- aws_cdk/aws_emrcontainers/__init__.py +44 -1
- aws_cdk/aws_events/__init__.py +8 -11
- aws_cdk/aws_fms/__init__.py +5 -5
- aws_cdk/aws_fsx/__init__.py +5 -4
- aws_cdk/aws_glue/__init__.py +161 -0
- aws_cdk/aws_groundstation/__init__.py +23 -1
- aws_cdk/aws_iam/__init__.py +12 -12
- aws_cdk/aws_iot/__init__.py +7 -0
- aws_cdk/aws_ivs/__init__.py +17 -8
- aws_cdk/aws_kinesis/__init__.py +689 -35
- aws_cdk/aws_lambda/__init__.py +10 -15
- aws_cdk/aws_lambda_event_sources/__init__.py +175 -2
- aws_cdk/aws_medialive/__init__.py +314 -4
- aws_cdk/aws_mediapackagev2/__init__.py +228 -0
- aws_cdk/aws_networkfirewall/__init__.py +3 -3
- aws_cdk/aws_opensearchserverless/__init__.py +31 -8
- aws_cdk/aws_organizations/__init__.py +3 -3
- aws_cdk/aws_pcaconnectorscep/__init__.py +1 -1
- aws_cdk/aws_rds/__init__.py +456 -100
- aws_cdk/aws_s3/__init__.py +278 -0
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_ses/__init__.py +228 -8
- aws_cdk/aws_ssm/__init__.py +9 -10
- aws_cdk/aws_stepfunctions/__init__.py +345 -70
- aws_cdk/aws_stepfunctions_tasks/__init__.py +142 -142
- aws_cdk/aws_supportapp/__init__.py +7 -7
- aws_cdk/aws_transfer/__init__.py +829 -4
- aws_cdk/aws_wafv2/__init__.py +17 -9
- aws_cdk/aws_wisdom/__init__.py +149 -4
- aws_cdk/custom_resources/__init__.py +23 -26
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.181.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.181.0.dist-info}/RECORD +70 -70
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.181.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.181.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.181.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.181.0.dist-info}/top_level.txt +0 -0
|
@@ -3006,7 +3006,7 @@ class AthenaGetQueryExecutionJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260)
|
|
|
3006
3006
|
|
|
3007
3007
|
:default: - Not assign variables
|
|
3008
3008
|
|
|
3009
|
-
:see: https://docs.aws.amazon.com/
|
|
3009
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
3010
3010
|
'''
|
|
3011
3011
|
result = self._values.get("assign")
|
|
3012
3012
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -3333,7 +3333,7 @@ class AthenaGetQueryExecutionJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
3333
3333
|
|
|
3334
3334
|
:default: - Not assign variables
|
|
3335
3335
|
|
|
3336
|
-
:see: https://docs.aws.amazon.com/
|
|
3336
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
3337
3337
|
'''
|
|
3338
3338
|
result = self._values.get("assign")
|
|
3339
3339
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -3621,7 +3621,7 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3621
3621
|
|
|
3622
3622
|
:default: - Not assign variables
|
|
3623
3623
|
|
|
3624
|
-
:see: https://docs.aws.amazon.com/
|
|
3624
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
3625
3625
|
'''
|
|
3626
3626
|
result = self._values.get("assign")
|
|
3627
3627
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -4244,7 +4244,7 @@ class AthenaGetQueryResultsJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
4244
4244
|
|
|
4245
4245
|
:default: - Not assign variables
|
|
4246
4246
|
|
|
4247
|
-
:see: https://docs.aws.amazon.com/
|
|
4247
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
4248
4248
|
'''
|
|
4249
4249
|
result = self._values.get("assign")
|
|
4250
4250
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -4603,7 +4603,7 @@ class AthenaGetQueryResultsJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
4603
4603
|
|
|
4604
4604
|
:default: - Not assign variables
|
|
4605
4605
|
|
|
4606
|
-
:see: https://docs.aws.amazon.com/
|
|
4606
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
4607
4607
|
'''
|
|
4608
4608
|
result = self._values.get("assign")
|
|
4609
4609
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -4921,7 +4921,7 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4921
4921
|
|
|
4922
4922
|
:default: - Not assign variables
|
|
4923
4923
|
|
|
4924
|
-
:see: https://docs.aws.amazon.com/
|
|
4924
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
4925
4925
|
'''
|
|
4926
4926
|
result = self._values.get("assign")
|
|
4927
4927
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -5658,7 +5658,7 @@ class AthenaStartQueryExecutionJsonPathProps(_TaskStateJsonPathBaseProps_57dc226
|
|
|
5658
5658
|
|
|
5659
5659
|
:default: - Not assign variables
|
|
5660
5660
|
|
|
5661
|
-
:see: https://docs.aws.amazon.com/
|
|
5661
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
5662
5662
|
'''
|
|
5663
5663
|
result = self._values.get("assign")
|
|
5664
5664
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -6104,7 +6104,7 @@ class AthenaStartQueryExecutionJsonataProps(_TaskStateJsonataBaseProps_0e91775c)
|
|
|
6104
6104
|
|
|
6105
6105
|
:default: - Not assign variables
|
|
6106
6106
|
|
|
6107
|
-
:see: https://docs.aws.amazon.com/
|
|
6107
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
6108
6108
|
'''
|
|
6109
6109
|
result = self._values.get("assign")
|
|
6110
6110
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -6499,7 +6499,7 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6499
6499
|
|
|
6500
6500
|
:default: - Not assign variables
|
|
6501
6501
|
|
|
6502
|
-
:see: https://docs.aws.amazon.com/
|
|
6502
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
6503
6503
|
'''
|
|
6504
6504
|
result = self._values.get("assign")
|
|
6505
6505
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -7140,7 +7140,7 @@ class AthenaStopQueryExecutionJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260
|
|
|
7140
7140
|
|
|
7141
7141
|
:default: - Not assign variables
|
|
7142
7142
|
|
|
7143
|
-
:see: https://docs.aws.amazon.com/
|
|
7143
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
7144
7144
|
'''
|
|
7145
7145
|
result = self._values.get("assign")
|
|
7146
7146
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -7464,7 +7464,7 @@ class AthenaStopQueryExecutionJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
7464
7464
|
|
|
7465
7465
|
:default: - Not assign variables
|
|
7466
7466
|
|
|
7467
|
-
:see: https://docs.aws.amazon.com/
|
|
7467
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
7468
7468
|
'''
|
|
7469
7469
|
result = self._values.get("assign")
|
|
7470
7470
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -7749,7 +7749,7 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
7749
7749
|
|
|
7750
7750
|
:default: - Not assign variables
|
|
7751
7751
|
|
|
7752
|
-
:see: https://docs.aws.amazon.com/
|
|
7752
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
7753
7753
|
'''
|
|
7754
7754
|
result = self._values.get("assign")
|
|
7755
7755
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -8740,7 +8740,7 @@ class BatchSubmitJobJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
8740
8740
|
|
|
8741
8741
|
:default: - Not assign variables
|
|
8742
8742
|
|
|
8743
|
-
:see: https://docs.aws.amazon.com/
|
|
8743
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
8744
8744
|
'''
|
|
8745
8745
|
result = self._values.get("assign")
|
|
8746
8746
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -9223,7 +9223,7 @@ class BatchSubmitJobJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
9223
9223
|
|
|
9224
9224
|
:default: - Not assign variables
|
|
9225
9225
|
|
|
9226
|
-
:see: https://docs.aws.amazon.com/
|
|
9226
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
9227
9227
|
'''
|
|
9228
9228
|
result = self._values.get("assign")
|
|
9229
9229
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -9648,7 +9648,7 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9648
9648
|
|
|
9649
9649
|
:default: - Not assign variables
|
|
9650
9650
|
|
|
9651
|
-
:see: https://docs.aws.amazon.com/
|
|
9651
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
9652
9652
|
'''
|
|
9653
9653
|
result = self._values.get("assign")
|
|
9654
9654
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -10548,7 +10548,7 @@ class BedrockInvokeModelJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
10548
10548
|
|
|
10549
10549
|
:default: - Not assign variables
|
|
10550
10550
|
|
|
10551
|
-
:see: https://docs.aws.amazon.com/
|
|
10551
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
10552
10552
|
'''
|
|
10553
10553
|
result = self._values.get("assign")
|
|
10554
10554
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -11036,7 +11036,7 @@ class BedrockInvokeModelJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
11036
11036
|
|
|
11037
11037
|
:default: - Not assign variables
|
|
11038
11038
|
|
|
11039
|
-
:see: https://docs.aws.amazon.com/
|
|
11039
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
11040
11040
|
'''
|
|
11041
11041
|
result = self._values.get("assign")
|
|
11042
11042
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -11551,7 +11551,7 @@ class BedrockInvokeModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11551
11551
|
|
|
11552
11552
|
:default: - Not assign variables
|
|
11553
11553
|
|
|
11554
|
-
:see: https://docs.aws.amazon.com/
|
|
11554
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
11555
11555
|
'''
|
|
11556
11556
|
result = self._values.get("assign")
|
|
11557
11557
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -12193,7 +12193,7 @@ class CallApiGatewayEndpointBaseProps(
|
|
|
12193
12193
|
|
|
12194
12194
|
:default: - Not assign variables
|
|
12195
12195
|
|
|
12196
|
-
:see: https://docs.aws.amazon.com/
|
|
12196
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
12197
12197
|
'''
|
|
12198
12198
|
result = self._values.get("assign")
|
|
12199
12199
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -12643,7 +12643,7 @@ class CallApiGatewayEndpointJsonPathBaseProps(
|
|
|
12643
12643
|
|
|
12644
12644
|
:default: - Not assign variables
|
|
12645
12645
|
|
|
12646
|
-
:see: https://docs.aws.amazon.com/
|
|
12646
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
12647
12647
|
'''
|
|
12648
12648
|
result = self._values.get("assign")
|
|
12649
12649
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -13053,7 +13053,7 @@ class CallApiGatewayEndpointJsonataBaseProps(
|
|
|
13053
13053
|
|
|
13054
13054
|
:default: - Not assign variables
|
|
13055
13055
|
|
|
13056
|
-
:see: https://docs.aws.amazon.com/
|
|
13056
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
13057
13057
|
'''
|
|
13058
13058
|
result = self._values.get("assign")
|
|
13059
13059
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -13850,7 +13850,7 @@ class CallApiGatewayHttpApiEndpointProps(
|
|
|
13850
13850
|
|
|
13851
13851
|
:default: - Not assign variables
|
|
13852
13852
|
|
|
13853
|
-
:see: https://docs.aws.amazon.com/
|
|
13853
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
13854
13854
|
'''
|
|
13855
13855
|
result = self._values.get("assign")
|
|
13856
13856
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -14776,7 +14776,7 @@ class CallApiGatewayRestApiEndpointProps(
|
|
|
14776
14776
|
|
|
14777
14777
|
:default: - Not assign variables
|
|
14778
14778
|
|
|
14779
|
-
:see: https://docs.aws.amazon.com/
|
|
14779
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
14780
14780
|
'''
|
|
14781
14781
|
result = self._values.get("assign")
|
|
14782
14782
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -15849,7 +15849,7 @@ class CallAwsServiceCrossRegionJsonPathProps(_TaskStateJsonPathBaseProps_57dc226
|
|
|
15849
15849
|
|
|
15850
15850
|
:default: - Not assign variables
|
|
15851
15851
|
|
|
15852
|
-
:see: https://docs.aws.amazon.com/
|
|
15852
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
15853
15853
|
'''
|
|
15854
15854
|
result = self._values.get("assign")
|
|
15855
15855
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -16330,7 +16330,7 @@ class CallAwsServiceCrossRegionJsonataProps(_TaskStateJsonataBaseProps_0e91775c)
|
|
|
16330
16330
|
|
|
16331
16331
|
:default: - Not assign variables
|
|
16332
16332
|
|
|
16333
|
-
:see: https://docs.aws.amazon.com/
|
|
16333
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
16334
16334
|
'''
|
|
16335
16335
|
result = self._values.get("assign")
|
|
16336
16336
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -16768,7 +16768,7 @@ class CallAwsServiceCrossRegionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
16768
16768
|
|
|
16769
16769
|
:default: - Not assign variables
|
|
16770
16770
|
|
|
16771
|
-
:see: https://docs.aws.amazon.com/
|
|
16771
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
16772
16772
|
'''
|
|
16773
16773
|
result = self._values.get("assign")
|
|
16774
16774
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -17270,7 +17270,7 @@ class CallAwsServiceJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
17270
17270
|
|
|
17271
17271
|
:default: - Not assign variables
|
|
17272
17272
|
|
|
17273
|
-
:see: https://docs.aws.amazon.com/
|
|
17273
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
17274
17274
|
'''
|
|
17275
17275
|
result = self._values.get("assign")
|
|
17276
17276
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -17694,7 +17694,7 @@ class CallAwsServiceJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
17694
17694
|
|
|
17695
17695
|
:default: - Not assign variables
|
|
17696
17696
|
|
|
17697
|
-
:see: https://docs.aws.amazon.com/
|
|
17697
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
17698
17698
|
'''
|
|
17699
17699
|
result = self._values.get("assign")
|
|
17700
17700
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -18077,7 +18077,7 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18077
18077
|
|
|
18078
18078
|
:default: - Not assign variables
|
|
18079
18079
|
|
|
18080
|
-
:see: https://docs.aws.amazon.com/
|
|
18080
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
18081
18081
|
'''
|
|
18082
18082
|
result = self._values.get("assign")
|
|
18083
18083
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -19311,7 +19311,7 @@ class CodeBuildStartBuildBatchJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260
|
|
|
19311
19311
|
|
|
19312
19312
|
:default: - Not assign variables
|
|
19313
19313
|
|
|
19314
|
-
:see: https://docs.aws.amazon.com/
|
|
19314
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
19315
19315
|
'''
|
|
19316
19316
|
result = self._values.get("assign")
|
|
19317
19317
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -19663,7 +19663,7 @@ class CodeBuildStartBuildBatchJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
19663
19663
|
|
|
19664
19664
|
:default: - Not assign variables
|
|
19665
19665
|
|
|
19666
|
-
:see: https://docs.aws.amazon.com/
|
|
19666
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
19667
19667
|
'''
|
|
19668
19668
|
result = self._values.get("assign")
|
|
19669
19669
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -19990,7 +19990,7 @@ class CodeBuildStartBuildBatchProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19990
19990
|
|
|
19991
19991
|
:default: - Not assign variables
|
|
19992
19992
|
|
|
19993
|
-
:see: https://docs.aws.amazon.com/
|
|
19993
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
19994
19994
|
'''
|
|
19995
19995
|
result = self._values.get("assign")
|
|
19996
19996
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -20382,7 +20382,7 @@ class CodeBuildStartBuildJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
20382
20382
|
|
|
20383
20383
|
:default: - Not assign variables
|
|
20384
20384
|
|
|
20385
|
-
:see: https://docs.aws.amazon.com/
|
|
20385
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
20386
20386
|
'''
|
|
20387
20387
|
result = self._values.get("assign")
|
|
20388
20388
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -20734,7 +20734,7 @@ class CodeBuildStartBuildJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
20734
20734
|
|
|
20735
20735
|
:default: - Not assign variables
|
|
20736
20736
|
|
|
20737
|
-
:see: https://docs.aws.amazon.com/
|
|
20737
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
20738
20738
|
'''
|
|
20739
20739
|
result = self._values.get("assign")
|
|
20740
20740
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -21059,7 +21059,7 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21059
21059
|
|
|
21060
21060
|
:default: - Not assign variables
|
|
21061
21061
|
|
|
21062
|
-
:see: https://docs.aws.amazon.com/
|
|
21062
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
21063
21063
|
'''
|
|
21064
21064
|
result = self._values.get("assign")
|
|
21065
21065
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -23205,7 +23205,7 @@ class DynamoDeleteItemJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
23205
23205
|
|
|
23206
23206
|
:default: - Not assign variables
|
|
23207
23207
|
|
|
23208
|
-
:see: https://docs.aws.amazon.com/
|
|
23208
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
23209
23209
|
'''
|
|
23210
23210
|
result = self._values.get("assign")
|
|
23211
23211
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -23674,7 +23674,7 @@ class DynamoDeleteItemJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
23674
23674
|
|
|
23675
23675
|
:default: - Not assign variables
|
|
23676
23676
|
|
|
23677
|
-
:see: https://docs.aws.amazon.com/
|
|
23677
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
23678
23678
|
'''
|
|
23679
23679
|
result = self._values.get("assign")
|
|
23680
23680
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -24092,7 +24092,7 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24092
24092
|
|
|
24093
24093
|
:default: - Not assign variables
|
|
24094
24094
|
|
|
24095
|
-
:see: https://docs.aws.amazon.com/
|
|
24095
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
24096
24096
|
'''
|
|
24097
24097
|
result = self._values.get("assign")
|
|
24098
24098
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -24853,7 +24853,7 @@ class DynamoGetItemJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
24853
24853
|
|
|
24854
24854
|
:default: - Not assign variables
|
|
24855
24855
|
|
|
24856
|
-
:see: https://docs.aws.amazon.com/
|
|
24856
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
24857
24857
|
'''
|
|
24858
24858
|
result = self._values.get("assign")
|
|
24859
24859
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -25283,7 +25283,7 @@ class DynamoGetItemJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
25283
25283
|
|
|
25284
25284
|
:default: - Not assign variables
|
|
25285
25285
|
|
|
25286
|
-
:see: https://docs.aws.amazon.com/
|
|
25286
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
25287
25287
|
'''
|
|
25288
25288
|
result = self._values.get("assign")
|
|
25289
25289
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -25664,7 +25664,7 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25664
25664
|
|
|
25665
25665
|
:default: - Not assign variables
|
|
25666
25666
|
|
|
25667
|
-
:see: https://docs.aws.amazon.com/
|
|
25667
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
25668
25668
|
'''
|
|
25669
25669
|
result = self._values.get("assign")
|
|
25670
25670
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -26496,7 +26496,7 @@ class DynamoPutItemJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
26496
26496
|
|
|
26497
26497
|
:default: - Not assign variables
|
|
26498
26498
|
|
|
26499
|
-
:see: https://docs.aws.amazon.com/
|
|
26499
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
26500
26500
|
'''
|
|
26501
26501
|
result = self._values.get("assign")
|
|
26502
26502
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -26962,7 +26962,7 @@ class DynamoPutItemJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
26962
26962
|
|
|
26963
26963
|
:default: - Not assign variables
|
|
26964
26964
|
|
|
26965
|
-
:see: https://docs.aws.amazon.com/
|
|
26965
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
26966
26966
|
'''
|
|
26967
26967
|
result = self._values.get("assign")
|
|
26968
26968
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -27380,7 +27380,7 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27380
27380
|
|
|
27381
27381
|
:default: - Not assign variables
|
|
27382
27382
|
|
|
27383
|
-
:see: https://docs.aws.amazon.com/
|
|
27383
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
27384
27384
|
'''
|
|
27385
27385
|
result = self._values.get("assign")
|
|
27386
27386
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -28210,7 +28210,7 @@ class DynamoUpdateItemJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
28210
28210
|
|
|
28211
28211
|
:default: - Not assign variables
|
|
28212
28212
|
|
|
28213
|
-
:see: https://docs.aws.amazon.com/
|
|
28213
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
28214
28214
|
'''
|
|
28215
28215
|
result = self._values.get("assign")
|
|
28216
28216
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -28697,7 +28697,7 @@ class DynamoUpdateItemJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
28697
28697
|
|
|
28698
28698
|
:default: - Not assign variables
|
|
28699
28699
|
|
|
28700
|
-
:see: https://docs.aws.amazon.com/
|
|
28700
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
28701
28701
|
'''
|
|
28702
28702
|
result = self._values.get("assign")
|
|
28703
28703
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -29138,7 +29138,7 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29138
29138
|
|
|
29139
29139
|
:default: - Not assign variables
|
|
29140
29140
|
|
|
29141
|
-
:see: https://docs.aws.amazon.com/
|
|
29141
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
29142
29142
|
'''
|
|
29143
29143
|
result = self._values.get("assign")
|
|
29144
29144
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -30275,7 +30275,7 @@ class EcsRunTaskJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
30275
30275
|
|
|
30276
30276
|
:default: - Not assign variables
|
|
30277
30277
|
|
|
30278
|
-
:see: https://docs.aws.amazon.com/
|
|
30278
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
30279
30279
|
'''
|
|
30280
30280
|
result = self._values.get("assign")
|
|
30281
30281
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -30820,7 +30820,7 @@ class EcsRunTaskJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
30820
30820
|
|
|
30821
30821
|
:default: - Not assign variables
|
|
30822
30822
|
|
|
30823
|
-
:see: https://docs.aws.amazon.com/
|
|
30823
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
30824
30824
|
'''
|
|
30825
30825
|
result = self._values.get("assign")
|
|
30826
30826
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -31313,7 +31313,7 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
31313
31313
|
|
|
31314
31314
|
:default: - Not assign variables
|
|
31315
31315
|
|
|
31316
|
-
:see: https://docs.aws.amazon.com/
|
|
31316
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
31317
31317
|
'''
|
|
31318
31318
|
result = self._values.get("assign")
|
|
31319
31319
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -32100,7 +32100,7 @@ class EksCallJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
32100
32100
|
|
|
32101
32101
|
:default: - Not assign variables
|
|
32102
32102
|
|
|
32103
|
-
:see: https://docs.aws.amazon.com/
|
|
32103
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
32104
32104
|
'''
|
|
32105
32105
|
result = self._values.get("assign")
|
|
32106
32106
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -32489,7 +32489,7 @@ class EksCallJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
32489
32489
|
|
|
32490
32490
|
:default: - Not assign variables
|
|
32491
32491
|
|
|
32492
|
-
:see: https://docs.aws.amazon.com/
|
|
32492
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
32493
32493
|
'''
|
|
32494
32494
|
result = self._values.get("assign")
|
|
32495
32495
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -32842,7 +32842,7 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
32842
32842
|
|
|
32843
32843
|
:default: - Not assign variables
|
|
32844
32844
|
|
|
32845
|
-
:see: https://docs.aws.amazon.com/
|
|
32845
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
32846
32846
|
'''
|
|
32847
32847
|
result = self._values.get("assign")
|
|
32848
32848
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -33633,7 +33633,7 @@ class EmrAddStepJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
33633
33633
|
|
|
33634
33634
|
:default: - Not assign variables
|
|
33635
33635
|
|
|
33636
|
-
:see: https://docs.aws.amazon.com/
|
|
33636
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
33637
33637
|
'''
|
|
33638
33638
|
result = self._values.get("assign")
|
|
33639
33639
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -34085,7 +34085,7 @@ class EmrAddStepJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
34085
34085
|
|
|
34086
34086
|
:default: - Not assign variables
|
|
34087
34087
|
|
|
34088
|
-
:see: https://docs.aws.amazon.com/
|
|
34088
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
34089
34089
|
'''
|
|
34090
34090
|
result = self._values.get("assign")
|
|
34091
34091
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -34492,7 +34492,7 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
34492
34492
|
|
|
34493
34493
|
:default: - Not assign variables
|
|
34494
34494
|
|
|
34495
|
-
:see: https://docs.aws.amazon.com/
|
|
34495
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
34496
34496
|
'''
|
|
34497
34497
|
result = self._values.get("assign")
|
|
34498
34498
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -35170,7 +35170,7 @@ class EmrCancelStepJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
35170
35170
|
|
|
35171
35171
|
:default: - Not assign variables
|
|
35172
35172
|
|
|
35173
|
-
:see: https://docs.aws.amazon.com/
|
|
35173
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
35174
35174
|
'''
|
|
35175
35175
|
result = self._values.get("assign")
|
|
35176
35176
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -35507,7 +35507,7 @@ class EmrCancelStepJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
35507
35507
|
|
|
35508
35508
|
:default: - Not assign variables
|
|
35509
35509
|
|
|
35510
|
-
:see: https://docs.aws.amazon.com/
|
|
35510
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
35511
35511
|
'''
|
|
35512
35512
|
result = self._values.get("assign")
|
|
35513
35513
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -35805,7 +35805,7 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
35805
35805
|
|
|
35806
35806
|
:default: - Not assign variables
|
|
35807
35807
|
|
|
35808
|
-
:see: https://docs.aws.amazon.com/
|
|
35808
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
35809
35809
|
'''
|
|
35810
35810
|
result = self._values.get("assign")
|
|
35811
35811
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -36454,7 +36454,7 @@ class EmrContainersCreateVirtualClusterJsonPathProps(
|
|
|
36454
36454
|
|
|
36455
36455
|
:default: - Not assign variables
|
|
36456
36456
|
|
|
36457
|
-
:see: https://docs.aws.amazon.com/
|
|
36457
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
36458
36458
|
'''
|
|
36459
36459
|
result = self._values.get("assign")
|
|
36460
36460
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -36831,7 +36831,7 @@ class EmrContainersCreateVirtualClusterJsonataProps(
|
|
|
36831
36831
|
|
|
36832
36832
|
:default: - Not assign variables
|
|
36833
36833
|
|
|
36834
|
-
:see: https://docs.aws.amazon.com/
|
|
36834
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
36835
36835
|
'''
|
|
36836
36836
|
result = self._values.get("assign")
|
|
36837
36837
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -37162,7 +37162,7 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
37162
37162
|
|
|
37163
37163
|
:default: - Not assign variables
|
|
37164
37164
|
|
|
37165
|
-
:see: https://docs.aws.amazon.com/
|
|
37165
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
37166
37166
|
'''
|
|
37167
37167
|
result = self._values.get("assign")
|
|
37168
37168
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -37776,7 +37776,7 @@ class EmrContainersDeleteVirtualClusterJsonPathProps(
|
|
|
37776
37776
|
|
|
37777
37777
|
:default: - Not assign variables
|
|
37778
37778
|
|
|
37779
|
-
:see: https://docs.aws.amazon.com/
|
|
37779
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
37780
37780
|
'''
|
|
37781
37781
|
result = self._values.get("assign")
|
|
37782
37782
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -38103,7 +38103,7 @@ class EmrContainersDeleteVirtualClusterJsonataProps(
|
|
|
38103
38103
|
|
|
38104
38104
|
:default: - Not assign variables
|
|
38105
38105
|
|
|
38106
|
-
:see: https://docs.aws.amazon.com/
|
|
38106
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
38107
38107
|
'''
|
|
38108
38108
|
result = self._values.get("assign")
|
|
38109
38109
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -38388,7 +38388,7 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
38388
38388
|
|
|
38389
38389
|
:default: - Not assign variables
|
|
38390
38390
|
|
|
38391
|
-
:see: https://docs.aws.amazon.com/
|
|
38391
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
38392
38392
|
'''
|
|
38393
38393
|
result = self._values.get("assign")
|
|
38394
38394
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -39158,7 +39158,7 @@ class EmrContainersStartJobRunJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260
|
|
|
39158
39158
|
|
|
39159
39159
|
:default: - Not assign variables
|
|
39160
39160
|
|
|
39161
|
-
:see: https://docs.aws.amazon.com/
|
|
39161
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
39162
39162
|
'''
|
|
39163
39163
|
result = self._values.get("assign")
|
|
39164
39164
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -39643,7 +39643,7 @@ class EmrContainersStartJobRunJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
39643
39643
|
|
|
39644
39644
|
:default: - Not assign variables
|
|
39645
39645
|
|
|
39646
|
-
:see: https://docs.aws.amazon.com/
|
|
39646
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
39647
39647
|
'''
|
|
39648
39648
|
result = self._values.get("assign")
|
|
39649
39649
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -40061,7 +40061,7 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
40061
40061
|
|
|
40062
40062
|
:default: - Not assign variables
|
|
40063
40063
|
|
|
40064
|
-
:see: https://docs.aws.amazon.com/
|
|
40064
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
40065
40065
|
'''
|
|
40066
40066
|
result = self._values.get("assign")
|
|
40067
40067
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -44634,7 +44634,7 @@ class EmrCreateClusterJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
44634
44634
|
|
|
44635
44635
|
:default: - Not assign variables
|
|
44636
44636
|
|
|
44637
|
-
:see: https://docs.aws.amazon.com/
|
|
44637
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
44638
44638
|
'''
|
|
44639
44639
|
result = self._values.get("assign")
|
|
44640
44640
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -45468,7 +45468,7 @@ class EmrCreateClusterJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
45468
45468
|
|
|
45469
45469
|
:default: - Not assign variables
|
|
45470
45470
|
|
|
45471
|
-
:see: https://docs.aws.amazon.com/
|
|
45471
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
45472
45472
|
'''
|
|
45473
45473
|
result = self._values.get("assign")
|
|
45474
45474
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -46089,7 +46089,7 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
46089
46089
|
|
|
46090
46090
|
:default: - Not assign variables
|
|
46091
46091
|
|
|
46092
|
-
:see: https://docs.aws.amazon.com/
|
|
46092
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
46093
46093
|
'''
|
|
46094
46094
|
result = self._values.get("assign")
|
|
46095
46095
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -46913,7 +46913,7 @@ class EmrModifyInstanceFleetByNameJsonPathProps(_TaskStateJsonPathBaseProps_57dc
|
|
|
46913
46913
|
|
|
46914
46914
|
:default: - Not assign variables
|
|
46915
46915
|
|
|
46916
|
-
:see: https://docs.aws.amazon.com/
|
|
46916
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
46917
46917
|
'''
|
|
46918
46918
|
result = self._values.get("assign")
|
|
46919
46919
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -47286,7 +47286,7 @@ class EmrModifyInstanceFleetByNameJsonataProps(_TaskStateJsonataBaseProps_0e9177
|
|
|
47286
47286
|
|
|
47287
47287
|
:default: - Not assign variables
|
|
47288
47288
|
|
|
47289
|
-
:see: https://docs.aws.amazon.com/
|
|
47289
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
47290
47290
|
'''
|
|
47291
47291
|
result = self._values.get("assign")
|
|
47292
47292
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -47620,7 +47620,7 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
47620
47620
|
|
|
47621
47621
|
:default: - Not assign variables
|
|
47622
47622
|
|
|
47623
|
-
:see: https://docs.aws.amazon.com/
|
|
47623
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
47624
47624
|
'''
|
|
47625
47625
|
result = self._values.get("assign")
|
|
47626
47626
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -48579,7 +48579,7 @@ class EmrModifyInstanceGroupByNameJsonPathProps(_TaskStateJsonPathBaseProps_57dc
|
|
|
48579
48579
|
|
|
48580
48580
|
:default: - Not assign variables
|
|
48581
48581
|
|
|
48582
|
-
:see: https://docs.aws.amazon.com/
|
|
48582
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
48583
48583
|
'''
|
|
48584
48584
|
result = self._values.get("assign")
|
|
48585
48585
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -48957,7 +48957,7 @@ class EmrModifyInstanceGroupByNameJsonataProps(_TaskStateJsonataBaseProps_0e9177
|
|
|
48957
48957
|
|
|
48958
48958
|
:default: - Not assign variables
|
|
48959
48959
|
|
|
48960
|
-
:see: https://docs.aws.amazon.com/
|
|
48960
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
48961
48961
|
'''
|
|
48962
48962
|
result = self._values.get("assign")
|
|
48963
48963
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -49279,7 +49279,7 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
49279
49279
|
|
|
49280
49280
|
:default: - Not assign variables
|
|
49281
49281
|
|
|
49282
|
-
:see: https://docs.aws.amazon.com/
|
|
49282
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
49283
49283
|
'''
|
|
49284
49284
|
result = self._values.get("assign")
|
|
49285
49285
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -49901,7 +49901,7 @@ class EmrSetClusterTerminationProtectionJsonPathProps(
|
|
|
49901
49901
|
|
|
49902
49902
|
:default: - Not assign variables
|
|
49903
49903
|
|
|
49904
|
-
:see: https://docs.aws.amazon.com/
|
|
49904
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
49905
49905
|
'''
|
|
49906
49906
|
result = self._values.get("assign")
|
|
49907
49907
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -50240,7 +50240,7 @@ class EmrSetClusterTerminationProtectionJsonataProps(
|
|
|
50240
50240
|
|
|
50241
50241
|
:default: - Not assign variables
|
|
50242
50242
|
|
|
50243
|
-
:see: https://docs.aws.amazon.com/
|
|
50243
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
50244
50244
|
'''
|
|
50245
50245
|
result = self._values.get("assign")
|
|
50246
50246
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -50538,7 +50538,7 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
50538
50538
|
|
|
50539
50539
|
:default: - Not assign variables
|
|
50540
50540
|
|
|
50541
|
-
:see: https://docs.aws.amazon.com/
|
|
50541
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
50542
50542
|
'''
|
|
50543
50543
|
result = self._values.get("assign")
|
|
50544
50544
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -51128,7 +51128,7 @@ class EmrTerminateClusterJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
51128
51128
|
|
|
51129
51129
|
:default: - Not assign variables
|
|
51130
51130
|
|
|
51131
|
-
:see: https://docs.aws.amazon.com/
|
|
51131
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
51132
51132
|
'''
|
|
51133
51133
|
result = self._values.get("assign")
|
|
51134
51134
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -51452,7 +51452,7 @@ class EmrTerminateClusterJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
51452
51452
|
|
|
51453
51453
|
:default: - Not assign variables
|
|
51454
51454
|
|
|
51455
|
-
:see: https://docs.aws.amazon.com/
|
|
51455
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
51456
51456
|
'''
|
|
51457
51457
|
result = self._values.get("assign")
|
|
51458
51458
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -51737,7 +51737,7 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
51737
51737
|
|
|
51738
51738
|
:default: - Not assign variables
|
|
51739
51739
|
|
|
51740
|
-
:see: https://docs.aws.amazon.com/
|
|
51740
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
51741
51741
|
'''
|
|
51742
51742
|
result = self._values.get("assign")
|
|
51743
51743
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -52350,7 +52350,7 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
52350
52350
|
|
|
52351
52351
|
:default: - Not assign variables
|
|
52352
52352
|
|
|
52353
|
-
:see: https://docs.aws.amazon.com/
|
|
52353
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
52354
52354
|
'''
|
|
52355
52355
|
result = self._values.get("assign")
|
|
52356
52356
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -53093,7 +53093,7 @@ class EventBridgePutEventsJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
53093
53093
|
|
|
53094
53094
|
:default: - Not assign variables
|
|
53095
53095
|
|
|
53096
|
-
:see: https://docs.aws.amazon.com/
|
|
53096
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
53097
53097
|
'''
|
|
53098
53098
|
result = self._values.get("assign")
|
|
53099
53099
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -53431,7 +53431,7 @@ class EventBridgePutEventsJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
53431
53431
|
|
|
53432
53432
|
:default: - Not assign variables
|
|
53433
53433
|
|
|
53434
|
-
:see: https://docs.aws.amazon.com/
|
|
53434
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
53435
53435
|
'''
|
|
53436
53436
|
result = self._values.get("assign")
|
|
53437
53437
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -53734,7 +53734,7 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
53734
53734
|
|
|
53735
53735
|
:default: - Not assign variables
|
|
53736
53736
|
|
|
53737
|
-
:see: https://docs.aws.amazon.com/
|
|
53737
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
53738
53738
|
'''
|
|
53739
53739
|
result = self._values.get("assign")
|
|
53740
53740
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -54557,7 +54557,7 @@ class EventBridgeSchedulerCreateScheduleTaskJsonPathProps(
|
|
|
54557
54557
|
|
|
54558
54558
|
:default: - Not assign variables
|
|
54559
54559
|
|
|
54560
|
-
:see: https://docs.aws.amazon.com/
|
|
54560
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
54561
54561
|
'''
|
|
54562
54562
|
result = self._values.get("assign")
|
|
54563
54563
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -55087,7 +55087,7 @@ class EventBridgeSchedulerCreateScheduleTaskJsonataProps(
|
|
|
55087
55087
|
|
|
55088
55088
|
:default: - Not assign variables
|
|
55089
55089
|
|
|
55090
|
-
:see: https://docs.aws.amazon.com/
|
|
55090
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
55091
55091
|
'''
|
|
55092
55092
|
result = self._values.get("assign")
|
|
55093
55093
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -55599,7 +55599,7 @@ class EventBridgeSchedulerCreateScheduleTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
55599
55599
|
|
|
55600
55600
|
:default: - Not assign variables
|
|
55601
55601
|
|
|
55602
|
-
:see: https://docs.aws.amazon.com/
|
|
55602
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
55603
55603
|
'''
|
|
55604
55604
|
result = self._values.get("assign")
|
|
55605
55605
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -56633,7 +56633,7 @@ class GlueDataBrewStartJobRunJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260)
|
|
|
56633
56633
|
|
|
56634
56634
|
:default: - Not assign variables
|
|
56635
56635
|
|
|
56636
|
-
:see: https://docs.aws.amazon.com/
|
|
56636
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
56637
56637
|
'''
|
|
56638
56638
|
result = self._values.get("assign")
|
|
56639
56639
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -56957,7 +56957,7 @@ class GlueDataBrewStartJobRunJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
56957
56957
|
|
|
56958
56958
|
:default: - Not assign variables
|
|
56959
56959
|
|
|
56960
|
-
:see: https://docs.aws.amazon.com/
|
|
56960
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
56961
56961
|
'''
|
|
56962
56962
|
result = self._values.get("assign")
|
|
56963
56963
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -57242,7 +57242,7 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
57242
57242
|
|
|
57243
57243
|
:default: - Not assign variables
|
|
57244
57244
|
|
|
57245
|
-
:see: https://docs.aws.amazon.com/
|
|
57245
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
57246
57246
|
'''
|
|
57247
57247
|
result = self._values.get("assign")
|
|
57248
57248
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -57841,7 +57841,7 @@ class GlueStartCrawlerRunJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
57841
57841
|
|
|
57842
57842
|
:default: - Not assign variables
|
|
57843
57843
|
|
|
57844
|
-
:see: https://docs.aws.amazon.com/
|
|
57844
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
57845
57845
|
'''
|
|
57846
57846
|
result = self._values.get("assign")
|
|
57847
57847
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -58165,7 +58165,7 @@ class GlueStartCrawlerRunJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
58165
58165
|
|
|
58166
58166
|
:default: - Not assign variables
|
|
58167
58167
|
|
|
58168
|
-
:see: https://docs.aws.amazon.com/
|
|
58168
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
58169
58169
|
'''
|
|
58170
58170
|
result = self._values.get("assign")
|
|
58171
58171
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -58461,7 +58461,7 @@ class GlueStartCrawlerRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
58461
58461
|
|
|
58462
58462
|
:default: - Not assign variables
|
|
58463
58463
|
|
|
58464
|
-
:see: https://docs.aws.amazon.com/
|
|
58464
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
58465
58465
|
'''
|
|
58466
58466
|
result = self._values.get("assign")
|
|
58467
58467
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -59152,7 +59152,7 @@ class GlueStartJobRunJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
59152
59152
|
|
|
59153
59153
|
:default: - Not assign variables
|
|
59154
59154
|
|
|
59155
|
-
:see: https://docs.aws.amazon.com/
|
|
59155
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
59156
59156
|
'''
|
|
59157
59157
|
result = self._values.get("assign")
|
|
59158
59158
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -59575,7 +59575,7 @@ class GlueStartJobRunJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
59575
59575
|
|
|
59576
59576
|
:default: - Not assign variables
|
|
59577
59577
|
|
|
59578
|
-
:see: https://docs.aws.amazon.com/
|
|
59578
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
59579
59579
|
'''
|
|
59580
59580
|
result = self._values.get("assign")
|
|
59581
59581
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -59950,7 +59950,7 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
59950
59950
|
|
|
59951
59951
|
:default: - Not assign variables
|
|
59952
59952
|
|
|
59953
|
-
:see: https://docs.aws.amazon.com/
|
|
59953
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
59954
59954
|
'''
|
|
59955
59955
|
result = self._values.get("assign")
|
|
59956
59956
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -60809,7 +60809,7 @@ class HttpInvokeJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
60809
60809
|
|
|
60810
60810
|
:default: - Not assign variables
|
|
60811
60811
|
|
|
60812
|
-
:see: https://docs.aws.amazon.com/
|
|
60812
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
60813
60813
|
'''
|
|
60814
60814
|
result = self._values.get("assign")
|
|
60815
60815
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -61260,7 +61260,7 @@ class HttpInvokeJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
61260
61260
|
|
|
61261
61261
|
:default: - Not assign variables
|
|
61262
61262
|
|
|
61263
|
-
:see: https://docs.aws.amazon.com/
|
|
61263
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
61264
61264
|
'''
|
|
61265
61265
|
result = self._values.get("assign")
|
|
61266
61266
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -61678,7 +61678,7 @@ class HttpInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
61678
61678
|
|
|
61679
61679
|
:default: - Not assign variables
|
|
61680
61680
|
|
|
61681
|
-
:see: https://docs.aws.amazon.com/
|
|
61681
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
61682
61682
|
'''
|
|
61683
61683
|
result = self._values.get("assign")
|
|
61684
61684
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -62852,7 +62852,7 @@ class LambdaInvokeJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
62852
62852
|
|
|
62853
62853
|
:default: - Not assign variables
|
|
62854
62854
|
|
|
62855
|
-
:see: https://docs.aws.amazon.com/
|
|
62855
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
62856
62856
|
'''
|
|
62857
62857
|
result = self._values.get("assign")
|
|
62858
62858
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -63274,7 +63274,7 @@ class LambdaInvokeJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
63274
63274
|
|
|
63275
63275
|
:default: - Not assign variables
|
|
63276
63276
|
|
|
63277
|
-
:see: https://docs.aws.amazon.com/
|
|
63277
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
63278
63278
|
'''
|
|
63279
63279
|
result = self._values.get("assign")
|
|
63280
63280
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -63677,7 +63677,7 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
63677
63677
|
|
|
63678
63678
|
:default: - Not assign variables
|
|
63679
63679
|
|
|
63680
|
-
:see: https://docs.aws.amazon.com/
|
|
63680
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
63681
63681
|
'''
|
|
63682
63682
|
result = self._values.get("assign")
|
|
63683
63683
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -64468,7 +64468,7 @@ class MediaConvertCreateJobJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
64468
64468
|
|
|
64469
64469
|
:default: - Not assign variables
|
|
64470
64470
|
|
|
64471
|
-
:see: https://docs.aws.amazon.com/
|
|
64471
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
64472
64472
|
'''
|
|
64473
64473
|
result = self._values.get("assign")
|
|
64474
64474
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -64795,7 +64795,7 @@ class MediaConvertCreateJobJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
64795
64795
|
|
|
64796
64796
|
:default: - Not assign variables
|
|
64797
64797
|
|
|
64798
|
-
:see: https://docs.aws.amazon.com/
|
|
64798
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
64799
64799
|
'''
|
|
64800
64800
|
result = self._values.get("assign")
|
|
64801
64801
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -65133,7 +65133,7 @@ class MediaConvertCreateJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
65133
65133
|
|
|
65134
65134
|
:default: - Not assign variables
|
|
65135
65135
|
|
|
65136
|
-
:see: https://docs.aws.amazon.com/
|
|
65136
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
65137
65137
|
'''
|
|
65138
65138
|
result = self._values.get("assign")
|
|
65139
65139
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -67628,7 +67628,7 @@ class SageMakerCreateEndpointConfigJsonPathProps(_TaskStateJsonPathBaseProps_57d
|
|
|
67628
67628
|
|
|
67629
67629
|
:default: - Not assign variables
|
|
67630
67630
|
|
|
67631
|
-
:see: https://docs.aws.amazon.com/
|
|
67631
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
67632
67632
|
'''
|
|
67633
67633
|
result = self._values.get("assign")
|
|
67634
67634
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -68017,7 +68017,7 @@ class SageMakerCreateEndpointConfigJsonataProps(_TaskStateJsonataBaseProps_0e917
|
|
|
68017
68017
|
|
|
68018
68018
|
:default: - Not assign variables
|
|
68019
68019
|
|
|
68020
|
-
:see: https://docs.aws.amazon.com/
|
|
68020
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
68021
68021
|
'''
|
|
68022
68022
|
result = self._values.get("assign")
|
|
68023
68023
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -68355,7 +68355,7 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
68355
68355
|
|
|
68356
68356
|
:default: - Not assign variables
|
|
68357
68357
|
|
|
68358
|
-
:see: https://docs.aws.amazon.com/
|
|
68358
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
68359
68359
|
'''
|
|
68360
68360
|
result = self._values.get("assign")
|
|
68361
68361
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -68763,7 +68763,7 @@ class SageMakerCreateEndpointJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260)
|
|
|
68763
68763
|
|
|
68764
68764
|
:default: - Not assign variables
|
|
68765
68765
|
|
|
68766
|
-
:see: https://docs.aws.amazon.com/
|
|
68766
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
68767
68767
|
'''
|
|
68768
68768
|
result = self._values.get("assign")
|
|
68769
68769
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -69121,7 +69121,7 @@ class SageMakerCreateEndpointJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
69121
69121
|
|
|
69122
69122
|
:default: - Not assign variables
|
|
69123
69123
|
|
|
69124
|
-
:see: https://docs.aws.amazon.com/
|
|
69124
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
69125
69125
|
'''
|
|
69126
69126
|
result = self._values.get("assign")
|
|
69127
69127
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -69438,7 +69438,7 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
69438
69438
|
|
|
69439
69439
|
:default: - Not assign variables
|
|
69440
69440
|
|
|
69441
|
-
:see: https://docs.aws.amazon.com/
|
|
69441
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
69442
69442
|
'''
|
|
69443
69443
|
result = self._values.get("assign")
|
|
69444
69444
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -70209,7 +70209,7 @@ class SageMakerCreateModelJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
70209
70209
|
|
|
70210
70210
|
:default: - Not assign variables
|
|
70211
70211
|
|
|
70212
|
-
:see: https://docs.aws.amazon.com/
|
|
70212
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
70213
70213
|
'''
|
|
70214
70214
|
result = self._values.get("assign")
|
|
70215
70215
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -70662,7 +70662,7 @@ class SageMakerCreateModelJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
70662
70662
|
|
|
70663
70663
|
:default: - Not assign variables
|
|
70664
70664
|
|
|
70665
|
-
:see: https://docs.aws.amazon.com/
|
|
70665
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
70666
70666
|
'''
|
|
70667
70667
|
result = self._values.get("assign")
|
|
70668
70668
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -71059,7 +71059,7 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
71059
71059
|
|
|
71060
71060
|
:default: - Not assign variables
|
|
71061
71061
|
|
|
71062
|
-
:see: https://docs.aws.amazon.com/
|
|
71062
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
71063
71063
|
'''
|
|
71064
71064
|
result = self._values.get("assign")
|
|
71065
71065
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -72020,7 +72020,7 @@ class SageMakerCreateTrainingJobJsonPathProps(_TaskStateJsonPathBaseProps_57dc22
|
|
|
72020
72020
|
|
|
72021
72021
|
:default: - Not assign variables
|
|
72022
72022
|
|
|
72023
|
-
:see: https://docs.aws.amazon.com/
|
|
72023
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
72024
72024
|
'''
|
|
72025
72025
|
result = self._values.get("assign")
|
|
72026
72026
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -72614,7 +72614,7 @@ class SageMakerCreateTrainingJobJsonataProps(_TaskStateJsonataBaseProps_0e91775c
|
|
|
72614
72614
|
|
|
72615
72615
|
:default: - Not assign variables
|
|
72616
72616
|
|
|
72617
|
-
:see: https://docs.aws.amazon.com/
|
|
72617
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
72618
72618
|
'''
|
|
72619
72619
|
result = self._values.get("assign")
|
|
72620
72620
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -73108,7 +73108,7 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
73108
73108
|
|
|
73109
73109
|
:default: - Not assign variables
|
|
73110
73110
|
|
|
73111
|
-
:see: https://docs.aws.amazon.com/
|
|
73111
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
73112
73112
|
'''
|
|
73113
73113
|
result = self._values.get("assign")
|
|
73114
73114
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -74053,7 +74053,7 @@ class SageMakerCreateTransformJobJsonPathProps(_TaskStateJsonPathBaseProps_57dc2
|
|
|
74053
74053
|
|
|
74054
74054
|
:default: - Not assign variables
|
|
74055
74055
|
|
|
74056
|
-
:see: https://docs.aws.amazon.com/
|
|
74056
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
74057
74057
|
'''
|
|
74058
74058
|
result = self._values.get("assign")
|
|
74059
74059
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -74598,7 +74598,7 @@ class SageMakerCreateTransformJobJsonataProps(_TaskStateJsonataBaseProps_0e91775
|
|
|
74598
74598
|
|
|
74599
74599
|
:default: - Not assign variables
|
|
74600
74600
|
|
|
74601
|
-
:see: https://docs.aws.amazon.com/
|
|
74601
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
74602
74602
|
'''
|
|
74603
74603
|
result = self._values.get("assign")
|
|
74604
74604
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -75072,7 +75072,7 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
75072
75072
|
|
|
75073
75073
|
:default: - Not assign variables
|
|
75074
75074
|
|
|
75075
|
-
:see: https://docs.aws.amazon.com/
|
|
75075
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
75076
75076
|
'''
|
|
75077
75077
|
result = self._values.get("assign")
|
|
75078
75078
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -75775,7 +75775,7 @@ class SageMakerUpdateEndpointJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260)
|
|
|
75775
75775
|
|
|
75776
75776
|
:default: - Not assign variables
|
|
75777
75777
|
|
|
75778
|
-
:see: https://docs.aws.amazon.com/
|
|
75778
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
75779
75779
|
'''
|
|
75780
75780
|
result = self._values.get("assign")
|
|
75781
75781
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -76113,7 +76113,7 @@ class SageMakerUpdateEndpointJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
76113
76113
|
|
|
76114
76114
|
:default: - Not assign variables
|
|
76115
76115
|
|
|
76116
|
-
:see: https://docs.aws.amazon.com/
|
|
76116
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
76117
76117
|
'''
|
|
76118
76118
|
result = self._values.get("assign")
|
|
76119
76119
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -76412,7 +76412,7 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
76412
76412
|
|
|
76413
76413
|
:default: - Not assign variables
|
|
76414
76414
|
|
|
76415
|
-
:see: https://docs.aws.amazon.com/
|
|
76415
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
76416
76416
|
'''
|
|
76417
76417
|
result = self._values.get("assign")
|
|
76418
76418
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -77298,7 +77298,7 @@ class SnsPublishJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
77298
77298
|
|
|
77299
77299
|
:default: - Not assign variables
|
|
77300
77300
|
|
|
77301
|
-
:see: https://docs.aws.amazon.com/
|
|
77301
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
77302
77302
|
'''
|
|
77303
77303
|
result = self._values.get("assign")
|
|
77304
77304
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -77763,7 +77763,7 @@ class SnsPublishJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
77763
77763
|
|
|
77764
77764
|
:default: - Not assign variables
|
|
77765
77765
|
|
|
77766
|
-
:see: https://docs.aws.amazon.com/
|
|
77766
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
77767
77767
|
'''
|
|
77768
77768
|
result = self._values.get("assign")
|
|
77769
77769
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -78194,7 +78194,7 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
78194
78194
|
|
|
78195
78195
|
:default: - Not assign variables
|
|
78196
78196
|
|
|
78197
|
-
:see: https://docs.aws.amazon.com/
|
|
78197
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
78198
78198
|
'''
|
|
78199
78199
|
result = self._values.get("assign")
|
|
78200
78200
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -79064,7 +79064,7 @@ class SqsSendMessageJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
79064
79064
|
|
|
79065
79065
|
:default: - Not assign variables
|
|
79066
79066
|
|
|
79067
|
-
:see: https://docs.aws.amazon.com/
|
|
79067
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
79068
79068
|
'''
|
|
79069
79069
|
result = self._values.get("assign")
|
|
79070
79070
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -79464,7 +79464,7 @@ class SqsSendMessageJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
79464
79464
|
|
|
79465
79465
|
:default: - Not assign variables
|
|
79466
79466
|
|
|
79467
|
-
:see: https://docs.aws.amazon.com/
|
|
79467
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
79468
79468
|
'''
|
|
79469
79469
|
result = self._values.get("assign")
|
|
79470
79470
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -79832,7 +79832,7 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
79832
79832
|
|
|
79833
79833
|
:default: - Not assign variables
|
|
79834
79834
|
|
|
79835
|
-
:see: https://docs.aws.amazon.com/
|
|
79835
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
79836
79836
|
'''
|
|
79837
79837
|
result = self._values.get("assign")
|
|
79838
79838
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -80492,7 +80492,7 @@ class StepFunctionsInvokeActivityJsonPathProps(_TaskStateJsonPathBaseProps_57dc2
|
|
|
80492
80492
|
|
|
80493
80493
|
:default: - Not assign variables
|
|
80494
80494
|
|
|
80495
|
-
:see: https://docs.aws.amazon.com/
|
|
80495
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
80496
80496
|
'''
|
|
80497
80497
|
result = self._values.get("assign")
|
|
80498
80498
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -80841,7 +80841,7 @@ class StepFunctionsInvokeActivityJsonataProps(
|
|
|
80841
80841
|
|
|
80842
80842
|
:default: - Not assign variables
|
|
80843
80843
|
|
|
80844
|
-
:see: https://docs.aws.amazon.com/
|
|
80844
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
80845
80845
|
'''
|
|
80846
80846
|
result = self._values.get("assign")
|
|
80847
80847
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -81154,7 +81154,7 @@ class StepFunctionsInvokeActivityProps(
|
|
|
81154
81154
|
|
|
81155
81155
|
:default: - Not assign variables
|
|
81156
81156
|
|
|
81157
|
-
:see: https://docs.aws.amazon.com/
|
|
81157
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
81158
81158
|
'''
|
|
81159
81159
|
result = self._values.get("assign")
|
|
81160
81160
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -81832,7 +81832,7 @@ class StepFunctionsStartExecutionJsonPathProps(_TaskStateJsonPathBaseProps_57dc2
|
|
|
81832
81832
|
|
|
81833
81833
|
:default: - Not assign variables
|
|
81834
81834
|
|
|
81835
|
-
:see: https://docs.aws.amazon.com/
|
|
81835
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
81836
81836
|
'''
|
|
81837
81837
|
result = self._values.get("assign")
|
|
81838
81838
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -82216,7 +82216,7 @@ class StepFunctionsStartExecutionJsonataProps(_TaskStateJsonataBaseProps_0e91775
|
|
|
82216
82216
|
|
|
82217
82217
|
:default: - Not assign variables
|
|
82218
82218
|
|
|
82219
|
-
:see: https://docs.aws.amazon.com/
|
|
82219
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
82220
82220
|
'''
|
|
82221
82221
|
result = self._values.get("assign")
|
|
82222
82222
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -82573,7 +82573,7 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
82573
82573
|
|
|
82574
82574
|
:default: - Not assign variables
|
|
82575
82575
|
|
|
82576
|
-
:see: https://docs.aws.amazon.com/
|
|
82576
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
82577
82577
|
'''
|
|
82578
82578
|
result = self._values.get("assign")
|
|
82579
82579
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -84110,7 +84110,7 @@ class CallApiGatewayHttpApiEndpointJsonPathProps(
|
|
|
84110
84110
|
|
|
84111
84111
|
:default: - Not assign variables
|
|
84112
84112
|
|
|
84113
|
-
:see: https://docs.aws.amazon.com/
|
|
84113
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
84114
84114
|
'''
|
|
84115
84115
|
result = self._values.get("assign")
|
|
84116
84116
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -84563,7 +84563,7 @@ class CallApiGatewayHttpApiEndpointJsonataProps(
|
|
|
84563
84563
|
|
|
84564
84564
|
:default: - Not assign variables
|
|
84565
84565
|
|
|
84566
|
-
:see: https://docs.aws.amazon.com/
|
|
84566
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
84567
84567
|
'''
|
|
84568
84568
|
result = self._values.get("assign")
|
|
84569
84569
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -84971,7 +84971,7 @@ class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
|
84971
84971
|
|
|
84972
84972
|
:default: - Not assign variables
|
|
84973
84973
|
|
|
84974
|
-
:see: https://docs.aws.amazon.com/
|
|
84974
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
84975
84975
|
'''
|
|
84976
84976
|
result = self._values.get("assign")
|
|
84977
84977
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -85396,7 +85396,7 @@ class CallApiGatewayRestApiEndpointJsonataProps(
|
|
|
85396
85396
|
|
|
85397
85397
|
:default: - Not assign variables
|
|
85398
85398
|
|
|
85399
|
-
:see: https://docs.aws.amazon.com/
|
|
85399
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
85400
85400
|
'''
|
|
85401
85401
|
result = self._values.get("assign")
|
|
85402
85402
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|