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.
- aws_cdk/__init__.py +83 -41
- aws_cdk/_jsii/__init__.py +1 -2
- aws_cdk/_jsii/{aws-cdk-lib@2.178.2.jsii.tgz → aws-cdk-lib@2.180.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +47 -0
- aws_cdk/aws_apigateway/__init__.py +176 -35
- aws_cdk/aws_apigatewayv2/__init__.py +151 -32
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +348 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +8 -8
- aws_cdk/aws_appsync/__init__.py +10 -7
- aws_cdk/aws_backup/__init__.py +89 -0
- aws_cdk/aws_batch/__init__.py +89 -50
- aws_cdk/aws_bedrock/__init__.py +506 -62
- aws_cdk/aws_cloudfront/__init__.py +1037 -146
- 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 +218 -2
- aws_cdk/aws_codepipeline/__init__.py +113 -28
- aws_cdk/aws_codepipeline_actions/__init__.py +554 -63
- aws_cdk/aws_codestar/__init__.py +2 -1
- aws_cdk/aws_cognito/__init__.py +676 -29
- 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 +0 -54
- aws_cdk/aws_ec2/__init__.py +402 -130
- aws_cdk/aws_ecs/__init__.py +28 -43
- aws_cdk/aws_efs/__init__.py +1 -1
- aws_cdk/aws_eks/__init__.py +560 -182
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -27
- aws_cdk/aws_emrcontainers/__init__.py +44 -1
- aws_cdk/aws_events/__init__.py +17 -26
- aws_cdk/aws_events_targets/__init__.py +303 -16
- 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 +15 -15
- aws_cdk/aws_iot/__init__.py +7 -0
- aws_cdk/aws_ivs/__init__.py +254 -77
- 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_logs/__init__.py +62 -13
- aws_cdk/aws_medialive/__init__.py +314 -4
- aws_cdk/aws_opensearchserverless/__init__.py +19 -0
- aws_cdk/aws_pinpoint/__init__.py +14 -9
- aws_cdk/aws_rds/__init__.py +246 -82
- aws_cdk/aws_s3/__init__.py +287 -9
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_ses/__init__.py +228 -8
- aws_cdk/aws_ssm/__init__.py +4 -5
- aws_cdk/aws_stepfunctions/__init__.py +301 -70
- aws_cdk/aws_stepfunctions_tasks/__init__.py +269 -163
- aws_cdk/aws_supportapp/__init__.py +7 -7
- aws_cdk/aws_transfer/__init__.py +820 -2
- aws_cdk/aws_wafv2/__init__.py +17 -9
- aws_cdk/custom_resources/__init__.py +23 -26
- aws_cdk/cx_api/__init__.py +16 -0
- aws_cdk/pipelines/__init__.py +2 -2
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/METADATA +1 -2
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/RECORD +69 -70
- aws_cdk/lambda_layer_kubectl/__init__.py +0 -107
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/top_level.txt +0 -0
|
@@ -175,6 +175,23 @@ invoke_task = tasks.CallApiGatewayRestApiEndpoint(self, "Call REST API",
|
|
|
175
175
|
)
|
|
176
176
|
```
|
|
177
177
|
|
|
178
|
+
By default, the API endpoint URI will be constructed using the AWS region of
|
|
179
|
+
the stack in which the provided `api` is created.
|
|
180
|
+
|
|
181
|
+
To construct the endpoint with a different region, use the `region` parameter:
|
|
182
|
+
|
|
183
|
+
```python
|
|
184
|
+
import aws_cdk.aws_apigateway as apigateway
|
|
185
|
+
|
|
186
|
+
rest_api = apigateway.RestApi(self, "MyRestApi")
|
|
187
|
+
invoke_task = tasks.CallApiGatewayRestApiEndpoint(self, "Call REST API",
|
|
188
|
+
api=rest_api,
|
|
189
|
+
stage_name="prod",
|
|
190
|
+
method=tasks.HttpMethod.GET,
|
|
191
|
+
region="us-west-2"
|
|
192
|
+
)
|
|
193
|
+
```
|
|
194
|
+
|
|
178
195
|
Be aware that the header values must be arrays. When passing the Task Token
|
|
179
196
|
in the headers field `WAIT_FOR_TASK_TOKEN` integration, use
|
|
180
197
|
`JsonPath.array()` to wrap the token in an array:
|
|
@@ -289,6 +306,8 @@ get_object = tasks.CallAwsServiceCrossRegion(self, "GetObject",
|
|
|
289
306
|
|
|
290
307
|
Other properties such as `additionalIamStatements` can be used in the same way as the `CallAwsService` task.
|
|
291
308
|
|
|
309
|
+
Note that when you use `integrationPattern.WAIT_FOR_TASK_TOKEN`, the output path changes under `Payload` property.
|
|
310
|
+
|
|
292
311
|
## Athena
|
|
293
312
|
|
|
294
313
|
Step Functions supports [Athena](https://docs.aws.amazon.com/step-functions/latest/dg/connect-athena.html) through the service integration pattern.
|
|
@@ -1244,11 +1263,13 @@ The following code snippet includes a Task state that uses eks:call to list the
|
|
|
1244
1263
|
|
|
1245
1264
|
```python
|
|
1246
1265
|
import aws_cdk.aws_eks as eks
|
|
1266
|
+
from aws_cdk.lambda_layer_kubectl_v32 import KubectlV32Layer
|
|
1247
1267
|
|
|
1248
1268
|
|
|
1249
1269
|
my_eks_cluster = eks.Cluster(self, "my sample cluster",
|
|
1250
|
-
version=eks.KubernetesVersion.
|
|
1251
|
-
cluster_name="myEksCluster"
|
|
1270
|
+
version=eks.KubernetesVersion.V1_32,
|
|
1271
|
+
cluster_name="myEksCluster",
|
|
1272
|
+
kubectl_layer=KubectlV32Layer(self, "kubectl")
|
|
1252
1273
|
)
|
|
1253
1274
|
|
|
1254
1275
|
tasks.EksCall(self, "Call a EKS Endpoint",
|
|
@@ -2985,7 +3006,7 @@ class AthenaGetQueryExecutionJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260)
|
|
|
2985
3006
|
|
|
2986
3007
|
:default: - Not assign variables
|
|
2987
3008
|
|
|
2988
|
-
:see: https://docs.aws.amazon.com/
|
|
3009
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
2989
3010
|
'''
|
|
2990
3011
|
result = self._values.get("assign")
|
|
2991
3012
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -3312,7 +3333,7 @@ class AthenaGetQueryExecutionJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
3312
3333
|
|
|
3313
3334
|
:default: - Not assign variables
|
|
3314
3335
|
|
|
3315
|
-
:see: https://docs.aws.amazon.com/
|
|
3336
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
3316
3337
|
'''
|
|
3317
3338
|
result = self._values.get("assign")
|
|
3318
3339
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -3600,7 +3621,7 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3600
3621
|
|
|
3601
3622
|
:default: - Not assign variables
|
|
3602
3623
|
|
|
3603
|
-
:see: https://docs.aws.amazon.com/
|
|
3624
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
3604
3625
|
'''
|
|
3605
3626
|
result = self._values.get("assign")
|
|
3606
3627
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -4223,7 +4244,7 @@ class AthenaGetQueryResultsJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
4223
4244
|
|
|
4224
4245
|
:default: - Not assign variables
|
|
4225
4246
|
|
|
4226
|
-
:see: https://docs.aws.amazon.com/
|
|
4247
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
4227
4248
|
'''
|
|
4228
4249
|
result = self._values.get("assign")
|
|
4229
4250
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -4582,7 +4603,7 @@ class AthenaGetQueryResultsJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
4582
4603
|
|
|
4583
4604
|
:default: - Not assign variables
|
|
4584
4605
|
|
|
4585
|
-
:see: https://docs.aws.amazon.com/
|
|
4606
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
4586
4607
|
'''
|
|
4587
4608
|
result = self._values.get("assign")
|
|
4588
4609
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -4900,7 +4921,7 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4900
4921
|
|
|
4901
4922
|
:default: - Not assign variables
|
|
4902
4923
|
|
|
4903
|
-
:see: https://docs.aws.amazon.com/
|
|
4924
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
4904
4925
|
'''
|
|
4905
4926
|
result = self._values.get("assign")
|
|
4906
4927
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -5637,7 +5658,7 @@ class AthenaStartQueryExecutionJsonPathProps(_TaskStateJsonPathBaseProps_57dc226
|
|
|
5637
5658
|
|
|
5638
5659
|
:default: - Not assign variables
|
|
5639
5660
|
|
|
5640
|
-
:see: https://docs.aws.amazon.com/
|
|
5661
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
5641
5662
|
'''
|
|
5642
5663
|
result = self._values.get("assign")
|
|
5643
5664
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -6083,7 +6104,7 @@ class AthenaStartQueryExecutionJsonataProps(_TaskStateJsonataBaseProps_0e91775c)
|
|
|
6083
6104
|
|
|
6084
6105
|
:default: - Not assign variables
|
|
6085
6106
|
|
|
6086
|
-
:see: https://docs.aws.amazon.com/
|
|
6107
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
6087
6108
|
'''
|
|
6088
6109
|
result = self._values.get("assign")
|
|
6089
6110
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -6478,7 +6499,7 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6478
6499
|
|
|
6479
6500
|
:default: - Not assign variables
|
|
6480
6501
|
|
|
6481
|
-
:see: https://docs.aws.amazon.com/
|
|
6502
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
6482
6503
|
'''
|
|
6483
6504
|
result = self._values.get("assign")
|
|
6484
6505
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -7119,7 +7140,7 @@ class AthenaStopQueryExecutionJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260
|
|
|
7119
7140
|
|
|
7120
7141
|
:default: - Not assign variables
|
|
7121
7142
|
|
|
7122
|
-
:see: https://docs.aws.amazon.com/
|
|
7143
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
7123
7144
|
'''
|
|
7124
7145
|
result = self._values.get("assign")
|
|
7125
7146
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -7443,7 +7464,7 @@ class AthenaStopQueryExecutionJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
7443
7464
|
|
|
7444
7465
|
:default: - Not assign variables
|
|
7445
7466
|
|
|
7446
|
-
:see: https://docs.aws.amazon.com/
|
|
7467
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
7447
7468
|
'''
|
|
7448
7469
|
result = self._values.get("assign")
|
|
7449
7470
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -7728,7 +7749,7 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
7728
7749
|
|
|
7729
7750
|
:default: - Not assign variables
|
|
7730
7751
|
|
|
7731
|
-
:see: https://docs.aws.amazon.com/
|
|
7752
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
7732
7753
|
'''
|
|
7733
7754
|
result = self._values.get("assign")
|
|
7734
7755
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -8719,7 +8740,7 @@ class BatchSubmitJobJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
8719
8740
|
|
|
8720
8741
|
:default: - Not assign variables
|
|
8721
8742
|
|
|
8722
|
-
:see: https://docs.aws.amazon.com/
|
|
8743
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
8723
8744
|
'''
|
|
8724
8745
|
result = self._values.get("assign")
|
|
8725
8746
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -9202,7 +9223,7 @@ class BatchSubmitJobJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
9202
9223
|
|
|
9203
9224
|
:default: - Not assign variables
|
|
9204
9225
|
|
|
9205
|
-
:see: https://docs.aws.amazon.com/
|
|
9226
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
9206
9227
|
'''
|
|
9207
9228
|
result = self._values.get("assign")
|
|
9208
9229
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -9627,7 +9648,7 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9627
9648
|
|
|
9628
9649
|
:default: - Not assign variables
|
|
9629
9650
|
|
|
9630
|
-
:see: https://docs.aws.amazon.com/
|
|
9651
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
9631
9652
|
'''
|
|
9632
9653
|
result = self._values.get("assign")
|
|
9633
9654
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -10527,7 +10548,7 @@ class BedrockInvokeModelJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
10527
10548
|
|
|
10528
10549
|
:default: - Not assign variables
|
|
10529
10550
|
|
|
10530
|
-
:see: https://docs.aws.amazon.com/
|
|
10551
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
10531
10552
|
'''
|
|
10532
10553
|
result = self._values.get("assign")
|
|
10533
10554
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -11015,7 +11036,7 @@ class BedrockInvokeModelJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
11015
11036
|
|
|
11016
11037
|
:default: - Not assign variables
|
|
11017
11038
|
|
|
11018
|
-
:see: https://docs.aws.amazon.com/
|
|
11039
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
11019
11040
|
'''
|
|
11020
11041
|
result = self._values.get("assign")
|
|
11021
11042
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -11530,7 +11551,7 @@ class BedrockInvokeModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11530
11551
|
|
|
11531
11552
|
:default: - Not assign variables
|
|
11532
11553
|
|
|
11533
|
-
:see: https://docs.aws.amazon.com/
|
|
11554
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
11534
11555
|
'''
|
|
11535
11556
|
result = self._values.get("assign")
|
|
11536
11557
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -12172,7 +12193,7 @@ class CallApiGatewayEndpointBaseProps(
|
|
|
12172
12193
|
|
|
12173
12194
|
:default: - Not assign variables
|
|
12174
12195
|
|
|
12175
|
-
:see: https://docs.aws.amazon.com/
|
|
12196
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
12176
12197
|
'''
|
|
12177
12198
|
result = self._values.get("assign")
|
|
12178
12199
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -12622,7 +12643,7 @@ class CallApiGatewayEndpointJsonPathBaseProps(
|
|
|
12622
12643
|
|
|
12623
12644
|
:default: - Not assign variables
|
|
12624
12645
|
|
|
12625
|
-
:see: https://docs.aws.amazon.com/
|
|
12646
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
12626
12647
|
'''
|
|
12627
12648
|
result = self._values.get("assign")
|
|
12628
12649
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -13032,7 +13053,7 @@ class CallApiGatewayEndpointJsonataBaseProps(
|
|
|
13032
13053
|
|
|
13033
13054
|
:default: - Not assign variables
|
|
13034
13055
|
|
|
13035
|
-
:see: https://docs.aws.amazon.com/
|
|
13056
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
13036
13057
|
'''
|
|
13037
13058
|
result = self._values.get("assign")
|
|
13038
13059
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -13829,7 +13850,7 @@ class CallApiGatewayHttpApiEndpointProps(
|
|
|
13829
13850
|
|
|
13830
13851
|
:default: - Not assign variables
|
|
13831
13852
|
|
|
13832
|
-
:see: https://docs.aws.amazon.com/
|
|
13853
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
13833
13854
|
'''
|
|
13834
13855
|
result = self._values.get("assign")
|
|
13835
13856
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -14042,6 +14063,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14042
14063
|
*,
|
|
14043
14064
|
api: _IRestApi_1f02523d,
|
|
14044
14065
|
stage_name: builtins.str,
|
|
14066
|
+
region: typing.Optional[builtins.str] = None,
|
|
14045
14067
|
result_path: typing.Optional[builtins.str] = None,
|
|
14046
14068
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
14047
14069
|
method: "HttpMethod",
|
|
@@ -14069,6 +14091,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14069
14091
|
:param id: Descriptive identifier for this chainable.
|
|
14070
14092
|
:param api: API to call.
|
|
14071
14093
|
:param stage_name: Name of the stage where the API is deployed to in API Gateway.
|
|
14094
|
+
:param region: Specify a custom Region where the API is deployed, e.g. 'us-east-1'. Default: - Uses the Region of the stack containing the ``api``.
|
|
14072
14095
|
: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: $
|
|
14073
14096
|
: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
|
|
14074
14097
|
:param method: Http method for the API.
|
|
@@ -14098,6 +14121,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14098
14121
|
props = CallApiGatewayRestApiEndpointProps(
|
|
14099
14122
|
api=api,
|
|
14100
14123
|
stage_name=stage_name,
|
|
14124
|
+
region=region,
|
|
14101
14125
|
result_path=result_path,
|
|
14102
14126
|
result_selector=result_selector,
|
|
14103
14127
|
method=method,
|
|
@@ -14132,6 +14156,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14132
14156
|
*,
|
|
14133
14157
|
api: _IRestApi_1f02523d,
|
|
14134
14158
|
stage_name: builtins.str,
|
|
14159
|
+
region: typing.Optional[builtins.str] = None,
|
|
14135
14160
|
method: "HttpMethod",
|
|
14136
14161
|
api_path: typing.Optional[builtins.str] = None,
|
|
14137
14162
|
auth_type: typing.Optional[AuthType] = None,
|
|
@@ -14174,6 +14199,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14174
14199
|
:param id: -
|
|
14175
14200
|
:param api: API to call.
|
|
14176
14201
|
:param stage_name: Name of the stage where the API is deployed to in API Gateway.
|
|
14202
|
+
:param region: Specify a custom Region where the API is deployed, e.g. 'us-east-1'. Default: - Uses the Region of the stack containing the ``api``.
|
|
14177
14203
|
:param method: Http method for the API.
|
|
14178
14204
|
:param api_path: Path parameters appended after API endpoint. Default: - No path
|
|
14179
14205
|
:param auth_type: Authentication methods. Default: AuthType.NO_AUTH
|
|
@@ -14201,6 +14227,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14201
14227
|
props = CallApiGatewayRestApiEndpointJsonataProps(
|
|
14202
14228
|
api=api,
|
|
14203
14229
|
stage_name=stage_name,
|
|
14230
|
+
region=region,
|
|
14204
14231
|
method=method,
|
|
14205
14232
|
api_path=api_path,
|
|
14206
14233
|
auth_type=auth_type,
|
|
@@ -14231,6 +14258,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14231
14258
|
*,
|
|
14232
14259
|
api: _IRestApi_1f02523d,
|
|
14233
14260
|
stage_name: builtins.str,
|
|
14261
|
+
region: typing.Optional[builtins.str] = None,
|
|
14234
14262
|
result_path: typing.Optional[builtins.str] = None,
|
|
14235
14263
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
14236
14264
|
method: "HttpMethod",
|
|
@@ -14276,6 +14304,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14276
14304
|
:param id: -
|
|
14277
14305
|
:param api: API to call.
|
|
14278
14306
|
:param stage_name: Name of the stage where the API is deployed to in API Gateway.
|
|
14307
|
+
:param region: Specify a custom Region where the API is deployed, e.g. 'us-east-1'. Default: - Uses the Region of the stack containing the ``api``.
|
|
14279
14308
|
: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: $
|
|
14280
14309
|
: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
|
|
14281
14310
|
:param method: Http method for the API.
|
|
@@ -14306,6 +14335,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14306
14335
|
props = CallApiGatewayRestApiEndpointJsonPathProps(
|
|
14307
14336
|
api=api,
|
|
14308
14337
|
stage_name=stage_name,
|
|
14338
|
+
region=region,
|
|
14309
14339
|
result_path=result_path,
|
|
14310
14340
|
result_selector=result_selector,
|
|
14311
14341
|
method=method,
|
|
@@ -14363,14 +14393,21 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
14363
14393
|
@jsii.data_type(
|
|
14364
14394
|
jsii_type="aws-cdk-lib.aws_stepfunctions_tasks.CallApiGatewayRestApiEndpointOptions",
|
|
14365
14395
|
jsii_struct_bases=[],
|
|
14366
|
-
name_mapping={"api": "api", "stage_name": "stageName"},
|
|
14396
|
+
name_mapping={"api": "api", "stage_name": "stageName", "region": "region"},
|
|
14367
14397
|
)
|
|
14368
14398
|
class CallApiGatewayRestApiEndpointOptions:
|
|
14369
|
-
def __init__(
|
|
14399
|
+
def __init__(
|
|
14400
|
+
self,
|
|
14401
|
+
*,
|
|
14402
|
+
api: _IRestApi_1f02523d,
|
|
14403
|
+
stage_name: builtins.str,
|
|
14404
|
+
region: typing.Optional[builtins.str] = None,
|
|
14405
|
+
) -> None:
|
|
14370
14406
|
'''Base properties for calling an REST API Endpoint.
|
|
14371
14407
|
|
|
14372
14408
|
:param api: API to call.
|
|
14373
14409
|
:param stage_name: Name of the stage where the API is deployed to in API Gateway.
|
|
14410
|
+
:param region: Specify a custom Region where the API is deployed, e.g. 'us-east-1'. Default: - Uses the Region of the stack containing the ``api``.
|
|
14374
14411
|
|
|
14375
14412
|
:exampleMetadata: fixture=_generated
|
|
14376
14413
|
|
|
@@ -14385,17 +14422,23 @@ class CallApiGatewayRestApiEndpointOptions:
|
|
|
14385
14422
|
|
|
14386
14423
|
call_api_gateway_rest_api_endpoint_options = stepfunctions_tasks.CallApiGatewayRestApiEndpointOptions(
|
|
14387
14424
|
api=rest_api,
|
|
14388
|
-
stage_name="stageName"
|
|
14425
|
+
stage_name="stageName",
|
|
14426
|
+
|
|
14427
|
+
# the properties below are optional
|
|
14428
|
+
region="region"
|
|
14389
14429
|
)
|
|
14390
14430
|
'''
|
|
14391
14431
|
if __debug__:
|
|
14392
14432
|
type_hints = typing.get_type_hints(_typecheckingstub__f3e7028403a9fb243cf40cd7590bda960bfb12daacd7648c71359997146e9dba)
|
|
14393
14433
|
check_type(argname="argument api", value=api, expected_type=type_hints["api"])
|
|
14394
14434
|
check_type(argname="argument stage_name", value=stage_name, expected_type=type_hints["stage_name"])
|
|
14435
|
+
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
14395
14436
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
14396
14437
|
"api": api,
|
|
14397
14438
|
"stage_name": stage_name,
|
|
14398
14439
|
}
|
|
14440
|
+
if region is not None:
|
|
14441
|
+
self._values["region"] = region
|
|
14399
14442
|
|
|
14400
14443
|
@builtins.property
|
|
14401
14444
|
def api(self) -> _IRestApi_1f02523d:
|
|
@@ -14411,6 +14454,15 @@ class CallApiGatewayRestApiEndpointOptions:
|
|
|
14411
14454
|
assert result is not None, "Required property 'stage_name' is missing"
|
|
14412
14455
|
return typing.cast(builtins.str, result)
|
|
14413
14456
|
|
|
14457
|
+
@builtins.property
|
|
14458
|
+
def region(self) -> typing.Optional[builtins.str]:
|
|
14459
|
+
'''Specify a custom Region where the API is deployed, e.g. 'us-east-1'.
|
|
14460
|
+
|
|
14461
|
+
:default: - Uses the Region of the stack containing the ``api``.
|
|
14462
|
+
'''
|
|
14463
|
+
result = self._values.get("region")
|
|
14464
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
14465
|
+
|
|
14414
14466
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
14415
14467
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
14416
14468
|
|
|
@@ -14452,6 +14504,7 @@ class CallApiGatewayRestApiEndpointOptions:
|
|
|
14452
14504
|
"request_body": "requestBody",
|
|
14453
14505
|
"api": "api",
|
|
14454
14506
|
"stage_name": "stageName",
|
|
14507
|
+
"region": "region",
|
|
14455
14508
|
},
|
|
14456
14509
|
)
|
|
14457
14510
|
class CallApiGatewayRestApiEndpointProps(
|
|
@@ -14484,6 +14537,7 @@ class CallApiGatewayRestApiEndpointProps(
|
|
|
14484
14537
|
request_body: typing.Optional[_TaskInput_91b91b91] = None,
|
|
14485
14538
|
api: _IRestApi_1f02523d,
|
|
14486
14539
|
stage_name: builtins.str,
|
|
14540
|
+
region: typing.Optional[builtins.str] = None,
|
|
14487
14541
|
) -> None:
|
|
14488
14542
|
'''Properties for calling an REST API Endpoint.
|
|
14489
14543
|
|
|
@@ -14510,23 +14564,20 @@ class CallApiGatewayRestApiEndpointProps(
|
|
|
14510
14564
|
:param request_body: HTTP Request body. Default: - No request body
|
|
14511
14565
|
:param api: API to call.
|
|
14512
14566
|
:param stage_name: Name of the stage where the API is deployed to in API Gateway.
|
|
14567
|
+
:param region: Specify a custom Region where the API is deployed, e.g. 'us-east-1'. Default: - Uses the Region of the stack containing the ``api``.
|
|
14513
14568
|
|
|
14514
14569
|
:exampleMetadata: infused
|
|
14515
14570
|
|
|
14516
14571
|
Example::
|
|
14517
14572
|
|
|
14518
14573
|
import aws_cdk.aws_apigateway as apigateway
|
|
14519
|
-
# api: apigateway.RestApi
|
|
14520
|
-
|
|
14521
14574
|
|
|
14522
|
-
|
|
14523
|
-
|
|
14524
|
-
|
|
14525
|
-
|
|
14526
|
-
|
|
14527
|
-
|
|
14528
|
-
"TaskToken": sfn.JsonPath.array(sfn.JsonPath.task_token)
|
|
14529
|
-
})
|
|
14575
|
+
rest_api = apigateway.RestApi(self, "MyRestApi")
|
|
14576
|
+
invoke_task = tasks.CallApiGatewayRestApiEndpoint(self, "Call REST API",
|
|
14577
|
+
api=rest_api,
|
|
14578
|
+
stage_name="prod",
|
|
14579
|
+
method=tasks.HttpMethod.GET,
|
|
14580
|
+
region="us-west-2"
|
|
14530
14581
|
)
|
|
14531
14582
|
'''
|
|
14532
14583
|
if isinstance(credentials, dict):
|
|
@@ -14556,6 +14607,7 @@ class CallApiGatewayRestApiEndpointProps(
|
|
|
14556
14607
|
check_type(argname="argument request_body", value=request_body, expected_type=type_hints["request_body"])
|
|
14557
14608
|
check_type(argname="argument api", value=api, expected_type=type_hints["api"])
|
|
14558
14609
|
check_type(argname="argument stage_name", value=stage_name, expected_type=type_hints["stage_name"])
|
|
14610
|
+
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
14559
14611
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
14560
14612
|
"method": method,
|
|
14561
14613
|
"api": api,
|
|
@@ -14601,6 +14653,8 @@ class CallApiGatewayRestApiEndpointProps(
|
|
|
14601
14653
|
self._values["query_parameters"] = query_parameters
|
|
14602
14654
|
if request_body is not None:
|
|
14603
14655
|
self._values["request_body"] = request_body
|
|
14656
|
+
if region is not None:
|
|
14657
|
+
self._values["region"] = region
|
|
14604
14658
|
|
|
14605
14659
|
@builtins.property
|
|
14606
14660
|
def comment(self) -> typing.Optional[builtins.str]:
|
|
@@ -14722,7 +14776,7 @@ class CallApiGatewayRestApiEndpointProps(
|
|
|
14722
14776
|
|
|
14723
14777
|
:default: - Not assign variables
|
|
14724
14778
|
|
|
14725
|
-
:see: https://docs.aws.amazon.com/
|
|
14779
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
14726
14780
|
'''
|
|
14727
14781
|
result = self._values.get("assign")
|
|
14728
14782
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -14862,6 +14916,15 @@ class CallApiGatewayRestApiEndpointProps(
|
|
|
14862
14916
|
assert result is not None, "Required property 'stage_name' is missing"
|
|
14863
14917
|
return typing.cast(builtins.str, result)
|
|
14864
14918
|
|
|
14919
|
+
@builtins.property
|
|
14920
|
+
def region(self) -> typing.Optional[builtins.str]:
|
|
14921
|
+
'''Specify a custom Region where the API is deployed, e.g. 'us-east-1'.
|
|
14922
|
+
|
|
14923
|
+
:default: - Uses the Region of the stack containing the ``api``.
|
|
14924
|
+
'''
|
|
14925
|
+
result = self._values.get("region")
|
|
14926
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
14927
|
+
|
|
14865
14928
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
14866
14929
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
14867
14930
|
|
|
@@ -15786,7 +15849,7 @@ class CallAwsServiceCrossRegionJsonPathProps(_TaskStateJsonPathBaseProps_57dc226
|
|
|
15786
15849
|
|
|
15787
15850
|
:default: - Not assign variables
|
|
15788
15851
|
|
|
15789
|
-
:see: https://docs.aws.amazon.com/
|
|
15852
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
15790
15853
|
'''
|
|
15791
15854
|
result = self._values.get("assign")
|
|
15792
15855
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -16267,7 +16330,7 @@ class CallAwsServiceCrossRegionJsonataProps(_TaskStateJsonataBaseProps_0e91775c)
|
|
|
16267
16330
|
|
|
16268
16331
|
:default: - Not assign variables
|
|
16269
16332
|
|
|
16270
|
-
:see: https://docs.aws.amazon.com/
|
|
16333
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
16271
16334
|
'''
|
|
16272
16335
|
result = self._values.get("assign")
|
|
16273
16336
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -16705,7 +16768,7 @@ class CallAwsServiceCrossRegionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
16705
16768
|
|
|
16706
16769
|
:default: - Not assign variables
|
|
16707
16770
|
|
|
16708
|
-
:see: https://docs.aws.amazon.com/
|
|
16771
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
16709
16772
|
'''
|
|
16710
16773
|
result = self._values.get("assign")
|
|
16711
16774
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -17207,7 +17270,7 @@ class CallAwsServiceJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
17207
17270
|
|
|
17208
17271
|
:default: - Not assign variables
|
|
17209
17272
|
|
|
17210
|
-
:see: https://docs.aws.amazon.com/
|
|
17273
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
17211
17274
|
'''
|
|
17212
17275
|
result = self._values.get("assign")
|
|
17213
17276
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -17631,7 +17694,7 @@ class CallAwsServiceJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
17631
17694
|
|
|
17632
17695
|
:default: - Not assign variables
|
|
17633
17696
|
|
|
17634
|
-
:see: https://docs.aws.amazon.com/
|
|
17697
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
17635
17698
|
'''
|
|
17636
17699
|
result = self._values.get("assign")
|
|
17637
17700
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -18014,7 +18077,7 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18014
18077
|
|
|
18015
18078
|
:default: - Not assign variables
|
|
18016
18079
|
|
|
18017
|
-
:see: https://docs.aws.amazon.com/
|
|
18080
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
18018
18081
|
'''
|
|
18019
18082
|
result = self._values.get("assign")
|
|
18020
18083
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -19248,7 +19311,7 @@ class CodeBuildStartBuildBatchJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260
|
|
|
19248
19311
|
|
|
19249
19312
|
:default: - Not assign variables
|
|
19250
19313
|
|
|
19251
|
-
:see: https://docs.aws.amazon.com/
|
|
19314
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
19252
19315
|
'''
|
|
19253
19316
|
result = self._values.get("assign")
|
|
19254
19317
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -19600,7 +19663,7 @@ class CodeBuildStartBuildBatchJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
19600
19663
|
|
|
19601
19664
|
:default: - Not assign variables
|
|
19602
19665
|
|
|
19603
|
-
:see: https://docs.aws.amazon.com/
|
|
19666
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
19604
19667
|
'''
|
|
19605
19668
|
result = self._values.get("assign")
|
|
19606
19669
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -19927,7 +19990,7 @@ class CodeBuildStartBuildBatchProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19927
19990
|
|
|
19928
19991
|
:default: - Not assign variables
|
|
19929
19992
|
|
|
19930
|
-
:see: https://docs.aws.amazon.com/
|
|
19993
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
19931
19994
|
'''
|
|
19932
19995
|
result = self._values.get("assign")
|
|
19933
19996
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -20319,7 +20382,7 @@ class CodeBuildStartBuildJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
20319
20382
|
|
|
20320
20383
|
:default: - Not assign variables
|
|
20321
20384
|
|
|
20322
|
-
:see: https://docs.aws.amazon.com/
|
|
20385
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
20323
20386
|
'''
|
|
20324
20387
|
result = self._values.get("assign")
|
|
20325
20388
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -20671,7 +20734,7 @@ class CodeBuildStartBuildJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
20671
20734
|
|
|
20672
20735
|
:default: - Not assign variables
|
|
20673
20736
|
|
|
20674
|
-
:see: https://docs.aws.amazon.com/
|
|
20737
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
20675
20738
|
'''
|
|
20676
20739
|
result = self._values.get("assign")
|
|
20677
20740
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -20996,7 +21059,7 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20996
21059
|
|
|
20997
21060
|
:default: - Not assign variables
|
|
20998
21061
|
|
|
20999
|
-
:see: https://docs.aws.amazon.com/
|
|
21062
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
21000
21063
|
'''
|
|
21001
21064
|
result = self._values.get("assign")
|
|
21002
21065
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -23142,7 +23205,7 @@ class DynamoDeleteItemJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
23142
23205
|
|
|
23143
23206
|
:default: - Not assign variables
|
|
23144
23207
|
|
|
23145
|
-
:see: https://docs.aws.amazon.com/
|
|
23208
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
23146
23209
|
'''
|
|
23147
23210
|
result = self._values.get("assign")
|
|
23148
23211
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -23611,7 +23674,7 @@ class DynamoDeleteItemJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
23611
23674
|
|
|
23612
23675
|
:default: - Not assign variables
|
|
23613
23676
|
|
|
23614
|
-
:see: https://docs.aws.amazon.com/
|
|
23677
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
23615
23678
|
'''
|
|
23616
23679
|
result = self._values.get("assign")
|
|
23617
23680
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -24029,7 +24092,7 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24029
24092
|
|
|
24030
24093
|
:default: - Not assign variables
|
|
24031
24094
|
|
|
24032
|
-
:see: https://docs.aws.amazon.com/
|
|
24095
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
24033
24096
|
'''
|
|
24034
24097
|
result = self._values.get("assign")
|
|
24035
24098
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -24790,7 +24853,7 @@ class DynamoGetItemJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
24790
24853
|
|
|
24791
24854
|
:default: - Not assign variables
|
|
24792
24855
|
|
|
24793
|
-
:see: https://docs.aws.amazon.com/
|
|
24856
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
24794
24857
|
'''
|
|
24795
24858
|
result = self._values.get("assign")
|
|
24796
24859
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -25220,7 +25283,7 @@ class DynamoGetItemJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
25220
25283
|
|
|
25221
25284
|
:default: - Not assign variables
|
|
25222
25285
|
|
|
25223
|
-
:see: https://docs.aws.amazon.com/
|
|
25286
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
25224
25287
|
'''
|
|
25225
25288
|
result = self._values.get("assign")
|
|
25226
25289
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -25601,7 +25664,7 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25601
25664
|
|
|
25602
25665
|
:default: - Not assign variables
|
|
25603
25666
|
|
|
25604
|
-
:see: https://docs.aws.amazon.com/
|
|
25667
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
25605
25668
|
'''
|
|
25606
25669
|
result = self._values.get("assign")
|
|
25607
25670
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -26433,7 +26496,7 @@ class DynamoPutItemJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
26433
26496
|
|
|
26434
26497
|
:default: - Not assign variables
|
|
26435
26498
|
|
|
26436
|
-
:see: https://docs.aws.amazon.com/
|
|
26499
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
26437
26500
|
'''
|
|
26438
26501
|
result = self._values.get("assign")
|
|
26439
26502
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -26899,7 +26962,7 @@ class DynamoPutItemJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
26899
26962
|
|
|
26900
26963
|
:default: - Not assign variables
|
|
26901
26964
|
|
|
26902
|
-
:see: https://docs.aws.amazon.com/
|
|
26965
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
26903
26966
|
'''
|
|
26904
26967
|
result = self._values.get("assign")
|
|
26905
26968
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -27317,7 +27380,7 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27317
27380
|
|
|
27318
27381
|
:default: - Not assign variables
|
|
27319
27382
|
|
|
27320
|
-
:see: https://docs.aws.amazon.com/
|
|
27383
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
27321
27384
|
'''
|
|
27322
27385
|
result = self._values.get("assign")
|
|
27323
27386
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -28147,7 +28210,7 @@ class DynamoUpdateItemJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
28147
28210
|
|
|
28148
28211
|
:default: - Not assign variables
|
|
28149
28212
|
|
|
28150
|
-
:see: https://docs.aws.amazon.com/
|
|
28213
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
28151
28214
|
'''
|
|
28152
28215
|
result = self._values.get("assign")
|
|
28153
28216
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -28634,7 +28697,7 @@ class DynamoUpdateItemJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
28634
28697
|
|
|
28635
28698
|
:default: - Not assign variables
|
|
28636
28699
|
|
|
28637
|
-
:see: https://docs.aws.amazon.com/
|
|
28700
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
28638
28701
|
'''
|
|
28639
28702
|
result = self._values.get("assign")
|
|
28640
28703
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -29075,7 +29138,7 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29075
29138
|
|
|
29076
29139
|
:default: - Not assign variables
|
|
29077
29140
|
|
|
29078
|
-
:see: https://docs.aws.amazon.com/
|
|
29141
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
29079
29142
|
'''
|
|
29080
29143
|
result = self._values.get("assign")
|
|
29081
29144
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -30212,7 +30275,7 @@ class EcsRunTaskJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
30212
30275
|
|
|
30213
30276
|
:default: - Not assign variables
|
|
30214
30277
|
|
|
30215
|
-
:see: https://docs.aws.amazon.com/
|
|
30278
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
30216
30279
|
'''
|
|
30217
30280
|
result = self._values.get("assign")
|
|
30218
30281
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -30757,7 +30820,7 @@ class EcsRunTaskJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
30757
30820
|
|
|
30758
30821
|
:default: - Not assign variables
|
|
30759
30822
|
|
|
30760
|
-
:see: https://docs.aws.amazon.com/
|
|
30823
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
30761
30824
|
'''
|
|
30762
30825
|
result = self._values.get("assign")
|
|
30763
30826
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -31250,7 +31313,7 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
31250
31313
|
|
|
31251
31314
|
:default: - Not assign variables
|
|
31252
31315
|
|
|
31253
|
-
:see: https://docs.aws.amazon.com/
|
|
31316
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
31254
31317
|
'''
|
|
31255
31318
|
result = self._values.get("assign")
|
|
31256
31319
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -31472,11 +31535,13 @@ class EksCall(
|
|
|
31472
31535
|
Example::
|
|
31473
31536
|
|
|
31474
31537
|
import aws_cdk.aws_eks as eks
|
|
31538
|
+
from aws_cdk.lambda_layer_kubectl_v32 import KubectlV32Layer
|
|
31475
31539
|
|
|
31476
31540
|
|
|
31477
31541
|
my_eks_cluster = eks.Cluster(self, "my sample cluster",
|
|
31478
|
-
version=eks.KubernetesVersion.
|
|
31479
|
-
cluster_name="myEksCluster"
|
|
31542
|
+
version=eks.KubernetesVersion.V1_32,
|
|
31543
|
+
cluster_name="myEksCluster",
|
|
31544
|
+
kubectl_layer=KubectlV32Layer(self, "kubectl")
|
|
31480
31545
|
)
|
|
31481
31546
|
|
|
31482
31547
|
tasks.EksCall(self, "Call a EKS Endpoint",
|
|
@@ -32035,7 +32100,7 @@ class EksCallJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
32035
32100
|
|
|
32036
32101
|
:default: - Not assign variables
|
|
32037
32102
|
|
|
32038
|
-
:see: https://docs.aws.amazon.com/
|
|
32103
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
32039
32104
|
'''
|
|
32040
32105
|
result = self._values.get("assign")
|
|
32041
32106
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -32424,7 +32489,7 @@ class EksCallJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
32424
32489
|
|
|
32425
32490
|
:default: - Not assign variables
|
|
32426
32491
|
|
|
32427
|
-
:see: https://docs.aws.amazon.com/
|
|
32492
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
32428
32493
|
'''
|
|
32429
32494
|
result = self._values.get("assign")
|
|
32430
32495
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -32578,11 +32643,13 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
32578
32643
|
Example::
|
|
32579
32644
|
|
|
32580
32645
|
import aws_cdk.aws_eks as eks
|
|
32646
|
+
from aws_cdk.lambda_layer_kubectl_v32 import KubectlV32Layer
|
|
32581
32647
|
|
|
32582
32648
|
|
|
32583
32649
|
my_eks_cluster = eks.Cluster(self, "my sample cluster",
|
|
32584
|
-
version=eks.KubernetesVersion.
|
|
32585
|
-
cluster_name="myEksCluster"
|
|
32650
|
+
version=eks.KubernetesVersion.V1_32,
|
|
32651
|
+
cluster_name="myEksCluster",
|
|
32652
|
+
kubectl_layer=KubectlV32Layer(self, "kubectl")
|
|
32586
32653
|
)
|
|
32587
32654
|
|
|
32588
32655
|
tasks.EksCall(self, "Call a EKS Endpoint",
|
|
@@ -32775,7 +32842,7 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
32775
32842
|
|
|
32776
32843
|
:default: - Not assign variables
|
|
32777
32844
|
|
|
32778
|
-
:see: https://docs.aws.amazon.com/
|
|
32845
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
32779
32846
|
'''
|
|
32780
32847
|
result = self._values.get("assign")
|
|
32781
32848
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -33566,7 +33633,7 @@ class EmrAddStepJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
33566
33633
|
|
|
33567
33634
|
:default: - Not assign variables
|
|
33568
33635
|
|
|
33569
|
-
:see: https://docs.aws.amazon.com/
|
|
33636
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
33570
33637
|
'''
|
|
33571
33638
|
result = self._values.get("assign")
|
|
33572
33639
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -34018,7 +34085,7 @@ class EmrAddStepJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
34018
34085
|
|
|
34019
34086
|
:default: - Not assign variables
|
|
34020
34087
|
|
|
34021
|
-
:see: https://docs.aws.amazon.com/
|
|
34088
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
34022
34089
|
'''
|
|
34023
34090
|
result = self._values.get("assign")
|
|
34024
34091
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -34425,7 +34492,7 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
34425
34492
|
|
|
34426
34493
|
:default: - Not assign variables
|
|
34427
34494
|
|
|
34428
|
-
:see: https://docs.aws.amazon.com/
|
|
34495
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
34429
34496
|
'''
|
|
34430
34497
|
result = self._values.get("assign")
|
|
34431
34498
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -35103,7 +35170,7 @@ class EmrCancelStepJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
35103
35170
|
|
|
35104
35171
|
:default: - Not assign variables
|
|
35105
35172
|
|
|
35106
|
-
:see: https://docs.aws.amazon.com/
|
|
35173
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
35107
35174
|
'''
|
|
35108
35175
|
result = self._values.get("assign")
|
|
35109
35176
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -35440,7 +35507,7 @@ class EmrCancelStepJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
35440
35507
|
|
|
35441
35508
|
:default: - Not assign variables
|
|
35442
35509
|
|
|
35443
|
-
:see: https://docs.aws.amazon.com/
|
|
35510
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
35444
35511
|
'''
|
|
35445
35512
|
result = self._values.get("assign")
|
|
35446
35513
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -35738,7 +35805,7 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
35738
35805
|
|
|
35739
35806
|
:default: - Not assign variables
|
|
35740
35807
|
|
|
35741
|
-
:see: https://docs.aws.amazon.com/
|
|
35808
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
35742
35809
|
'''
|
|
35743
35810
|
result = self._values.get("assign")
|
|
35744
35811
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -36387,7 +36454,7 @@ class EmrContainersCreateVirtualClusterJsonPathProps(
|
|
|
36387
36454
|
|
|
36388
36455
|
:default: - Not assign variables
|
|
36389
36456
|
|
|
36390
|
-
:see: https://docs.aws.amazon.com/
|
|
36457
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
36391
36458
|
'''
|
|
36392
36459
|
result = self._values.get("assign")
|
|
36393
36460
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -36764,7 +36831,7 @@ class EmrContainersCreateVirtualClusterJsonataProps(
|
|
|
36764
36831
|
|
|
36765
36832
|
:default: - Not assign variables
|
|
36766
36833
|
|
|
36767
|
-
:see: https://docs.aws.amazon.com/
|
|
36834
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
36768
36835
|
'''
|
|
36769
36836
|
result = self._values.get("assign")
|
|
36770
36837
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -37095,7 +37162,7 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
37095
37162
|
|
|
37096
37163
|
:default: - Not assign variables
|
|
37097
37164
|
|
|
37098
|
-
:see: https://docs.aws.amazon.com/
|
|
37165
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
37099
37166
|
'''
|
|
37100
37167
|
result = self._values.get("assign")
|
|
37101
37168
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -37709,7 +37776,7 @@ class EmrContainersDeleteVirtualClusterJsonPathProps(
|
|
|
37709
37776
|
|
|
37710
37777
|
:default: - Not assign variables
|
|
37711
37778
|
|
|
37712
|
-
:see: https://docs.aws.amazon.com/
|
|
37779
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
37713
37780
|
'''
|
|
37714
37781
|
result = self._values.get("assign")
|
|
37715
37782
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -38036,7 +38103,7 @@ class EmrContainersDeleteVirtualClusterJsonataProps(
|
|
|
38036
38103
|
|
|
38037
38104
|
:default: - Not assign variables
|
|
38038
38105
|
|
|
38039
|
-
:see: https://docs.aws.amazon.com/
|
|
38106
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
38040
38107
|
'''
|
|
38041
38108
|
result = self._values.get("assign")
|
|
38042
38109
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -38321,7 +38388,7 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
38321
38388
|
|
|
38322
38389
|
:default: - Not assign variables
|
|
38323
38390
|
|
|
38324
|
-
:see: https://docs.aws.amazon.com/
|
|
38391
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
38325
38392
|
'''
|
|
38326
38393
|
result = self._values.get("assign")
|
|
38327
38394
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -39091,7 +39158,7 @@ class EmrContainersStartJobRunJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260
|
|
|
39091
39158
|
|
|
39092
39159
|
:default: - Not assign variables
|
|
39093
39160
|
|
|
39094
|
-
:see: https://docs.aws.amazon.com/
|
|
39161
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
39095
39162
|
'''
|
|
39096
39163
|
result = self._values.get("assign")
|
|
39097
39164
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -39576,7 +39643,7 @@ class EmrContainersStartJobRunJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
39576
39643
|
|
|
39577
39644
|
:default: - Not assign variables
|
|
39578
39645
|
|
|
39579
|
-
:see: https://docs.aws.amazon.com/
|
|
39646
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
39580
39647
|
'''
|
|
39581
39648
|
result = self._values.get("assign")
|
|
39582
39649
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -39994,7 +40061,7 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
39994
40061
|
|
|
39995
40062
|
:default: - Not assign variables
|
|
39996
40063
|
|
|
39997
|
-
:see: https://docs.aws.amazon.com/
|
|
40064
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
39998
40065
|
'''
|
|
39999
40066
|
result = self._values.get("assign")
|
|
40000
40067
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -44567,7 +44634,7 @@ class EmrCreateClusterJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
44567
44634
|
|
|
44568
44635
|
:default: - Not assign variables
|
|
44569
44636
|
|
|
44570
|
-
:see: https://docs.aws.amazon.com/
|
|
44637
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
44571
44638
|
'''
|
|
44572
44639
|
result = self._values.get("assign")
|
|
44573
44640
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -45401,7 +45468,7 @@ class EmrCreateClusterJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
45401
45468
|
|
|
45402
45469
|
:default: - Not assign variables
|
|
45403
45470
|
|
|
45404
|
-
:see: https://docs.aws.amazon.com/
|
|
45471
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
45405
45472
|
'''
|
|
45406
45473
|
result = self._values.get("assign")
|
|
45407
45474
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -46022,7 +46089,7 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
46022
46089
|
|
|
46023
46090
|
:default: - Not assign variables
|
|
46024
46091
|
|
|
46025
|
-
:see: https://docs.aws.amazon.com/
|
|
46092
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
46026
46093
|
'''
|
|
46027
46094
|
result = self._values.get("assign")
|
|
46028
46095
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -46846,7 +46913,7 @@ class EmrModifyInstanceFleetByNameJsonPathProps(_TaskStateJsonPathBaseProps_57dc
|
|
|
46846
46913
|
|
|
46847
46914
|
:default: - Not assign variables
|
|
46848
46915
|
|
|
46849
|
-
:see: https://docs.aws.amazon.com/
|
|
46916
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
46850
46917
|
'''
|
|
46851
46918
|
result = self._values.get("assign")
|
|
46852
46919
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -47219,7 +47286,7 @@ class EmrModifyInstanceFleetByNameJsonataProps(_TaskStateJsonataBaseProps_0e9177
|
|
|
47219
47286
|
|
|
47220
47287
|
:default: - Not assign variables
|
|
47221
47288
|
|
|
47222
|
-
:see: https://docs.aws.amazon.com/
|
|
47289
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
47223
47290
|
'''
|
|
47224
47291
|
result = self._values.get("assign")
|
|
47225
47292
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -47553,7 +47620,7 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
47553
47620
|
|
|
47554
47621
|
:default: - Not assign variables
|
|
47555
47622
|
|
|
47556
|
-
:see: https://docs.aws.amazon.com/
|
|
47623
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
47557
47624
|
'''
|
|
47558
47625
|
result = self._values.get("assign")
|
|
47559
47626
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -48512,7 +48579,7 @@ class EmrModifyInstanceGroupByNameJsonPathProps(_TaskStateJsonPathBaseProps_57dc
|
|
|
48512
48579
|
|
|
48513
48580
|
:default: - Not assign variables
|
|
48514
48581
|
|
|
48515
|
-
:see: https://docs.aws.amazon.com/
|
|
48582
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
48516
48583
|
'''
|
|
48517
48584
|
result = self._values.get("assign")
|
|
48518
48585
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -48890,7 +48957,7 @@ class EmrModifyInstanceGroupByNameJsonataProps(_TaskStateJsonataBaseProps_0e9177
|
|
|
48890
48957
|
|
|
48891
48958
|
:default: - Not assign variables
|
|
48892
48959
|
|
|
48893
|
-
:see: https://docs.aws.amazon.com/
|
|
48960
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
48894
48961
|
'''
|
|
48895
48962
|
result = self._values.get("assign")
|
|
48896
48963
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -49212,7 +49279,7 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
49212
49279
|
|
|
49213
49280
|
:default: - Not assign variables
|
|
49214
49281
|
|
|
49215
|
-
:see: https://docs.aws.amazon.com/
|
|
49282
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
49216
49283
|
'''
|
|
49217
49284
|
result = self._values.get("assign")
|
|
49218
49285
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -49834,7 +49901,7 @@ class EmrSetClusterTerminationProtectionJsonPathProps(
|
|
|
49834
49901
|
|
|
49835
49902
|
:default: - Not assign variables
|
|
49836
49903
|
|
|
49837
|
-
:see: https://docs.aws.amazon.com/
|
|
49904
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
49838
49905
|
'''
|
|
49839
49906
|
result = self._values.get("assign")
|
|
49840
49907
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -50173,7 +50240,7 @@ class EmrSetClusterTerminationProtectionJsonataProps(
|
|
|
50173
50240
|
|
|
50174
50241
|
:default: - Not assign variables
|
|
50175
50242
|
|
|
50176
|
-
:see: https://docs.aws.amazon.com/
|
|
50243
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
50177
50244
|
'''
|
|
50178
50245
|
result = self._values.get("assign")
|
|
50179
50246
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -50471,7 +50538,7 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
50471
50538
|
|
|
50472
50539
|
:default: - Not assign variables
|
|
50473
50540
|
|
|
50474
|
-
:see: https://docs.aws.amazon.com/
|
|
50541
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
50475
50542
|
'''
|
|
50476
50543
|
result = self._values.get("assign")
|
|
50477
50544
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -51061,7 +51128,7 @@ class EmrTerminateClusterJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
51061
51128
|
|
|
51062
51129
|
:default: - Not assign variables
|
|
51063
51130
|
|
|
51064
|
-
:see: https://docs.aws.amazon.com/
|
|
51131
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
51065
51132
|
'''
|
|
51066
51133
|
result = self._values.get("assign")
|
|
51067
51134
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -51385,7 +51452,7 @@ class EmrTerminateClusterJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
51385
51452
|
|
|
51386
51453
|
:default: - Not assign variables
|
|
51387
51454
|
|
|
51388
|
-
:see: https://docs.aws.amazon.com/
|
|
51455
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
51389
51456
|
'''
|
|
51390
51457
|
result = self._values.get("assign")
|
|
51391
51458
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -51670,7 +51737,7 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
51670
51737
|
|
|
51671
51738
|
:default: - Not assign variables
|
|
51672
51739
|
|
|
51673
|
-
:see: https://docs.aws.amazon.com/
|
|
51740
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
51674
51741
|
'''
|
|
51675
51742
|
result = self._values.get("assign")
|
|
51676
51743
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -52283,7 +52350,7 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
52283
52350
|
|
|
52284
52351
|
:default: - Not assign variables
|
|
52285
52352
|
|
|
52286
|
-
:see: https://docs.aws.amazon.com/
|
|
52353
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
52287
52354
|
'''
|
|
52288
52355
|
result = self._values.get("assign")
|
|
52289
52356
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -53026,7 +53093,7 @@ class EventBridgePutEventsJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
53026
53093
|
|
|
53027
53094
|
:default: - Not assign variables
|
|
53028
53095
|
|
|
53029
|
-
:see: https://docs.aws.amazon.com/
|
|
53096
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
53030
53097
|
'''
|
|
53031
53098
|
result = self._values.get("assign")
|
|
53032
53099
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -53364,7 +53431,7 @@ class EventBridgePutEventsJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
53364
53431
|
|
|
53365
53432
|
:default: - Not assign variables
|
|
53366
53433
|
|
|
53367
|
-
:see: https://docs.aws.amazon.com/
|
|
53434
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
53368
53435
|
'''
|
|
53369
53436
|
result = self._values.get("assign")
|
|
53370
53437
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -53667,7 +53734,7 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
53667
53734
|
|
|
53668
53735
|
:default: - Not assign variables
|
|
53669
53736
|
|
|
53670
|
-
:see: https://docs.aws.amazon.com/
|
|
53737
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
53671
53738
|
'''
|
|
53672
53739
|
result = self._values.get("assign")
|
|
53673
53740
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -54490,7 +54557,7 @@ class EventBridgeSchedulerCreateScheduleTaskJsonPathProps(
|
|
|
54490
54557
|
|
|
54491
54558
|
:default: - Not assign variables
|
|
54492
54559
|
|
|
54493
|
-
:see: https://docs.aws.amazon.com/
|
|
54560
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
54494
54561
|
'''
|
|
54495
54562
|
result = self._values.get("assign")
|
|
54496
54563
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -55020,7 +55087,7 @@ class EventBridgeSchedulerCreateScheduleTaskJsonataProps(
|
|
|
55020
55087
|
|
|
55021
55088
|
:default: - Not assign variables
|
|
55022
55089
|
|
|
55023
|
-
:see: https://docs.aws.amazon.com/
|
|
55090
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
55024
55091
|
'''
|
|
55025
55092
|
result = self._values.get("assign")
|
|
55026
55093
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -55532,7 +55599,7 @@ class EventBridgeSchedulerCreateScheduleTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
55532
55599
|
|
|
55533
55600
|
:default: - Not assign variables
|
|
55534
55601
|
|
|
55535
|
-
:see: https://docs.aws.amazon.com/
|
|
55602
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
55536
55603
|
'''
|
|
55537
55604
|
result = self._values.get("assign")
|
|
55538
55605
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -56566,7 +56633,7 @@ class GlueDataBrewStartJobRunJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260)
|
|
|
56566
56633
|
|
|
56567
56634
|
:default: - Not assign variables
|
|
56568
56635
|
|
|
56569
|
-
:see: https://docs.aws.amazon.com/
|
|
56636
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
56570
56637
|
'''
|
|
56571
56638
|
result = self._values.get("assign")
|
|
56572
56639
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -56890,7 +56957,7 @@ class GlueDataBrewStartJobRunJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
56890
56957
|
|
|
56891
56958
|
:default: - Not assign variables
|
|
56892
56959
|
|
|
56893
|
-
:see: https://docs.aws.amazon.com/
|
|
56960
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
56894
56961
|
'''
|
|
56895
56962
|
result = self._values.get("assign")
|
|
56896
56963
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -57175,7 +57242,7 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
57175
57242
|
|
|
57176
57243
|
:default: - Not assign variables
|
|
57177
57244
|
|
|
57178
|
-
:see: https://docs.aws.amazon.com/
|
|
57245
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
57179
57246
|
'''
|
|
57180
57247
|
result = self._values.get("assign")
|
|
57181
57248
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -57774,7 +57841,7 @@ class GlueStartCrawlerRunJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
57774
57841
|
|
|
57775
57842
|
:default: - Not assign variables
|
|
57776
57843
|
|
|
57777
|
-
:see: https://docs.aws.amazon.com/
|
|
57844
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
57778
57845
|
'''
|
|
57779
57846
|
result = self._values.get("assign")
|
|
57780
57847
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -58098,7 +58165,7 @@ class GlueStartCrawlerRunJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
58098
58165
|
|
|
58099
58166
|
:default: - Not assign variables
|
|
58100
58167
|
|
|
58101
|
-
:see: https://docs.aws.amazon.com/
|
|
58168
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
58102
58169
|
'''
|
|
58103
58170
|
result = self._values.get("assign")
|
|
58104
58171
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -58394,7 +58461,7 @@ class GlueStartCrawlerRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
58394
58461
|
|
|
58395
58462
|
:default: - Not assign variables
|
|
58396
58463
|
|
|
58397
|
-
:see: https://docs.aws.amazon.com/
|
|
58464
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
58398
58465
|
'''
|
|
58399
58466
|
result = self._values.get("assign")
|
|
58400
58467
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -59085,7 +59152,7 @@ class GlueStartJobRunJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
59085
59152
|
|
|
59086
59153
|
:default: - Not assign variables
|
|
59087
59154
|
|
|
59088
|
-
:see: https://docs.aws.amazon.com/
|
|
59155
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
59089
59156
|
'''
|
|
59090
59157
|
result = self._values.get("assign")
|
|
59091
59158
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -59508,7 +59575,7 @@ class GlueStartJobRunJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
59508
59575
|
|
|
59509
59576
|
:default: - Not assign variables
|
|
59510
59577
|
|
|
59511
|
-
:see: https://docs.aws.amazon.com/
|
|
59578
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
59512
59579
|
'''
|
|
59513
59580
|
result = self._values.get("assign")
|
|
59514
59581
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -59883,7 +59950,7 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
59883
59950
|
|
|
59884
59951
|
:default: - Not assign variables
|
|
59885
59952
|
|
|
59886
|
-
:see: https://docs.aws.amazon.com/
|
|
59953
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
59887
59954
|
'''
|
|
59888
59955
|
result = self._values.get("assign")
|
|
59889
59956
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -60742,7 +60809,7 @@ class HttpInvokeJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
60742
60809
|
|
|
60743
60810
|
:default: - Not assign variables
|
|
60744
60811
|
|
|
60745
|
-
:see: https://docs.aws.amazon.com/
|
|
60812
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
60746
60813
|
'''
|
|
60747
60814
|
result = self._values.get("assign")
|
|
60748
60815
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -61193,7 +61260,7 @@ class HttpInvokeJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
61193
61260
|
|
|
61194
61261
|
:default: - Not assign variables
|
|
61195
61262
|
|
|
61196
|
-
:see: https://docs.aws.amazon.com/
|
|
61263
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
61197
61264
|
'''
|
|
61198
61265
|
result = self._values.get("assign")
|
|
61199
61266
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -61611,7 +61678,7 @@ class HttpInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
61611
61678
|
|
|
61612
61679
|
:default: - Not assign variables
|
|
61613
61680
|
|
|
61614
|
-
:see: https://docs.aws.amazon.com/
|
|
61681
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
61615
61682
|
'''
|
|
61616
61683
|
result = self._values.get("assign")
|
|
61617
61684
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -61832,11 +61899,13 @@ class HttpMethods(enum.Enum):
|
|
|
61832
61899
|
Example::
|
|
61833
61900
|
|
|
61834
61901
|
import aws_cdk.aws_eks as eks
|
|
61902
|
+
from aws_cdk.lambda_layer_kubectl_v32 import KubectlV32Layer
|
|
61835
61903
|
|
|
61836
61904
|
|
|
61837
61905
|
my_eks_cluster = eks.Cluster(self, "my sample cluster",
|
|
61838
|
-
version=eks.KubernetesVersion.
|
|
61839
|
-
cluster_name="myEksCluster"
|
|
61906
|
+
version=eks.KubernetesVersion.V1_32,
|
|
61907
|
+
cluster_name="myEksCluster",
|
|
61908
|
+
kubectl_layer=KubectlV32Layer(self, "kubectl")
|
|
61840
61909
|
)
|
|
61841
61910
|
|
|
61842
61911
|
tasks.EksCall(self, "Call a EKS Endpoint",
|
|
@@ -62783,7 +62852,7 @@ class LambdaInvokeJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
62783
62852
|
|
|
62784
62853
|
:default: - Not assign variables
|
|
62785
62854
|
|
|
62786
|
-
:see: https://docs.aws.amazon.com/
|
|
62855
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
62787
62856
|
'''
|
|
62788
62857
|
result = self._values.get("assign")
|
|
62789
62858
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -63205,7 +63274,7 @@ class LambdaInvokeJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
63205
63274
|
|
|
63206
63275
|
:default: - Not assign variables
|
|
63207
63276
|
|
|
63208
|
-
:see: https://docs.aws.amazon.com/
|
|
63277
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
63209
63278
|
'''
|
|
63210
63279
|
result = self._values.get("assign")
|
|
63211
63280
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -63608,7 +63677,7 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
63608
63677
|
|
|
63609
63678
|
:default: - Not assign variables
|
|
63610
63679
|
|
|
63611
|
-
:see: https://docs.aws.amazon.com/
|
|
63680
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
63612
63681
|
'''
|
|
63613
63682
|
result = self._values.get("assign")
|
|
63614
63683
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -64399,7 +64468,7 @@ class MediaConvertCreateJobJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
64399
64468
|
|
|
64400
64469
|
:default: - Not assign variables
|
|
64401
64470
|
|
|
64402
|
-
:see: https://docs.aws.amazon.com/
|
|
64471
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
64403
64472
|
'''
|
|
64404
64473
|
result = self._values.get("assign")
|
|
64405
64474
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -64726,7 +64795,7 @@ class MediaConvertCreateJobJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
64726
64795
|
|
|
64727
64796
|
:default: - Not assign variables
|
|
64728
64797
|
|
|
64729
|
-
:see: https://docs.aws.amazon.com/
|
|
64798
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
64730
64799
|
'''
|
|
64731
64800
|
result = self._values.get("assign")
|
|
64732
64801
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -65064,7 +65133,7 @@ class MediaConvertCreateJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
65064
65133
|
|
|
65065
65134
|
:default: - Not assign variables
|
|
65066
65135
|
|
|
65067
|
-
:see: https://docs.aws.amazon.com/
|
|
65136
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
65068
65137
|
'''
|
|
65069
65138
|
result = self._values.get("assign")
|
|
65070
65139
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -67559,7 +67628,7 @@ class SageMakerCreateEndpointConfigJsonPathProps(_TaskStateJsonPathBaseProps_57d
|
|
|
67559
67628
|
|
|
67560
67629
|
:default: - Not assign variables
|
|
67561
67630
|
|
|
67562
|
-
:see: https://docs.aws.amazon.com/
|
|
67631
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
67563
67632
|
'''
|
|
67564
67633
|
result = self._values.get("assign")
|
|
67565
67634
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -67948,7 +68017,7 @@ class SageMakerCreateEndpointConfigJsonataProps(_TaskStateJsonataBaseProps_0e917
|
|
|
67948
68017
|
|
|
67949
68018
|
:default: - Not assign variables
|
|
67950
68019
|
|
|
67951
|
-
:see: https://docs.aws.amazon.com/
|
|
68020
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
67952
68021
|
'''
|
|
67953
68022
|
result = self._values.get("assign")
|
|
67954
68023
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -68286,7 +68355,7 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
68286
68355
|
|
|
68287
68356
|
:default: - Not assign variables
|
|
68288
68357
|
|
|
68289
|
-
:see: https://docs.aws.amazon.com/
|
|
68358
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
68290
68359
|
'''
|
|
68291
68360
|
result = self._values.get("assign")
|
|
68292
68361
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -68694,7 +68763,7 @@ class SageMakerCreateEndpointJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260)
|
|
|
68694
68763
|
|
|
68695
68764
|
:default: - Not assign variables
|
|
68696
68765
|
|
|
68697
|
-
:see: https://docs.aws.amazon.com/
|
|
68766
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
68698
68767
|
'''
|
|
68699
68768
|
result = self._values.get("assign")
|
|
68700
68769
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -69052,7 +69121,7 @@ class SageMakerCreateEndpointJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
69052
69121
|
|
|
69053
69122
|
:default: - Not assign variables
|
|
69054
69123
|
|
|
69055
|
-
:see: https://docs.aws.amazon.com/
|
|
69124
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
69056
69125
|
'''
|
|
69057
69126
|
result = self._values.get("assign")
|
|
69058
69127
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -69369,7 +69438,7 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
69369
69438
|
|
|
69370
69439
|
:default: - Not assign variables
|
|
69371
69440
|
|
|
69372
|
-
:see: https://docs.aws.amazon.com/
|
|
69441
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
69373
69442
|
'''
|
|
69374
69443
|
result = self._values.get("assign")
|
|
69375
69444
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -70140,7 +70209,7 @@ class SageMakerCreateModelJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
70140
70209
|
|
|
70141
70210
|
:default: - Not assign variables
|
|
70142
70211
|
|
|
70143
|
-
:see: https://docs.aws.amazon.com/
|
|
70212
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
70144
70213
|
'''
|
|
70145
70214
|
result = self._values.get("assign")
|
|
70146
70215
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -70593,7 +70662,7 @@ class SageMakerCreateModelJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
70593
70662
|
|
|
70594
70663
|
:default: - Not assign variables
|
|
70595
70664
|
|
|
70596
|
-
:see: https://docs.aws.amazon.com/
|
|
70665
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
70597
70666
|
'''
|
|
70598
70667
|
result = self._values.get("assign")
|
|
70599
70668
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -70990,7 +71059,7 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
70990
71059
|
|
|
70991
71060
|
:default: - Not assign variables
|
|
70992
71061
|
|
|
70993
|
-
:see: https://docs.aws.amazon.com/
|
|
71062
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
70994
71063
|
'''
|
|
70995
71064
|
result = self._values.get("assign")
|
|
70996
71065
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -71951,7 +72020,7 @@ class SageMakerCreateTrainingJobJsonPathProps(_TaskStateJsonPathBaseProps_57dc22
|
|
|
71951
72020
|
|
|
71952
72021
|
:default: - Not assign variables
|
|
71953
72022
|
|
|
71954
|
-
:see: https://docs.aws.amazon.com/
|
|
72023
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
71955
72024
|
'''
|
|
71956
72025
|
result = self._values.get("assign")
|
|
71957
72026
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -72545,7 +72614,7 @@ class SageMakerCreateTrainingJobJsonataProps(_TaskStateJsonataBaseProps_0e91775c
|
|
|
72545
72614
|
|
|
72546
72615
|
:default: - Not assign variables
|
|
72547
72616
|
|
|
72548
|
-
:see: https://docs.aws.amazon.com/
|
|
72617
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
72549
72618
|
'''
|
|
72550
72619
|
result = self._values.get("assign")
|
|
72551
72620
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -73039,7 +73108,7 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
73039
73108
|
|
|
73040
73109
|
:default: - Not assign variables
|
|
73041
73110
|
|
|
73042
|
-
:see: https://docs.aws.amazon.com/
|
|
73111
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
73043
73112
|
'''
|
|
73044
73113
|
result = self._values.get("assign")
|
|
73045
73114
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -73984,7 +74053,7 @@ class SageMakerCreateTransformJobJsonPathProps(_TaskStateJsonPathBaseProps_57dc2
|
|
|
73984
74053
|
|
|
73985
74054
|
:default: - Not assign variables
|
|
73986
74055
|
|
|
73987
|
-
:see: https://docs.aws.amazon.com/
|
|
74056
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
73988
74057
|
'''
|
|
73989
74058
|
result = self._values.get("assign")
|
|
73990
74059
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -74529,7 +74598,7 @@ class SageMakerCreateTransformJobJsonataProps(_TaskStateJsonataBaseProps_0e91775
|
|
|
74529
74598
|
|
|
74530
74599
|
:default: - Not assign variables
|
|
74531
74600
|
|
|
74532
|
-
:see: https://docs.aws.amazon.com/
|
|
74601
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
74533
74602
|
'''
|
|
74534
74603
|
result = self._values.get("assign")
|
|
74535
74604
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -75003,7 +75072,7 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
75003
75072
|
|
|
75004
75073
|
:default: - Not assign variables
|
|
75005
75074
|
|
|
75006
|
-
:see: https://docs.aws.amazon.com/
|
|
75075
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
75007
75076
|
'''
|
|
75008
75077
|
result = self._values.get("assign")
|
|
75009
75078
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -75706,7 +75775,7 @@ class SageMakerUpdateEndpointJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260)
|
|
|
75706
75775
|
|
|
75707
75776
|
:default: - Not assign variables
|
|
75708
75777
|
|
|
75709
|
-
:see: https://docs.aws.amazon.com/
|
|
75778
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
75710
75779
|
'''
|
|
75711
75780
|
result = self._values.get("assign")
|
|
75712
75781
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -76044,7 +76113,7 @@ class SageMakerUpdateEndpointJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
76044
76113
|
|
|
76045
76114
|
:default: - Not assign variables
|
|
76046
76115
|
|
|
76047
|
-
:see: https://docs.aws.amazon.com/
|
|
76116
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
76048
76117
|
'''
|
|
76049
76118
|
result = self._values.get("assign")
|
|
76050
76119
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -76343,7 +76412,7 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
76343
76412
|
|
|
76344
76413
|
:default: - Not assign variables
|
|
76345
76414
|
|
|
76346
|
-
:see: https://docs.aws.amazon.com/
|
|
76415
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
76347
76416
|
'''
|
|
76348
76417
|
result = self._values.get("assign")
|
|
76349
76418
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -77229,7 +77298,7 @@ class SnsPublishJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
77229
77298
|
|
|
77230
77299
|
:default: - Not assign variables
|
|
77231
77300
|
|
|
77232
|
-
:see: https://docs.aws.amazon.com/
|
|
77301
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
77233
77302
|
'''
|
|
77234
77303
|
result = self._values.get("assign")
|
|
77235
77304
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -77694,7 +77763,7 @@ class SnsPublishJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
77694
77763
|
|
|
77695
77764
|
:default: - Not assign variables
|
|
77696
77765
|
|
|
77697
|
-
:see: https://docs.aws.amazon.com/
|
|
77766
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
77698
77767
|
'''
|
|
77699
77768
|
result = self._values.get("assign")
|
|
77700
77769
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -78125,7 +78194,7 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
78125
78194
|
|
|
78126
78195
|
:default: - Not assign variables
|
|
78127
78196
|
|
|
78128
|
-
:see: https://docs.aws.amazon.com/
|
|
78197
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
78129
78198
|
'''
|
|
78130
78199
|
result = self._values.get("assign")
|
|
78131
78200
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -78995,7 +79064,7 @@ class SqsSendMessageJsonPathProps(_TaskStateJsonPathBaseProps_57dc2260):
|
|
|
78995
79064
|
|
|
78996
79065
|
:default: - Not assign variables
|
|
78997
79066
|
|
|
78998
|
-
:see: https://docs.aws.amazon.com/
|
|
79067
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
78999
79068
|
'''
|
|
79000
79069
|
result = self._values.get("assign")
|
|
79001
79070
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -79395,7 +79464,7 @@ class SqsSendMessageJsonataProps(_TaskStateJsonataBaseProps_0e91775c):
|
|
|
79395
79464
|
|
|
79396
79465
|
:default: - Not assign variables
|
|
79397
79466
|
|
|
79398
|
-
:see: https://docs.aws.amazon.com/
|
|
79467
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
79399
79468
|
'''
|
|
79400
79469
|
result = self._values.get("assign")
|
|
79401
79470
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -79763,7 +79832,7 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
79763
79832
|
|
|
79764
79833
|
:default: - Not assign variables
|
|
79765
79834
|
|
|
79766
|
-
:see: https://docs.aws.amazon.com/
|
|
79835
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
79767
79836
|
'''
|
|
79768
79837
|
result = self._values.get("assign")
|
|
79769
79838
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -80423,7 +80492,7 @@ class StepFunctionsInvokeActivityJsonPathProps(_TaskStateJsonPathBaseProps_57dc2
|
|
|
80423
80492
|
|
|
80424
80493
|
:default: - Not assign variables
|
|
80425
80494
|
|
|
80426
|
-
:see: https://docs.aws.amazon.com/
|
|
80495
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
80427
80496
|
'''
|
|
80428
80497
|
result = self._values.get("assign")
|
|
80429
80498
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -80772,7 +80841,7 @@ class StepFunctionsInvokeActivityJsonataProps(
|
|
|
80772
80841
|
|
|
80773
80842
|
:default: - Not assign variables
|
|
80774
80843
|
|
|
80775
|
-
:see: https://docs.aws.amazon.com/
|
|
80844
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
80776
80845
|
'''
|
|
80777
80846
|
result = self._values.get("assign")
|
|
80778
80847
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -81085,7 +81154,7 @@ class StepFunctionsInvokeActivityProps(
|
|
|
81085
81154
|
|
|
81086
81155
|
:default: - Not assign variables
|
|
81087
81156
|
|
|
81088
|
-
:see: https://docs.aws.amazon.com/
|
|
81157
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
81089
81158
|
'''
|
|
81090
81159
|
result = self._values.get("assign")
|
|
81091
81160
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -81763,7 +81832,7 @@ class StepFunctionsStartExecutionJsonPathProps(_TaskStateJsonPathBaseProps_57dc2
|
|
|
81763
81832
|
|
|
81764
81833
|
:default: - Not assign variables
|
|
81765
81834
|
|
|
81766
|
-
:see: https://docs.aws.amazon.com/
|
|
81835
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
81767
81836
|
'''
|
|
81768
81837
|
result = self._values.get("assign")
|
|
81769
81838
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -82147,7 +82216,7 @@ class StepFunctionsStartExecutionJsonataProps(_TaskStateJsonataBaseProps_0e91775
|
|
|
82147
82216
|
|
|
82148
82217
|
:default: - Not assign variables
|
|
82149
82218
|
|
|
82150
|
-
:see: https://docs.aws.amazon.com/
|
|
82219
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
82151
82220
|
'''
|
|
82152
82221
|
result = self._values.get("assign")
|
|
82153
82222
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -82504,7 +82573,7 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
82504
82573
|
|
|
82505
82574
|
:default: - Not assign variables
|
|
82506
82575
|
|
|
82507
|
-
:see: https://docs.aws.amazon.com/
|
|
82576
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
82508
82577
|
'''
|
|
82509
82578
|
result = self._values.get("assign")
|
|
82510
82579
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -84041,7 +84110,7 @@ class CallApiGatewayHttpApiEndpointJsonPathProps(
|
|
|
84041
84110
|
|
|
84042
84111
|
:default: - Not assign variables
|
|
84043
84112
|
|
|
84044
|
-
:see: https://docs.aws.amazon.com/
|
|
84113
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
84045
84114
|
'''
|
|
84046
84115
|
result = self._values.get("assign")
|
|
84047
84116
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -84494,7 +84563,7 @@ class CallApiGatewayHttpApiEndpointJsonataProps(
|
|
|
84494
84563
|
|
|
84495
84564
|
:default: - Not assign variables
|
|
84496
84565
|
|
|
84497
|
-
:see: https://docs.aws.amazon.com/
|
|
84566
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
84498
84567
|
'''
|
|
84499
84568
|
result = self._values.get("assign")
|
|
84500
84569
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -84631,6 +84700,7 @@ class CallApiGatewayHttpApiEndpointJsonataProps(
|
|
|
84631
84700
|
"request_body": "requestBody",
|
|
84632
84701
|
"api": "api",
|
|
84633
84702
|
"stage_name": "stageName",
|
|
84703
|
+
"region": "region",
|
|
84634
84704
|
},
|
|
84635
84705
|
)
|
|
84636
84706
|
class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
@@ -84662,6 +84732,7 @@ class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
|
84662
84732
|
request_body: typing.Optional[_TaskInput_91b91b91] = None,
|
|
84663
84733
|
api: _IRestApi_1f02523d,
|
|
84664
84734
|
stage_name: builtins.str,
|
|
84735
|
+
region: typing.Optional[builtins.str] = None,
|
|
84665
84736
|
) -> None:
|
|
84666
84737
|
'''Properties for calling an REST API Endpoint using JSONPath.
|
|
84667
84738
|
|
|
@@ -84687,6 +84758,7 @@ class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
|
84687
84758
|
:param request_body: HTTP Request body. Default: - No request body
|
|
84688
84759
|
:param api: API to call.
|
|
84689
84760
|
:param stage_name: Name of the stage where the API is deployed to in API Gateway.
|
|
84761
|
+
:param region: Specify a custom Region where the API is deployed, e.g. 'us-east-1'. Default: - Uses the Region of the stack containing the ``api``.
|
|
84690
84762
|
|
|
84691
84763
|
:exampleMetadata: infused
|
|
84692
84764
|
|
|
@@ -84732,6 +84804,7 @@ class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
|
84732
84804
|
check_type(argname="argument request_body", value=request_body, expected_type=type_hints["request_body"])
|
|
84733
84805
|
check_type(argname="argument api", value=api, expected_type=type_hints["api"])
|
|
84734
84806
|
check_type(argname="argument stage_name", value=stage_name, expected_type=type_hints["stage_name"])
|
|
84807
|
+
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
84735
84808
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
84736
84809
|
"method": method,
|
|
84737
84810
|
"api": api,
|
|
@@ -84775,6 +84848,8 @@ class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
|
84775
84848
|
self._values["query_parameters"] = query_parameters
|
|
84776
84849
|
if request_body is not None:
|
|
84777
84850
|
self._values["request_body"] = request_body
|
|
84851
|
+
if region is not None:
|
|
84852
|
+
self._values["region"] = region
|
|
84778
84853
|
|
|
84779
84854
|
@builtins.property
|
|
84780
84855
|
def comment(self) -> typing.Optional[builtins.str]:
|
|
@@ -84896,7 +84971,7 @@ class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
|
84896
84971
|
|
|
84897
84972
|
:default: - Not assign variables
|
|
84898
84973
|
|
|
84899
|
-
:see: https://docs.aws.amazon.com/
|
|
84974
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
84900
84975
|
'''
|
|
84901
84976
|
result = self._values.get("assign")
|
|
84902
84977
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -85019,6 +85094,15 @@ class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
|
85019
85094
|
assert result is not None, "Required property 'stage_name' is missing"
|
|
85020
85095
|
return typing.cast(builtins.str, result)
|
|
85021
85096
|
|
|
85097
|
+
@builtins.property
|
|
85098
|
+
def region(self) -> typing.Optional[builtins.str]:
|
|
85099
|
+
'''Specify a custom Region where the API is deployed, e.g. 'us-east-1'.
|
|
85100
|
+
|
|
85101
|
+
:default: - Uses the Region of the stack containing the ``api``.
|
|
85102
|
+
'''
|
|
85103
|
+
result = self._values.get("region")
|
|
85104
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
85105
|
+
|
|
85022
85106
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
85023
85107
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
85024
85108
|
|
|
@@ -85056,6 +85140,7 @@ class CallApiGatewayRestApiEndpointJsonPathProps(
|
|
|
85056
85140
|
"request_body": "requestBody",
|
|
85057
85141
|
"api": "api",
|
|
85058
85142
|
"stage_name": "stageName",
|
|
85143
|
+
"region": "region",
|
|
85059
85144
|
},
|
|
85060
85145
|
)
|
|
85061
85146
|
class CallApiGatewayRestApiEndpointJsonataProps(
|
|
@@ -85084,6 +85169,7 @@ class CallApiGatewayRestApiEndpointJsonataProps(
|
|
|
85084
85169
|
request_body: typing.Optional[_TaskInput_91b91b91] = None,
|
|
85085
85170
|
api: _IRestApi_1f02523d,
|
|
85086
85171
|
stage_name: builtins.str,
|
|
85172
|
+
region: typing.Optional[builtins.str] = None,
|
|
85087
85173
|
) -> None:
|
|
85088
85174
|
'''Properties for calling an REST API Endpoint using JSONata.
|
|
85089
85175
|
|
|
@@ -85106,6 +85192,7 @@ class CallApiGatewayRestApiEndpointJsonataProps(
|
|
|
85106
85192
|
:param request_body: HTTP Request body. Default: - No request body
|
|
85107
85193
|
:param api: API to call.
|
|
85108
85194
|
:param stage_name: Name of the stage where the API is deployed to in API Gateway.
|
|
85195
|
+
:param region: Specify a custom Region where the API is deployed, e.g. 'us-east-1'. Default: - Uses the Region of the stack containing the ``api``.
|
|
85109
85196
|
|
|
85110
85197
|
:exampleMetadata: infused
|
|
85111
85198
|
|
|
@@ -85148,6 +85235,7 @@ class CallApiGatewayRestApiEndpointJsonataProps(
|
|
|
85148
85235
|
check_type(argname="argument request_body", value=request_body, expected_type=type_hints["request_body"])
|
|
85149
85236
|
check_type(argname="argument api", value=api, expected_type=type_hints["api"])
|
|
85150
85237
|
check_type(argname="argument stage_name", value=stage_name, expected_type=type_hints["stage_name"])
|
|
85238
|
+
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
85151
85239
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
85152
85240
|
"method": method,
|
|
85153
85241
|
"api": api,
|
|
@@ -85185,6 +85273,8 @@ class CallApiGatewayRestApiEndpointJsonataProps(
|
|
|
85185
85273
|
self._values["query_parameters"] = query_parameters
|
|
85186
85274
|
if request_body is not None:
|
|
85187
85275
|
self._values["request_body"] = request_body
|
|
85276
|
+
if region is not None:
|
|
85277
|
+
self._values["region"] = region
|
|
85188
85278
|
|
|
85189
85279
|
@builtins.property
|
|
85190
85280
|
def comment(self) -> typing.Optional[builtins.str]:
|
|
@@ -85306,7 +85396,7 @@ class CallApiGatewayRestApiEndpointJsonataProps(
|
|
|
85306
85396
|
|
|
85307
85397
|
:default: - Not assign variables
|
|
85308
85398
|
|
|
85309
|
-
:see: https://docs.aws.amazon.com/
|
|
85399
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html
|
|
85310
85400
|
'''
|
|
85311
85401
|
result = self._values.get("assign")
|
|
85312
85402
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -85394,6 +85484,15 @@ class CallApiGatewayRestApiEndpointJsonataProps(
|
|
|
85394
85484
|
assert result is not None, "Required property 'stage_name' is missing"
|
|
85395
85485
|
return typing.cast(builtins.str, result)
|
|
85396
85486
|
|
|
85487
|
+
@builtins.property
|
|
85488
|
+
def region(self) -> typing.Optional[builtins.str]:
|
|
85489
|
+
'''Specify a custom Region where the API is deployed, e.g. 'us-east-1'.
|
|
85490
|
+
|
|
85491
|
+
:default: - Uses the Region of the stack containing the ``api``.
|
|
85492
|
+
'''
|
|
85493
|
+
result = self._values.get("region")
|
|
85494
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
85495
|
+
|
|
85397
85496
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
85398
85497
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
85399
85498
|
|
|
@@ -87126,6 +87225,7 @@ def _typecheckingstub__a76886b18651b0cbd9c7ad80e6a462a8540904f212eeb56575f9a2c9a
|
|
|
87126
87225
|
*,
|
|
87127
87226
|
api: _IRestApi_1f02523d,
|
|
87128
87227
|
stage_name: builtins.str,
|
|
87228
|
+
region: typing.Optional[builtins.str] = None,
|
|
87129
87229
|
result_path: typing.Optional[builtins.str] = None,
|
|
87130
87230
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
87131
87231
|
method: HttpMethod,
|
|
@@ -87157,6 +87257,7 @@ def _typecheckingstub__d2442fdcffc01527df3494d29d520e172a5fc4b5567d13ab1172c04a4
|
|
|
87157
87257
|
*,
|
|
87158
87258
|
api: _IRestApi_1f02523d,
|
|
87159
87259
|
stage_name: builtins.str,
|
|
87260
|
+
region: typing.Optional[builtins.str] = None,
|
|
87160
87261
|
method: HttpMethod,
|
|
87161
87262
|
api_path: typing.Optional[builtins.str] = None,
|
|
87162
87263
|
auth_type: typing.Optional[AuthType] = None,
|
|
@@ -87184,6 +87285,7 @@ def _typecheckingstub__e4dc06a85acae89b8512aa5463430dbf35b4fed27323d6928f986b34f
|
|
|
87184
87285
|
*,
|
|
87185
87286
|
api: _IRestApi_1f02523d,
|
|
87186
87287
|
stage_name: builtins.str,
|
|
87288
|
+
region: typing.Optional[builtins.str] = None,
|
|
87187
87289
|
result_path: typing.Optional[builtins.str] = None,
|
|
87188
87290
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
87189
87291
|
method: HttpMethod,
|
|
@@ -87212,6 +87314,7 @@ def _typecheckingstub__f3e7028403a9fb243cf40cd7590bda960bfb12daacd7648c713599971
|
|
|
87212
87314
|
*,
|
|
87213
87315
|
api: _IRestApi_1f02523d,
|
|
87214
87316
|
stage_name: builtins.str,
|
|
87317
|
+
region: typing.Optional[builtins.str] = None,
|
|
87215
87318
|
) -> None:
|
|
87216
87319
|
"""Type checking stubs"""
|
|
87217
87320
|
pass
|
|
@@ -87241,6 +87344,7 @@ def _typecheckingstub__f5e083701921cac85bdeb9778c84e51785062fe16c2575a0df424f5a5
|
|
|
87241
87344
|
request_body: typing.Optional[_TaskInput_91b91b91] = None,
|
|
87242
87345
|
api: _IRestApi_1f02523d,
|
|
87243
87346
|
stage_name: builtins.str,
|
|
87347
|
+
region: typing.Optional[builtins.str] = None,
|
|
87244
87348
|
) -> None:
|
|
87245
87349
|
"""Type checking stubs"""
|
|
87246
87350
|
pass
|
|
@@ -94268,6 +94372,7 @@ def _typecheckingstub__7b8b5896877eb92cc0432b392e54ec4c2a6e2ab6c4c1267937be8d816
|
|
|
94268
94372
|
request_body: typing.Optional[_TaskInput_91b91b91] = None,
|
|
94269
94373
|
api: _IRestApi_1f02523d,
|
|
94270
94374
|
stage_name: builtins.str,
|
|
94375
|
+
region: typing.Optional[builtins.str] = None,
|
|
94271
94376
|
) -> None:
|
|
94272
94377
|
"""Type checking stubs"""
|
|
94273
94378
|
pass
|
|
@@ -94293,6 +94398,7 @@ def _typecheckingstub__b6847d83cb6b7fc3dd5f315ea3f38569ba494b7f17388e9222260ff45
|
|
|
94293
94398
|
request_body: typing.Optional[_TaskInput_91b91b91] = None,
|
|
94294
94399
|
api: _IRestApi_1f02523d,
|
|
94295
94400
|
stage_name: builtins.str,
|
|
94401
|
+
region: typing.Optional[builtins.str] = None,
|
|
94296
94402
|
) -> None:
|
|
94297
94403
|
"""Type checking stubs"""
|
|
94298
94404
|
pass
|