aws-cdk-lib 2.100.0__py3-none-any.whl → 2.101.1__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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.100.0.jsii.tgz → aws-cdk-lib@2.101.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +0 -8
- aws_cdk/aws_appconfig/__init__.py +101 -18
- aws_cdk/aws_apprunner/__init__.py +5 -2
- aws_cdk/aws_appstream/__init__.py +18 -26
- aws_cdk/aws_cloudfront/__init__.py +251 -3
- aws_cdk/aws_cloudtrail/__init__.py +47 -3
- aws_cdk/aws_cognito/__init__.py +414 -8
- aws_cdk/aws_dlm/__init__.py +10 -9
- aws_cdk/aws_ec2/__init__.py +308 -179
- aws_cdk/aws_events/__init__.py +62 -86
- aws_cdk/aws_fms/__init__.py +3 -3
- aws_cdk/aws_grafana/__init__.py +4 -4
- aws_cdk/aws_greengrassv2/__init__.py +1 -8
- aws_cdk/aws_iot/__init__.py +714 -0
- aws_cdk/aws_iotsitewise/__init__.py +3 -3
- aws_cdk/aws_kinesisanalytics/__init__.py +15 -15
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +15 -15
- aws_cdk/aws_kinesisfirehose/__init__.py +87 -40
- aws_cdk/aws_lambda/__init__.py +34 -4
- aws_cdk/aws_lightsail/__init__.py +3 -1
- aws_cdk/aws_mediatailor/__init__.py +24 -1
- aws_cdk/aws_quicksight/__init__.py +2508 -55
- aws_cdk/aws_rds/__init__.py +121 -51
- aws_cdk/aws_sagemaker/__init__.py +5 -3
- aws_cdk/aws_sns/__init__.py +42 -5
- aws_cdk/aws_ssm/__init__.py +0 -8
- aws_cdk/aws_stepfunctions/__init__.py +233 -16
- aws_cdk/aws_stepfunctions_tasks/__init__.py +926 -27
- aws_cdk/aws_transfer/__init__.py +4 -4
- aws_cdk/aws_workspacesweb/__init__.py +3 -3
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/RECORD +38 -38
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/top_level.txt +0 -0
|
@@ -271,7 +271,8 @@ start_query_execution_job = tasks.AthenaStartQueryExecution(self, "Start Athena
|
|
|
271
271
|
bucket_name="query-results-bucket",
|
|
272
272
|
object_key="folder"
|
|
273
273
|
)
|
|
274
|
-
)
|
|
274
|
+
),
|
|
275
|
+
execution_parameters=["param1", "param2"]
|
|
275
276
|
)
|
|
276
277
|
```
|
|
277
278
|
|
|
@@ -1834,6 +1835,7 @@ class AthenaGetQueryExecution(
|
|
|
1834
1835
|
output_path: typing.Optional[builtins.str] = None,
|
|
1835
1836
|
result_path: typing.Optional[builtins.str] = None,
|
|
1836
1837
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
1838
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
1837
1839
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
1838
1840
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
1839
1841
|
) -> None:
|
|
@@ -1850,6 +1852,7 @@ class AthenaGetQueryExecution(
|
|
|
1850
1852
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
1851
1853
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
1852
1854
|
: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
|
|
1855
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
1853
1856
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
1854
1857
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
1855
1858
|
'''
|
|
@@ -1868,6 +1871,7 @@ class AthenaGetQueryExecution(
|
|
|
1868
1871
|
output_path=output_path,
|
|
1869
1872
|
result_path=result_path,
|
|
1870
1873
|
result_selector=result_selector,
|
|
1874
|
+
state_name=state_name,
|
|
1871
1875
|
task_timeout=task_timeout,
|
|
1872
1876
|
timeout=timeout,
|
|
1873
1877
|
)
|
|
@@ -1898,6 +1902,7 @@ class AthenaGetQueryExecution(
|
|
|
1898
1902
|
"output_path": "outputPath",
|
|
1899
1903
|
"result_path": "resultPath",
|
|
1900
1904
|
"result_selector": "resultSelector",
|
|
1905
|
+
"state_name": "stateName",
|
|
1901
1906
|
"task_timeout": "taskTimeout",
|
|
1902
1907
|
"timeout": "timeout",
|
|
1903
1908
|
"query_execution_id": "queryExecutionId",
|
|
@@ -1916,6 +1921,7 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
1916
1921
|
output_path: typing.Optional[builtins.str] = None,
|
|
1917
1922
|
result_path: typing.Optional[builtins.str] = None,
|
|
1918
1923
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
1924
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
1919
1925
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
1920
1926
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
1921
1927
|
query_execution_id: builtins.str,
|
|
@@ -1931,6 +1937,7 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
1931
1937
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
1932
1938
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
1933
1939
|
: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
|
|
1940
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
1934
1941
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
1935
1942
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
1936
1943
|
:param query_execution_id: Query that will be retrieved. Example value: ``adfsaf-23trf23-f23rt23``
|
|
@@ -1956,6 +1963,7 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
1956
1963
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
1957
1964
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
1958
1965
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
1966
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
1959
1967
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
1960
1968
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
1961
1969
|
check_type(argname="argument query_execution_id", value=query_execution_id, expected_type=type_hints["query_execution_id"])
|
|
@@ -1980,6 +1988,8 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
1980
1988
|
self._values["result_path"] = result_path
|
|
1981
1989
|
if result_selector is not None:
|
|
1982
1990
|
self._values["result_selector"] = result_selector
|
|
1991
|
+
if state_name is not None:
|
|
1992
|
+
self._values["state_name"] = state_name
|
|
1983
1993
|
if task_timeout is not None:
|
|
1984
1994
|
self._values["task_timeout"] = task_timeout
|
|
1985
1995
|
if timeout is not None:
|
|
@@ -2104,6 +2114,15 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2104
2114
|
result = self._values.get("result_selector")
|
|
2105
2115
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
2106
2116
|
|
|
2117
|
+
@builtins.property
|
|
2118
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
2119
|
+
'''Optional name for this state.
|
|
2120
|
+
|
|
2121
|
+
:default: - The construct ID will be used as state name
|
|
2122
|
+
'''
|
|
2123
|
+
result = self._values.get("state_name")
|
|
2124
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2125
|
+
|
|
2107
2126
|
@builtins.property
|
|
2108
2127
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
2109
2128
|
'''Timeout for the task.
|
|
@@ -2185,6 +2204,7 @@ class AthenaGetQueryResults(
|
|
|
2185
2204
|
output_path: typing.Optional[builtins.str] = None,
|
|
2186
2205
|
result_path: typing.Optional[builtins.str] = None,
|
|
2187
2206
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
2207
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
2188
2208
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
2189
2209
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
2190
2210
|
) -> None:
|
|
@@ -2203,6 +2223,7 @@ class AthenaGetQueryResults(
|
|
|
2203
2223
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
2204
2224
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
2205
2225
|
: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
|
|
2226
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
2206
2227
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2207
2228
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
2208
2229
|
'''
|
|
@@ -2223,6 +2244,7 @@ class AthenaGetQueryResults(
|
|
|
2223
2244
|
output_path=output_path,
|
|
2224
2245
|
result_path=result_path,
|
|
2225
2246
|
result_selector=result_selector,
|
|
2247
|
+
state_name=state_name,
|
|
2226
2248
|
task_timeout=task_timeout,
|
|
2227
2249
|
timeout=timeout,
|
|
2228
2250
|
)
|
|
@@ -2253,6 +2275,7 @@ class AthenaGetQueryResults(
|
|
|
2253
2275
|
"output_path": "outputPath",
|
|
2254
2276
|
"result_path": "resultPath",
|
|
2255
2277
|
"result_selector": "resultSelector",
|
|
2278
|
+
"state_name": "stateName",
|
|
2256
2279
|
"task_timeout": "taskTimeout",
|
|
2257
2280
|
"timeout": "timeout",
|
|
2258
2281
|
"query_execution_id": "queryExecutionId",
|
|
@@ -2273,6 +2296,7 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2273
2296
|
output_path: typing.Optional[builtins.str] = None,
|
|
2274
2297
|
result_path: typing.Optional[builtins.str] = None,
|
|
2275
2298
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
2299
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
2276
2300
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
2277
2301
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
2278
2302
|
query_execution_id: builtins.str,
|
|
@@ -2290,6 +2314,7 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2290
2314
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
2291
2315
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
2292
2316
|
: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
|
|
2317
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
2293
2318
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2294
2319
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
2295
2320
|
:param query_execution_id: Query that will be retrieved. Example value: ``adfsaf-23trf23-f23rt23``
|
|
@@ -2317,6 +2342,7 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2317
2342
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
2318
2343
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
2319
2344
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
2345
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
2320
2346
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
2321
2347
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
2322
2348
|
check_type(argname="argument query_execution_id", value=query_execution_id, expected_type=type_hints["query_execution_id"])
|
|
@@ -2343,6 +2369,8 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2343
2369
|
self._values["result_path"] = result_path
|
|
2344
2370
|
if result_selector is not None:
|
|
2345
2371
|
self._values["result_selector"] = result_selector
|
|
2372
|
+
if state_name is not None:
|
|
2373
|
+
self._values["state_name"] = state_name
|
|
2346
2374
|
if task_timeout is not None:
|
|
2347
2375
|
self._values["task_timeout"] = task_timeout
|
|
2348
2376
|
if timeout is not None:
|
|
@@ -2471,6 +2499,15 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2471
2499
|
result = self._values.get("result_selector")
|
|
2472
2500
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
2473
2501
|
|
|
2502
|
+
@builtins.property
|
|
2503
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
2504
|
+
'''Optional name for this state.
|
|
2505
|
+
|
|
2506
|
+
:default: - The construct ID will be used as state name
|
|
2507
|
+
'''
|
|
2508
|
+
result = self._values.get("state_name")
|
|
2509
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2510
|
+
|
|
2474
2511
|
@builtins.property
|
|
2475
2512
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
2476
2513
|
'''Timeout for the task.
|
|
@@ -2561,7 +2598,8 @@ class AthenaStartQueryExecution(
|
|
|
2561
2598
|
bucket_name="query-results-bucket",
|
|
2562
2599
|
object_key="folder"
|
|
2563
2600
|
)
|
|
2564
|
-
)
|
|
2601
|
+
),
|
|
2602
|
+
execution_parameters=["param1", "param2"]
|
|
2565
2603
|
)
|
|
2566
2604
|
'''
|
|
2567
2605
|
|
|
@@ -2572,6 +2610,7 @@ class AthenaStartQueryExecution(
|
|
|
2572
2610
|
*,
|
|
2573
2611
|
query_string: builtins.str,
|
|
2574
2612
|
client_request_token: typing.Optional[builtins.str] = None,
|
|
2613
|
+
execution_parameters: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2575
2614
|
query_execution_context: typing.Optional[typing.Union["QueryExecutionContext", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
2576
2615
|
result_configuration: typing.Optional[typing.Union["ResultConfiguration", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
2577
2616
|
work_group: typing.Optional[builtins.str] = None,
|
|
@@ -2584,6 +2623,7 @@ class AthenaStartQueryExecution(
|
|
|
2584
2623
|
output_path: typing.Optional[builtins.str] = None,
|
|
2585
2624
|
result_path: typing.Optional[builtins.str] = None,
|
|
2586
2625
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
2626
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
2587
2627
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
2588
2628
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
2589
2629
|
) -> None:
|
|
@@ -2592,6 +2632,7 @@ class AthenaStartQueryExecution(
|
|
|
2592
2632
|
:param id: Descriptive identifier for this chainable.
|
|
2593
2633
|
:param query_string: Query that will be started.
|
|
2594
2634
|
:param client_request_token: Unique string string to ensure idempotence. Default: - No client request token
|
|
2635
|
+
:param execution_parameters: A list of values for the parameters in a query. The values are applied sequentially to the parameters in the query in the order in which the parameters occur. Default: - No parameters
|
|
2595
2636
|
:param query_execution_context: Database within which query executes. Default: - No query execution context
|
|
2596
2637
|
:param result_configuration: Configuration on how and where to save query. Default: - No result configuration
|
|
2597
2638
|
:param work_group: Configuration on how and where to save query. Default: - No work group
|
|
@@ -2604,6 +2645,7 @@ class AthenaStartQueryExecution(
|
|
|
2604
2645
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
2605
2646
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
2606
2647
|
: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
|
|
2648
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
2607
2649
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2608
2650
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
2609
2651
|
'''
|
|
@@ -2614,6 +2656,7 @@ class AthenaStartQueryExecution(
|
|
|
2614
2656
|
props = AthenaStartQueryExecutionProps(
|
|
2615
2657
|
query_string=query_string,
|
|
2616
2658
|
client_request_token=client_request_token,
|
|
2659
|
+
execution_parameters=execution_parameters,
|
|
2617
2660
|
query_execution_context=query_execution_context,
|
|
2618
2661
|
result_configuration=result_configuration,
|
|
2619
2662
|
work_group=work_group,
|
|
@@ -2626,6 +2669,7 @@ class AthenaStartQueryExecution(
|
|
|
2626
2669
|
output_path=output_path,
|
|
2627
2670
|
result_path=result_path,
|
|
2628
2671
|
result_selector=result_selector,
|
|
2672
|
+
state_name=state_name,
|
|
2629
2673
|
task_timeout=task_timeout,
|
|
2630
2674
|
timeout=timeout,
|
|
2631
2675
|
)
|
|
@@ -2656,10 +2700,12 @@ class AthenaStartQueryExecution(
|
|
|
2656
2700
|
"output_path": "outputPath",
|
|
2657
2701
|
"result_path": "resultPath",
|
|
2658
2702
|
"result_selector": "resultSelector",
|
|
2703
|
+
"state_name": "stateName",
|
|
2659
2704
|
"task_timeout": "taskTimeout",
|
|
2660
2705
|
"timeout": "timeout",
|
|
2661
2706
|
"query_string": "queryString",
|
|
2662
2707
|
"client_request_token": "clientRequestToken",
|
|
2708
|
+
"execution_parameters": "executionParameters",
|
|
2663
2709
|
"query_execution_context": "queryExecutionContext",
|
|
2664
2710
|
"result_configuration": "resultConfiguration",
|
|
2665
2711
|
"work_group": "workGroup",
|
|
@@ -2678,10 +2724,12 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2678
2724
|
output_path: typing.Optional[builtins.str] = None,
|
|
2679
2725
|
result_path: typing.Optional[builtins.str] = None,
|
|
2680
2726
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
2727
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
2681
2728
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
2682
2729
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
2683
2730
|
query_string: builtins.str,
|
|
2684
2731
|
client_request_token: typing.Optional[builtins.str] = None,
|
|
2732
|
+
execution_parameters: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2685
2733
|
query_execution_context: typing.Optional[typing.Union["QueryExecutionContext", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
2686
2734
|
result_configuration: typing.Optional[typing.Union["ResultConfiguration", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
2687
2735
|
work_group: typing.Optional[builtins.str] = None,
|
|
@@ -2697,10 +2745,12 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2697
2745
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
2698
2746
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
2699
2747
|
: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
|
|
2748
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
2700
2749
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2701
2750
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
2702
2751
|
:param query_string: Query that will be started.
|
|
2703
2752
|
:param client_request_token: Unique string string to ensure idempotence. Default: - No client request token
|
|
2753
|
+
:param execution_parameters: A list of values for the parameters in a query. The values are applied sequentially to the parameters in the query in the order in which the parameters occur. Default: - No parameters
|
|
2704
2754
|
:param query_execution_context: Database within which query executes. Default: - No query execution context
|
|
2705
2755
|
:param result_configuration: Configuration on how and where to save query. Default: - No result configuration
|
|
2706
2756
|
:param work_group: Configuration on how and where to save query. Default: - No work group
|
|
@@ -2722,7 +2772,8 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2722
2772
|
bucket_name="query-results-bucket",
|
|
2723
2773
|
object_key="folder"
|
|
2724
2774
|
)
|
|
2725
|
-
)
|
|
2775
|
+
),
|
|
2776
|
+
execution_parameters=["param1", "param2"]
|
|
2726
2777
|
)
|
|
2727
2778
|
'''
|
|
2728
2779
|
if isinstance(credentials, dict):
|
|
@@ -2742,10 +2793,12 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2742
2793
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
2743
2794
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
2744
2795
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
2796
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
2745
2797
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
2746
2798
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
2747
2799
|
check_type(argname="argument query_string", value=query_string, expected_type=type_hints["query_string"])
|
|
2748
2800
|
check_type(argname="argument client_request_token", value=client_request_token, expected_type=type_hints["client_request_token"])
|
|
2801
|
+
check_type(argname="argument execution_parameters", value=execution_parameters, expected_type=type_hints["execution_parameters"])
|
|
2749
2802
|
check_type(argname="argument query_execution_context", value=query_execution_context, expected_type=type_hints["query_execution_context"])
|
|
2750
2803
|
check_type(argname="argument result_configuration", value=result_configuration, expected_type=type_hints["result_configuration"])
|
|
2751
2804
|
check_type(argname="argument work_group", value=work_group, expected_type=type_hints["work_group"])
|
|
@@ -2770,12 +2823,16 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2770
2823
|
self._values["result_path"] = result_path
|
|
2771
2824
|
if result_selector is not None:
|
|
2772
2825
|
self._values["result_selector"] = result_selector
|
|
2826
|
+
if state_name is not None:
|
|
2827
|
+
self._values["state_name"] = state_name
|
|
2773
2828
|
if task_timeout is not None:
|
|
2774
2829
|
self._values["task_timeout"] = task_timeout
|
|
2775
2830
|
if timeout is not None:
|
|
2776
2831
|
self._values["timeout"] = timeout
|
|
2777
2832
|
if client_request_token is not None:
|
|
2778
2833
|
self._values["client_request_token"] = client_request_token
|
|
2834
|
+
if execution_parameters is not None:
|
|
2835
|
+
self._values["execution_parameters"] = execution_parameters
|
|
2779
2836
|
if query_execution_context is not None:
|
|
2780
2837
|
self._values["query_execution_context"] = query_execution_context
|
|
2781
2838
|
if result_configuration is not None:
|
|
@@ -2902,6 +2959,15 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2902
2959
|
result = self._values.get("result_selector")
|
|
2903
2960
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
2904
2961
|
|
|
2962
|
+
@builtins.property
|
|
2963
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
2964
|
+
'''Optional name for this state.
|
|
2965
|
+
|
|
2966
|
+
:default: - The construct ID will be used as state name
|
|
2967
|
+
'''
|
|
2968
|
+
result = self._values.get("state_name")
|
|
2969
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2970
|
+
|
|
2905
2971
|
@builtins.property
|
|
2906
2972
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
2907
2973
|
'''Timeout for the task.
|
|
@@ -2943,6 +3009,18 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2943
3009
|
result = self._values.get("client_request_token")
|
|
2944
3010
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2945
3011
|
|
|
3012
|
+
@builtins.property
|
|
3013
|
+
def execution_parameters(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
3014
|
+
'''A list of values for the parameters in a query.
|
|
3015
|
+
|
|
3016
|
+
The values are applied sequentially to the parameters in the query in the order
|
|
3017
|
+
in which the parameters occur.
|
|
3018
|
+
|
|
3019
|
+
:default: - No parameters
|
|
3020
|
+
'''
|
|
3021
|
+
result = self._values.get("execution_parameters")
|
|
3022
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
3023
|
+
|
|
2946
3024
|
@builtins.property
|
|
2947
3025
|
def query_execution_context(self) -> typing.Optional["QueryExecutionContext"]:
|
|
2948
3026
|
'''Database within which query executes.
|
|
@@ -3014,6 +3092,7 @@ class AthenaStopQueryExecution(
|
|
|
3014
3092
|
output_path: typing.Optional[builtins.str] = None,
|
|
3015
3093
|
result_path: typing.Optional[builtins.str] = None,
|
|
3016
3094
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
3095
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
3017
3096
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
3018
3097
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
3019
3098
|
) -> None:
|
|
@@ -3030,6 +3109,7 @@ class AthenaStopQueryExecution(
|
|
|
3030
3109
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
3031
3110
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
3032
3111
|
: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
|
|
3112
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
3033
3113
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
3034
3114
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
3035
3115
|
'''
|
|
@@ -3048,6 +3128,7 @@ class AthenaStopQueryExecution(
|
|
|
3048
3128
|
output_path=output_path,
|
|
3049
3129
|
result_path=result_path,
|
|
3050
3130
|
result_selector=result_selector,
|
|
3131
|
+
state_name=state_name,
|
|
3051
3132
|
task_timeout=task_timeout,
|
|
3052
3133
|
timeout=timeout,
|
|
3053
3134
|
)
|
|
@@ -3078,6 +3159,7 @@ class AthenaStopQueryExecution(
|
|
|
3078
3159
|
"output_path": "outputPath",
|
|
3079
3160
|
"result_path": "resultPath",
|
|
3080
3161
|
"result_selector": "resultSelector",
|
|
3162
|
+
"state_name": "stateName",
|
|
3081
3163
|
"task_timeout": "taskTimeout",
|
|
3082
3164
|
"timeout": "timeout",
|
|
3083
3165
|
"query_execution_id": "queryExecutionId",
|
|
@@ -3096,6 +3178,7 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3096
3178
|
output_path: typing.Optional[builtins.str] = None,
|
|
3097
3179
|
result_path: typing.Optional[builtins.str] = None,
|
|
3098
3180
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
3181
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
3099
3182
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
3100
3183
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
3101
3184
|
query_execution_id: builtins.str,
|
|
@@ -3111,6 +3194,7 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3111
3194
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
3112
3195
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
3113
3196
|
: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
|
|
3197
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
3114
3198
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
3115
3199
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
3116
3200
|
:param query_execution_id: Query that will be stopped.
|
|
@@ -3136,6 +3220,7 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3136
3220
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
3137
3221
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
3138
3222
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
3223
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
3139
3224
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
3140
3225
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
3141
3226
|
check_type(argname="argument query_execution_id", value=query_execution_id, expected_type=type_hints["query_execution_id"])
|
|
@@ -3160,6 +3245,8 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3160
3245
|
self._values["result_path"] = result_path
|
|
3161
3246
|
if result_selector is not None:
|
|
3162
3247
|
self._values["result_selector"] = result_selector
|
|
3248
|
+
if state_name is not None:
|
|
3249
|
+
self._values["state_name"] = state_name
|
|
3163
3250
|
if task_timeout is not None:
|
|
3164
3251
|
self._values["task_timeout"] = task_timeout
|
|
3165
3252
|
if timeout is not None:
|
|
@@ -3284,6 +3371,15 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3284
3371
|
result = self._values.get("result_selector")
|
|
3285
3372
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
3286
3373
|
|
|
3374
|
+
@builtins.property
|
|
3375
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
3376
|
+
'''Optional name for this state.
|
|
3377
|
+
|
|
3378
|
+
:default: - The construct ID will be used as state name
|
|
3379
|
+
'''
|
|
3380
|
+
result = self._values.get("state_name")
|
|
3381
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3382
|
+
|
|
3287
3383
|
@builtins.property
|
|
3288
3384
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
3289
3385
|
'''Timeout for the task.
|
|
@@ -3625,6 +3721,7 @@ class BatchSubmitJob(
|
|
|
3625
3721
|
output_path: typing.Optional[builtins.str] = None,
|
|
3626
3722
|
result_path: typing.Optional[builtins.str] = None,
|
|
3627
3723
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
3724
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
3628
3725
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
3629
3726
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
3630
3727
|
) -> None:
|
|
@@ -3649,6 +3746,7 @@ class BatchSubmitJob(
|
|
|
3649
3746
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
3650
3747
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
3651
3748
|
: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
|
|
3749
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
3652
3750
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
3653
3751
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
3654
3752
|
'''
|
|
@@ -3675,6 +3773,7 @@ class BatchSubmitJob(
|
|
|
3675
3773
|
output_path=output_path,
|
|
3676
3774
|
result_path=result_path,
|
|
3677
3775
|
result_selector=result_selector,
|
|
3776
|
+
state_name=state_name,
|
|
3678
3777
|
task_timeout=task_timeout,
|
|
3679
3778
|
timeout=timeout,
|
|
3680
3779
|
)
|
|
@@ -3705,6 +3804,7 @@ class BatchSubmitJob(
|
|
|
3705
3804
|
"output_path": "outputPath",
|
|
3706
3805
|
"result_path": "resultPath",
|
|
3707
3806
|
"result_selector": "resultSelector",
|
|
3807
|
+
"state_name": "stateName",
|
|
3708
3808
|
"task_timeout": "taskTimeout",
|
|
3709
3809
|
"timeout": "timeout",
|
|
3710
3810
|
"job_definition_arn": "jobDefinitionArn",
|
|
@@ -3731,6 +3831,7 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3731
3831
|
output_path: typing.Optional[builtins.str] = None,
|
|
3732
3832
|
result_path: typing.Optional[builtins.str] = None,
|
|
3733
3833
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
3834
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
3734
3835
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
3735
3836
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
3736
3837
|
job_definition_arn: builtins.str,
|
|
@@ -3754,6 +3855,7 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3754
3855
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
3755
3856
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
3756
3857
|
: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
|
|
3858
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
3757
3859
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
3758
3860
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
3759
3861
|
:param job_definition_arn: The arn of the job definition used by this job.
|
|
@@ -3796,6 +3898,7 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3796
3898
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
3797
3899
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
3798
3900
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
3901
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
3799
3902
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
3800
3903
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
3801
3904
|
check_type(argname="argument job_definition_arn", value=job_definition_arn, expected_type=type_hints["job_definition_arn"])
|
|
@@ -3830,6 +3933,8 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3830
3933
|
self._values["result_path"] = result_path
|
|
3831
3934
|
if result_selector is not None:
|
|
3832
3935
|
self._values["result_selector"] = result_selector
|
|
3936
|
+
if state_name is not None:
|
|
3937
|
+
self._values["state_name"] = state_name
|
|
3833
3938
|
if task_timeout is not None:
|
|
3834
3939
|
self._values["task_timeout"] = task_timeout
|
|
3835
3940
|
if timeout is not None:
|
|
@@ -3966,6 +4071,15 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3966
4071
|
result = self._values.get("result_selector")
|
|
3967
4072
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
3968
4073
|
|
|
4074
|
+
@builtins.property
|
|
4075
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
4076
|
+
'''Optional name for this state.
|
|
4077
|
+
|
|
4078
|
+
:default: - The construct ID will be used as state name
|
|
4079
|
+
'''
|
|
4080
|
+
result = self._values.get("state_name")
|
|
4081
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4082
|
+
|
|
3969
4083
|
@builtins.property
|
|
3970
4084
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
3971
4085
|
'''Timeout for the task.
|
|
@@ -4108,6 +4222,7 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4108
4222
|
"output_path": "outputPath",
|
|
4109
4223
|
"result_path": "resultPath",
|
|
4110
4224
|
"result_selector": "resultSelector",
|
|
4225
|
+
"state_name": "stateName",
|
|
4111
4226
|
"task_timeout": "taskTimeout",
|
|
4112
4227
|
"timeout": "timeout",
|
|
4113
4228
|
"method": "method",
|
|
@@ -4131,6 +4246,7 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4131
4246
|
output_path: typing.Optional[builtins.str] = None,
|
|
4132
4247
|
result_path: typing.Optional[builtins.str] = None,
|
|
4133
4248
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
4249
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
4134
4250
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
4135
4251
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
4136
4252
|
method: "HttpMethod",
|
|
@@ -4151,6 +4267,7 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4151
4267
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
4152
4268
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
4153
4269
|
: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
|
|
4270
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
4154
4271
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
4155
4272
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
4156
4273
|
:param method: Http method for the API.
|
|
@@ -4197,6 +4314,7 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4197
4314
|
result_selector={
|
|
4198
4315
|
"result_selector_key": result_selector
|
|
4199
4316
|
},
|
|
4317
|
+
state_name="stateName",
|
|
4200
4318
|
task_timeout=timeout,
|
|
4201
4319
|
timeout=cdk.Duration.minutes(30)
|
|
4202
4320
|
)
|
|
@@ -4214,6 +4332,7 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4214
4332
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
4215
4333
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
4216
4334
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
4335
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
4217
4336
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
4218
4337
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
4219
4338
|
check_type(argname="argument method", value=method, expected_type=type_hints["method"])
|
|
@@ -4243,6 +4362,8 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4243
4362
|
self._values["result_path"] = result_path
|
|
4244
4363
|
if result_selector is not None:
|
|
4245
4364
|
self._values["result_selector"] = result_selector
|
|
4365
|
+
if state_name is not None:
|
|
4366
|
+
self._values["state_name"] = state_name
|
|
4246
4367
|
if task_timeout is not None:
|
|
4247
4368
|
self._values["task_timeout"] = task_timeout
|
|
4248
4369
|
if timeout is not None:
|
|
@@ -4377,6 +4498,15 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4377
4498
|
result = self._values.get("result_selector")
|
|
4378
4499
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
4379
4500
|
|
|
4501
|
+
@builtins.property
|
|
4502
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
4503
|
+
'''Optional name for this state.
|
|
4504
|
+
|
|
4505
|
+
:default: - The construct ID will be used as state name
|
|
4506
|
+
'''
|
|
4507
|
+
result = self._values.get("state_name")
|
|
4508
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4509
|
+
|
|
4380
4510
|
@builtins.property
|
|
4381
4511
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
4382
4512
|
'''Timeout for the task.
|
|
@@ -4512,6 +4642,7 @@ class CallApiGatewayHttpApiEndpoint(
|
|
|
4512
4642
|
output_path: typing.Optional[builtins.str] = None,
|
|
4513
4643
|
result_path: typing.Optional[builtins.str] = None,
|
|
4514
4644
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
4645
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
4515
4646
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
4516
4647
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
4517
4648
|
) -> None:
|
|
@@ -4536,6 +4667,7 @@ class CallApiGatewayHttpApiEndpoint(
|
|
|
4536
4667
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
4537
4668
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
4538
4669
|
: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
|
|
4670
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
4539
4671
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
4540
4672
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
4541
4673
|
'''
|
|
@@ -4562,6 +4694,7 @@ class CallApiGatewayHttpApiEndpoint(
|
|
|
4562
4694
|
output_path=output_path,
|
|
4563
4695
|
result_path=result_path,
|
|
4564
4696
|
result_selector=result_selector,
|
|
4697
|
+
state_name=state_name,
|
|
4565
4698
|
task_timeout=task_timeout,
|
|
4566
4699
|
timeout=timeout,
|
|
4567
4700
|
)
|
|
@@ -4611,6 +4744,7 @@ class CallApiGatewayHttpApiEndpoint(
|
|
|
4611
4744
|
"output_path": "outputPath",
|
|
4612
4745
|
"result_path": "resultPath",
|
|
4613
4746
|
"result_selector": "resultSelector",
|
|
4747
|
+
"state_name": "stateName",
|
|
4614
4748
|
"task_timeout": "taskTimeout",
|
|
4615
4749
|
"timeout": "timeout",
|
|
4616
4750
|
"method": "method",
|
|
@@ -4637,6 +4771,7 @@ class CallApiGatewayHttpApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
4637
4771
|
output_path: typing.Optional[builtins.str] = None,
|
|
4638
4772
|
result_path: typing.Optional[builtins.str] = None,
|
|
4639
4773
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
4774
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
4640
4775
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
4641
4776
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
4642
4777
|
method: "HttpMethod",
|
|
@@ -4660,6 +4795,7 @@ class CallApiGatewayHttpApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
4660
4795
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
4661
4796
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
4662
4797
|
: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
|
|
4798
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
4663
4799
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
4664
4800
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
4665
4801
|
:param method: Http method for the API.
|
|
@@ -4699,6 +4835,7 @@ class CallApiGatewayHttpApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
4699
4835
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
4700
4836
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
4701
4837
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
4838
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
4702
4839
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
4703
4840
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
4704
4841
|
check_type(argname="argument method", value=method, expected_type=type_hints["method"])
|
|
@@ -4733,6 +4870,8 @@ class CallApiGatewayHttpApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
4733
4870
|
self._values["result_path"] = result_path
|
|
4734
4871
|
if result_selector is not None:
|
|
4735
4872
|
self._values["result_selector"] = result_selector
|
|
4873
|
+
if state_name is not None:
|
|
4874
|
+
self._values["state_name"] = state_name
|
|
4736
4875
|
if task_timeout is not None:
|
|
4737
4876
|
self._values["task_timeout"] = task_timeout
|
|
4738
4877
|
if timeout is not None:
|
|
@@ -4869,6 +5008,15 @@ class CallApiGatewayHttpApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
4869
5008
|
result = self._values.get("result_selector")
|
|
4870
5009
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
4871
5010
|
|
|
5011
|
+
@builtins.property
|
|
5012
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
5013
|
+
'''Optional name for this state.
|
|
5014
|
+
|
|
5015
|
+
:default: - The construct ID will be used as state name
|
|
5016
|
+
'''
|
|
5017
|
+
result = self._values.get("state_name")
|
|
5018
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5019
|
+
|
|
4872
5020
|
@builtins.property
|
|
4873
5021
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
4874
5022
|
'''Timeout for the task.
|
|
@@ -5048,6 +5196,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
5048
5196
|
output_path: typing.Optional[builtins.str] = None,
|
|
5049
5197
|
result_path: typing.Optional[builtins.str] = None,
|
|
5050
5198
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
5199
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
5051
5200
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
5052
5201
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
5053
5202
|
) -> None:
|
|
@@ -5071,6 +5220,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
5071
5220
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
5072
5221
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
5073
5222
|
: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
|
|
5223
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
5074
5224
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
5075
5225
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
5076
5226
|
'''
|
|
@@ -5096,6 +5246,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
5096
5246
|
output_path=output_path,
|
|
5097
5247
|
result_path=result_path,
|
|
5098
5248
|
result_selector=result_selector,
|
|
5249
|
+
state_name=state_name,
|
|
5099
5250
|
task_timeout=task_timeout,
|
|
5100
5251
|
timeout=timeout,
|
|
5101
5252
|
)
|
|
@@ -5145,6 +5296,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
5145
5296
|
"output_path": "outputPath",
|
|
5146
5297
|
"result_path": "resultPath",
|
|
5147
5298
|
"result_selector": "resultSelector",
|
|
5299
|
+
"state_name": "stateName",
|
|
5148
5300
|
"task_timeout": "taskTimeout",
|
|
5149
5301
|
"timeout": "timeout",
|
|
5150
5302
|
"method": "method",
|
|
@@ -5170,6 +5322,7 @@ class CallApiGatewayRestApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
5170
5322
|
output_path: typing.Optional[builtins.str] = None,
|
|
5171
5323
|
result_path: typing.Optional[builtins.str] = None,
|
|
5172
5324
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
5325
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
5173
5326
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
5174
5327
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
5175
5328
|
method: "HttpMethod",
|
|
@@ -5192,6 +5345,7 @@ class CallApiGatewayRestApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
5192
5345
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
5193
5346
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
5194
5347
|
: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
|
|
5348
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
5195
5349
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
5196
5350
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
5197
5351
|
:param method: Http method for the API.
|
|
@@ -5234,6 +5388,7 @@ class CallApiGatewayRestApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
5234
5388
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
5235
5389
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
5236
5390
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
5391
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
5237
5392
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
5238
5393
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
5239
5394
|
check_type(argname="argument method", value=method, expected_type=type_hints["method"])
|
|
@@ -5267,6 +5422,8 @@ class CallApiGatewayRestApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
5267
5422
|
self._values["result_path"] = result_path
|
|
5268
5423
|
if result_selector is not None:
|
|
5269
5424
|
self._values["result_selector"] = result_selector
|
|
5425
|
+
if state_name is not None:
|
|
5426
|
+
self._values["state_name"] = state_name
|
|
5270
5427
|
if task_timeout is not None:
|
|
5271
5428
|
self._values["task_timeout"] = task_timeout
|
|
5272
5429
|
if timeout is not None:
|
|
@@ -5401,6 +5558,15 @@ class CallApiGatewayRestApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
5401
5558
|
result = self._values.get("result_selector")
|
|
5402
5559
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
5403
5560
|
|
|
5561
|
+
@builtins.property
|
|
5562
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
5563
|
+
'''Optional name for this state.
|
|
5564
|
+
|
|
5565
|
+
:default: - The construct ID will be used as state name
|
|
5566
|
+
'''
|
|
5567
|
+
result = self._values.get("state_name")
|
|
5568
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5569
|
+
|
|
5404
5570
|
@builtins.property
|
|
5405
5571
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
5406
5572
|
'''Timeout for the task.
|
|
@@ -5515,16 +5681,16 @@ class CallAwsService(
|
|
|
5515
5681
|
|
|
5516
5682
|
Example::
|
|
5517
5683
|
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
]
|
|
5684
|
+
# my_bucket: s3.Bucket
|
|
5685
|
+
|
|
5686
|
+
get_object = tasks.CallAwsService(self, "GetObject",
|
|
5687
|
+
service="s3",
|
|
5688
|
+
action="getObject",
|
|
5689
|
+
parameters={
|
|
5690
|
+
"Bucket": my_bucket.bucket_name,
|
|
5691
|
+
"Key": sfn.JsonPath.string_at("$.key")
|
|
5692
|
+
},
|
|
5693
|
+
iam_resources=[my_bucket.arn_for_objects("*")]
|
|
5528
5694
|
)
|
|
5529
5695
|
'''
|
|
5530
5696
|
|
|
@@ -5548,6 +5714,7 @@ class CallAwsService(
|
|
|
5548
5714
|
output_path: typing.Optional[builtins.str] = None,
|
|
5549
5715
|
result_path: typing.Optional[builtins.str] = None,
|
|
5550
5716
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
5717
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
5551
5718
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
5552
5719
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
5553
5720
|
) -> None:
|
|
@@ -5569,6 +5736,7 @@ class CallAwsService(
|
|
|
5569
5736
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
5570
5737
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
5571
5738
|
: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
|
|
5739
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
5572
5740
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
5573
5741
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
5574
5742
|
'''
|
|
@@ -5592,6 +5760,7 @@ class CallAwsService(
|
|
|
5592
5760
|
output_path=output_path,
|
|
5593
5761
|
result_path=result_path,
|
|
5594
5762
|
result_selector=result_selector,
|
|
5763
|
+
state_name=state_name,
|
|
5595
5764
|
task_timeout=task_timeout,
|
|
5596
5765
|
timeout=timeout,
|
|
5597
5766
|
)
|
|
@@ -5622,6 +5791,7 @@ class CallAwsService(
|
|
|
5622
5791
|
"output_path": "outputPath",
|
|
5623
5792
|
"result_path": "resultPath",
|
|
5624
5793
|
"result_selector": "resultSelector",
|
|
5794
|
+
"state_name": "stateName",
|
|
5625
5795
|
"task_timeout": "taskTimeout",
|
|
5626
5796
|
"timeout": "timeout",
|
|
5627
5797
|
"action": "action",
|
|
@@ -5645,6 +5815,7 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5645
5815
|
output_path: typing.Optional[builtins.str] = None,
|
|
5646
5816
|
result_path: typing.Optional[builtins.str] = None,
|
|
5647
5817
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
5818
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
5648
5819
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
5649
5820
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
5650
5821
|
action: builtins.str,
|
|
@@ -5665,6 +5836,7 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5665
5836
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
5666
5837
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
5667
5838
|
: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
|
|
5839
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
5668
5840
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
5669
5841
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
5670
5842
|
:param action: The API action to call. Use camelCase.
|
|
@@ -5679,16 +5851,16 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5679
5851
|
|
|
5680
5852
|
Example::
|
|
5681
5853
|
|
|
5682
|
-
|
|
5683
|
-
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
5690
|
-
|
|
5691
|
-
]
|
|
5854
|
+
# my_bucket: s3.Bucket
|
|
5855
|
+
|
|
5856
|
+
get_object = tasks.CallAwsService(self, "GetObject",
|
|
5857
|
+
service="s3",
|
|
5858
|
+
action="getObject",
|
|
5859
|
+
parameters={
|
|
5860
|
+
"Bucket": my_bucket.bucket_name,
|
|
5861
|
+
"Key": sfn.JsonPath.string_at("$.key")
|
|
5862
|
+
},
|
|
5863
|
+
iam_resources=[my_bucket.arn_for_objects("*")]
|
|
5692
5864
|
)
|
|
5693
5865
|
'''
|
|
5694
5866
|
if isinstance(credentials, dict):
|
|
@@ -5704,6 +5876,7 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5704
5876
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
5705
5877
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
5706
5878
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
5879
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
5707
5880
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
5708
5881
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
5709
5882
|
check_type(argname="argument action", value=action, expected_type=type_hints["action"])
|
|
@@ -5735,6 +5908,8 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5735
5908
|
self._values["result_path"] = result_path
|
|
5736
5909
|
if result_selector is not None:
|
|
5737
5910
|
self._values["result_selector"] = result_selector
|
|
5911
|
+
if state_name is not None:
|
|
5912
|
+
self._values["state_name"] = state_name
|
|
5738
5913
|
if task_timeout is not None:
|
|
5739
5914
|
self._values["task_timeout"] = task_timeout
|
|
5740
5915
|
if timeout is not None:
|
|
@@ -5865,6 +6040,15 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5865
6040
|
result = self._values.get("result_selector")
|
|
5866
6041
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
5867
6042
|
|
|
6043
|
+
@builtins.property
|
|
6044
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
6045
|
+
'''Optional name for this state.
|
|
6046
|
+
|
|
6047
|
+
:default: - The construct ID will be used as state name
|
|
6048
|
+
'''
|
|
6049
|
+
result = self._values.get("state_name")
|
|
6050
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6051
|
+
|
|
5868
6052
|
@builtins.property
|
|
5869
6053
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
5870
6054
|
'''Timeout for the task.
|
|
@@ -6308,6 +6492,7 @@ class CodeBuildStartBuild(
|
|
|
6308
6492
|
output_path: typing.Optional[builtins.str] = None,
|
|
6309
6493
|
result_path: typing.Optional[builtins.str] = None,
|
|
6310
6494
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
6495
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
6311
6496
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
6312
6497
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
6313
6498
|
) -> None:
|
|
@@ -6325,6 +6510,7 @@ class CodeBuildStartBuild(
|
|
|
6325
6510
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
6326
6511
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
6327
6512
|
: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
|
|
6513
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
6328
6514
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
6329
6515
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
6330
6516
|
'''
|
|
@@ -6344,6 +6530,7 @@ class CodeBuildStartBuild(
|
|
|
6344
6530
|
output_path=output_path,
|
|
6345
6531
|
result_path=result_path,
|
|
6346
6532
|
result_selector=result_selector,
|
|
6533
|
+
state_name=state_name,
|
|
6347
6534
|
task_timeout=task_timeout,
|
|
6348
6535
|
timeout=timeout,
|
|
6349
6536
|
)
|
|
@@ -6374,6 +6561,7 @@ class CodeBuildStartBuild(
|
|
|
6374
6561
|
"output_path": "outputPath",
|
|
6375
6562
|
"result_path": "resultPath",
|
|
6376
6563
|
"result_selector": "resultSelector",
|
|
6564
|
+
"state_name": "stateName",
|
|
6377
6565
|
"task_timeout": "taskTimeout",
|
|
6378
6566
|
"timeout": "timeout",
|
|
6379
6567
|
"project": "project",
|
|
@@ -6393,6 +6581,7 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6393
6581
|
output_path: typing.Optional[builtins.str] = None,
|
|
6394
6582
|
result_path: typing.Optional[builtins.str] = None,
|
|
6395
6583
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
6584
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
6396
6585
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
6397
6586
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
6398
6587
|
project: _IProject_aafae30a,
|
|
@@ -6409,6 +6598,7 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6409
6598
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
6410
6599
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
6411
6600
|
: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
|
|
6601
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
6412
6602
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
6413
6603
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
6414
6604
|
:param project: CodeBuild project to start.
|
|
@@ -6458,6 +6648,7 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6458
6648
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
6459
6649
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
6460
6650
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
6651
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
6461
6652
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
6462
6653
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
6463
6654
|
check_type(argname="argument project", value=project, expected_type=type_hints["project"])
|
|
@@ -6483,6 +6674,8 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6483
6674
|
self._values["result_path"] = result_path
|
|
6484
6675
|
if result_selector is not None:
|
|
6485
6676
|
self._values["result_selector"] = result_selector
|
|
6677
|
+
if state_name is not None:
|
|
6678
|
+
self._values["state_name"] = state_name
|
|
6486
6679
|
if task_timeout is not None:
|
|
6487
6680
|
self._values["task_timeout"] = task_timeout
|
|
6488
6681
|
if timeout is not None:
|
|
@@ -6609,6 +6802,15 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6609
6802
|
result = self._values.get("result_selector")
|
|
6610
6803
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
6611
6804
|
|
|
6805
|
+
@builtins.property
|
|
6806
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
6807
|
+
'''Optional name for this state.
|
|
6808
|
+
|
|
6809
|
+
:default: - The construct ID will be used as state name
|
|
6810
|
+
'''
|
|
6811
|
+
result = self._values.get("state_name")
|
|
6812
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6813
|
+
|
|
6612
6814
|
@builtins.property
|
|
6613
6815
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
6614
6816
|
'''Timeout for the task.
|
|
@@ -7947,6 +8149,7 @@ class DynamoDeleteItem(
|
|
|
7947
8149
|
output_path: typing.Optional[builtins.str] = None,
|
|
7948
8150
|
result_path: typing.Optional[builtins.str] = None,
|
|
7949
8151
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
8152
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
7950
8153
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
7951
8154
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
7952
8155
|
) -> None:
|
|
@@ -7970,6 +8173,7 @@ class DynamoDeleteItem(
|
|
|
7970
8173
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
7971
8174
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
7972
8175
|
: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
|
|
8176
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
7973
8177
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
7974
8178
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
7975
8179
|
'''
|
|
@@ -7995,6 +8199,7 @@ class DynamoDeleteItem(
|
|
|
7995
8199
|
output_path=output_path,
|
|
7996
8200
|
result_path=result_path,
|
|
7997
8201
|
result_selector=result_selector,
|
|
8202
|
+
state_name=state_name,
|
|
7998
8203
|
task_timeout=task_timeout,
|
|
7999
8204
|
timeout=timeout,
|
|
8000
8205
|
)
|
|
@@ -8025,6 +8230,7 @@ class DynamoDeleteItem(
|
|
|
8025
8230
|
"output_path": "outputPath",
|
|
8026
8231
|
"result_path": "resultPath",
|
|
8027
8232
|
"result_selector": "resultSelector",
|
|
8233
|
+
"state_name": "stateName",
|
|
8028
8234
|
"task_timeout": "taskTimeout",
|
|
8029
8235
|
"timeout": "timeout",
|
|
8030
8236
|
"key": "key",
|
|
@@ -8050,6 +8256,7 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8050
8256
|
output_path: typing.Optional[builtins.str] = None,
|
|
8051
8257
|
result_path: typing.Optional[builtins.str] = None,
|
|
8052
8258
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
8259
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
8053
8260
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
8054
8261
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
8055
8262
|
key: typing.Mapping[builtins.str, DynamoAttributeValue],
|
|
@@ -8072,6 +8279,7 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8072
8279
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
8073
8280
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
8074
8281
|
: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
|
|
8282
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
8075
8283
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
8076
8284
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
8077
8285
|
:param key: Primary key of the item to retrieve. For the primary key, you must provide all of the attributes. For example, with a simple primary key, you only need to provide a value for the partition key. For a composite primary key, you must provide values for both the partition key and the sort key.
|
|
@@ -8108,6 +8316,7 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8108
8316
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
8109
8317
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
8110
8318
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
8319
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
8111
8320
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
8112
8321
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
8113
8322
|
check_type(argname="argument key", value=key, expected_type=type_hints["key"])
|
|
@@ -8140,6 +8349,8 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8140
8349
|
self._values["result_path"] = result_path
|
|
8141
8350
|
if result_selector is not None:
|
|
8142
8351
|
self._values["result_selector"] = result_selector
|
|
8352
|
+
if state_name is not None:
|
|
8353
|
+
self._values["state_name"] = state_name
|
|
8143
8354
|
if task_timeout is not None:
|
|
8144
8355
|
self._values["task_timeout"] = task_timeout
|
|
8145
8356
|
if timeout is not None:
|
|
@@ -8276,6 +8487,15 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8276
8487
|
result = self._values.get("result_selector")
|
|
8277
8488
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
8278
8489
|
|
|
8490
|
+
@builtins.property
|
|
8491
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
8492
|
+
'''Optional name for this state.
|
|
8493
|
+
|
|
8494
|
+
:default: - The construct ID will be used as state name
|
|
8495
|
+
'''
|
|
8496
|
+
result = self._values.get("state_name")
|
|
8497
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8498
|
+
|
|
8279
8499
|
@builtins.property
|
|
8280
8500
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
8281
8501
|
'''Timeout for the task.
|
|
@@ -8447,6 +8667,7 @@ class DynamoGetItem(
|
|
|
8447
8667
|
output_path: typing.Optional[builtins.str] = None,
|
|
8448
8668
|
result_path: typing.Optional[builtins.str] = None,
|
|
8449
8669
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
8670
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
8450
8671
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
8451
8672
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
8452
8673
|
) -> None:
|
|
@@ -8468,6 +8689,7 @@ class DynamoGetItem(
|
|
|
8468
8689
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
8469
8690
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
8470
8691
|
: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
|
|
8692
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
8471
8693
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
8472
8694
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
8473
8695
|
'''
|
|
@@ -8491,6 +8713,7 @@ class DynamoGetItem(
|
|
|
8491
8713
|
output_path=output_path,
|
|
8492
8714
|
result_path=result_path,
|
|
8493
8715
|
result_selector=result_selector,
|
|
8716
|
+
state_name=state_name,
|
|
8494
8717
|
task_timeout=task_timeout,
|
|
8495
8718
|
timeout=timeout,
|
|
8496
8719
|
)
|
|
@@ -8521,6 +8744,7 @@ class DynamoGetItem(
|
|
|
8521
8744
|
"output_path": "outputPath",
|
|
8522
8745
|
"result_path": "resultPath",
|
|
8523
8746
|
"result_selector": "resultSelector",
|
|
8747
|
+
"state_name": "stateName",
|
|
8524
8748
|
"task_timeout": "taskTimeout",
|
|
8525
8749
|
"timeout": "timeout",
|
|
8526
8750
|
"key": "key",
|
|
@@ -8544,6 +8768,7 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8544
8768
|
output_path: typing.Optional[builtins.str] = None,
|
|
8545
8769
|
result_path: typing.Optional[builtins.str] = None,
|
|
8546
8770
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
8771
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
8547
8772
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
8548
8773
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
8549
8774
|
key: typing.Mapping[builtins.str, DynamoAttributeValue],
|
|
@@ -8564,6 +8789,7 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8564
8789
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
8565
8790
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
8566
8791
|
: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
|
|
8792
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
8567
8793
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
8568
8794
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
8569
8795
|
:param key: Primary key of the item to retrieve. For the primary key, you must provide all of the attributes. For example, with a simple primary key, you only need to provide a value for the partition key. For a composite primary key, you must provide values for both the partition key and the sort key.
|
|
@@ -8597,6 +8823,7 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8597
8823
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
8598
8824
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
8599
8825
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
8826
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
8600
8827
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
8601
8828
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
8602
8829
|
check_type(argname="argument key", value=key, expected_type=type_hints["key"])
|
|
@@ -8627,6 +8854,8 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8627
8854
|
self._values["result_path"] = result_path
|
|
8628
8855
|
if result_selector is not None:
|
|
8629
8856
|
self._values["result_selector"] = result_selector
|
|
8857
|
+
if state_name is not None:
|
|
8858
|
+
self._values["state_name"] = state_name
|
|
8630
8859
|
if task_timeout is not None:
|
|
8631
8860
|
self._values["task_timeout"] = task_timeout
|
|
8632
8861
|
if timeout is not None:
|
|
@@ -8759,6 +8988,15 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
8759
8988
|
result = self._values.get("result_selector")
|
|
8760
8989
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
8761
8990
|
|
|
8991
|
+
@builtins.property
|
|
8992
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
8993
|
+
'''Optional name for this state.
|
|
8994
|
+
|
|
8995
|
+
:default: - The construct ID will be used as state name
|
|
8996
|
+
'''
|
|
8997
|
+
result = self._values.get("state_name")
|
|
8998
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8999
|
+
|
|
8762
9000
|
@builtins.property
|
|
8763
9001
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
8764
9002
|
'''Timeout for the task.
|
|
@@ -8970,6 +9208,7 @@ class DynamoPutItem(
|
|
|
8970
9208
|
output_path: typing.Optional[builtins.str] = None,
|
|
8971
9209
|
result_path: typing.Optional[builtins.str] = None,
|
|
8972
9210
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
9211
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
8973
9212
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
8974
9213
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
8975
9214
|
) -> None:
|
|
@@ -8993,6 +9232,7 @@ class DynamoPutItem(
|
|
|
8993
9232
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
8994
9233
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
8995
9234
|
: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
|
|
9235
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
8996
9236
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
8997
9237
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
8998
9238
|
'''
|
|
@@ -9018,6 +9258,7 @@ class DynamoPutItem(
|
|
|
9018
9258
|
output_path=output_path,
|
|
9019
9259
|
result_path=result_path,
|
|
9020
9260
|
result_selector=result_selector,
|
|
9261
|
+
state_name=state_name,
|
|
9021
9262
|
task_timeout=task_timeout,
|
|
9022
9263
|
timeout=timeout,
|
|
9023
9264
|
)
|
|
@@ -9048,6 +9289,7 @@ class DynamoPutItem(
|
|
|
9048
9289
|
"output_path": "outputPath",
|
|
9049
9290
|
"result_path": "resultPath",
|
|
9050
9291
|
"result_selector": "resultSelector",
|
|
9292
|
+
"state_name": "stateName",
|
|
9051
9293
|
"task_timeout": "taskTimeout",
|
|
9052
9294
|
"timeout": "timeout",
|
|
9053
9295
|
"item": "item",
|
|
@@ -9073,6 +9315,7 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9073
9315
|
output_path: typing.Optional[builtins.str] = None,
|
|
9074
9316
|
result_path: typing.Optional[builtins.str] = None,
|
|
9075
9317
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
9318
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
9076
9319
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
9077
9320
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
9078
9321
|
item: typing.Mapping[builtins.str, DynamoAttributeValue],
|
|
@@ -9095,6 +9338,7 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9095
9338
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
9096
9339
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
9097
9340
|
: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
|
|
9341
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
9098
9342
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
9099
9343
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
9100
9344
|
:param item: A map of attribute name/value pairs, one for each attribute. Only the primary key attributes are required; you can optionally provide other attribute name-value pairs for the item.
|
|
@@ -9134,6 +9378,7 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9134
9378
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
9135
9379
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
9136
9380
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
9381
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
9137
9382
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
9138
9383
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
9139
9384
|
check_type(argname="argument item", value=item, expected_type=type_hints["item"])
|
|
@@ -9166,6 +9411,8 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9166
9411
|
self._values["result_path"] = result_path
|
|
9167
9412
|
if result_selector is not None:
|
|
9168
9413
|
self._values["result_selector"] = result_selector
|
|
9414
|
+
if state_name is not None:
|
|
9415
|
+
self._values["state_name"] = state_name
|
|
9169
9416
|
if task_timeout is not None:
|
|
9170
9417
|
self._values["task_timeout"] = task_timeout
|
|
9171
9418
|
if timeout is not None:
|
|
@@ -9302,6 +9549,15 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9302
9549
|
result = self._values.get("result_selector")
|
|
9303
9550
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
9304
9551
|
|
|
9552
|
+
@builtins.property
|
|
9553
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
9554
|
+
'''Optional name for this state.
|
|
9555
|
+
|
|
9556
|
+
:default: - The construct ID will be used as state name
|
|
9557
|
+
'''
|
|
9558
|
+
result = self._values.get("state_name")
|
|
9559
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
9560
|
+
|
|
9305
9561
|
@builtins.property
|
|
9306
9562
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
9307
9563
|
'''Timeout for the task.
|
|
@@ -9496,6 +9752,7 @@ class DynamoUpdateItem(
|
|
|
9496
9752
|
output_path: typing.Optional[builtins.str] = None,
|
|
9497
9753
|
result_path: typing.Optional[builtins.str] = None,
|
|
9498
9754
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
9755
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
9499
9756
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
9500
9757
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
9501
9758
|
) -> None:
|
|
@@ -9520,6 +9777,7 @@ class DynamoUpdateItem(
|
|
|
9520
9777
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
9521
9778
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
9522
9779
|
: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
|
|
9780
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
9523
9781
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
9524
9782
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
9525
9783
|
'''
|
|
@@ -9546,6 +9804,7 @@ class DynamoUpdateItem(
|
|
|
9546
9804
|
output_path=output_path,
|
|
9547
9805
|
result_path=result_path,
|
|
9548
9806
|
result_selector=result_selector,
|
|
9807
|
+
state_name=state_name,
|
|
9549
9808
|
task_timeout=task_timeout,
|
|
9550
9809
|
timeout=timeout,
|
|
9551
9810
|
)
|
|
@@ -9576,6 +9835,7 @@ class DynamoUpdateItem(
|
|
|
9576
9835
|
"output_path": "outputPath",
|
|
9577
9836
|
"result_path": "resultPath",
|
|
9578
9837
|
"result_selector": "resultSelector",
|
|
9838
|
+
"state_name": "stateName",
|
|
9579
9839
|
"task_timeout": "taskTimeout",
|
|
9580
9840
|
"timeout": "timeout",
|
|
9581
9841
|
"key": "key",
|
|
@@ -9602,6 +9862,7 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9602
9862
|
output_path: typing.Optional[builtins.str] = None,
|
|
9603
9863
|
result_path: typing.Optional[builtins.str] = None,
|
|
9604
9864
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
9865
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
9605
9866
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
9606
9867
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
9607
9868
|
key: typing.Mapping[builtins.str, DynamoAttributeValue],
|
|
@@ -9625,6 +9886,7 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9625
9886
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
9626
9887
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
9627
9888
|
: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
|
|
9889
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
9628
9890
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
9629
9891
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
9630
9892
|
:param key: Primary key of the item to retrieve. For the primary key, you must provide all of the attributes. For example, with a simple primary key, you only need to provide a value for the partition key. For a composite primary key, you must provide values for both the partition key and the sort key.
|
|
@@ -9668,6 +9930,7 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9668
9930
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
9669
9931
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
9670
9932
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
9933
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
9671
9934
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
9672
9935
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
9673
9936
|
check_type(argname="argument key", value=key, expected_type=type_hints["key"])
|
|
@@ -9701,6 +9964,8 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9701
9964
|
self._values["result_path"] = result_path
|
|
9702
9965
|
if result_selector is not None:
|
|
9703
9966
|
self._values["result_selector"] = result_selector
|
|
9967
|
+
if state_name is not None:
|
|
9968
|
+
self._values["state_name"] = state_name
|
|
9704
9969
|
if task_timeout is not None:
|
|
9705
9970
|
self._values["task_timeout"] = task_timeout
|
|
9706
9971
|
if timeout is not None:
|
|
@@ -9839,6 +10104,15 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9839
10104
|
result = self._values.get("result_selector")
|
|
9840
10105
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
9841
10106
|
|
|
10107
|
+
@builtins.property
|
|
10108
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
10109
|
+
'''Optional name for this state.
|
|
10110
|
+
|
|
10111
|
+
:default: - The construct ID will be used as state name
|
|
10112
|
+
'''
|
|
10113
|
+
result = self._values.get("state_name")
|
|
10114
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
10115
|
+
|
|
9842
10116
|
@builtins.property
|
|
9843
10117
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
9844
10118
|
'''Timeout for the task.
|
|
@@ -10272,6 +10546,7 @@ class EcsRunTask(
|
|
|
10272
10546
|
output_path: typing.Optional[builtins.str] = None,
|
|
10273
10547
|
result_path: typing.Optional[builtins.str] = None,
|
|
10274
10548
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
10549
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
10275
10550
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
10276
10551
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
10277
10552
|
) -> None:
|
|
@@ -10296,6 +10571,7 @@ class EcsRunTask(
|
|
|
10296
10571
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
10297
10572
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
10298
10573
|
: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
|
|
10574
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
10299
10575
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
10300
10576
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
10301
10577
|
'''
|
|
@@ -10322,6 +10598,7 @@ class EcsRunTask(
|
|
|
10322
10598
|
output_path=output_path,
|
|
10323
10599
|
result_path=result_path,
|
|
10324
10600
|
result_selector=result_selector,
|
|
10601
|
+
state_name=state_name,
|
|
10325
10602
|
task_timeout=task_timeout,
|
|
10326
10603
|
timeout=timeout,
|
|
10327
10604
|
)
|
|
@@ -10358,6 +10635,7 @@ class EcsRunTask(
|
|
|
10358
10635
|
"output_path": "outputPath",
|
|
10359
10636
|
"result_path": "resultPath",
|
|
10360
10637
|
"result_selector": "resultSelector",
|
|
10638
|
+
"state_name": "stateName",
|
|
10361
10639
|
"task_timeout": "taskTimeout",
|
|
10362
10640
|
"timeout": "timeout",
|
|
10363
10641
|
"cluster": "cluster",
|
|
@@ -10384,6 +10662,7 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10384
10662
|
output_path: typing.Optional[builtins.str] = None,
|
|
10385
10663
|
result_path: typing.Optional[builtins.str] = None,
|
|
10386
10664
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
10665
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
10387
10666
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
10388
10667
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
10389
10668
|
cluster: _ICluster_16cddd09,
|
|
@@ -10407,6 +10686,7 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10407
10686
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
10408
10687
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
10409
10688
|
: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
|
|
10689
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
10410
10690
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
10411
10691
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
10412
10692
|
:param cluster: The ECS cluster to run the task on.
|
|
@@ -10474,6 +10754,7 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10474
10754
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
10475
10755
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
10476
10756
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
10757
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
10477
10758
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
10478
10759
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
10479
10760
|
check_type(argname="argument cluster", value=cluster, expected_type=type_hints["cluster"])
|
|
@@ -10508,6 +10789,8 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10508
10789
|
self._values["result_path"] = result_path
|
|
10509
10790
|
if result_selector is not None:
|
|
10510
10791
|
self._values["result_selector"] = result_selector
|
|
10792
|
+
if state_name is not None:
|
|
10793
|
+
self._values["state_name"] = state_name
|
|
10511
10794
|
if task_timeout is not None:
|
|
10512
10795
|
self._values["task_timeout"] = task_timeout
|
|
10513
10796
|
if timeout is not None:
|
|
@@ -10644,6 +10927,15 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10644
10927
|
result = self._values.get("result_selector")
|
|
10645
10928
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
10646
10929
|
|
|
10930
|
+
@builtins.property
|
|
10931
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
10932
|
+
'''Optional name for this state.
|
|
10933
|
+
|
|
10934
|
+
:default: - The construct ID will be used as state name
|
|
10935
|
+
'''
|
|
10936
|
+
result = self._values.get("state_name")
|
|
10937
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
10938
|
+
|
|
10647
10939
|
@builtins.property
|
|
10648
10940
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
10649
10941
|
'''Timeout for the task.
|
|
@@ -10817,6 +11109,7 @@ class EksCall(
|
|
|
10817
11109
|
output_path: typing.Optional[builtins.str] = None,
|
|
10818
11110
|
result_path: typing.Optional[builtins.str] = None,
|
|
10819
11111
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
11112
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
10820
11113
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
10821
11114
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
10822
11115
|
) -> None:
|
|
@@ -10837,6 +11130,7 @@ class EksCall(
|
|
|
10837
11130
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
10838
11131
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
10839
11132
|
: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
|
|
11133
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
10840
11134
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
10841
11135
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
10842
11136
|
'''
|
|
@@ -10859,6 +11153,7 @@ class EksCall(
|
|
|
10859
11153
|
output_path=output_path,
|
|
10860
11154
|
result_path=result_path,
|
|
10861
11155
|
result_selector=result_selector,
|
|
11156
|
+
state_name=state_name,
|
|
10862
11157
|
task_timeout=task_timeout,
|
|
10863
11158
|
timeout=timeout,
|
|
10864
11159
|
)
|
|
@@ -10893,6 +11188,7 @@ class EksCall(
|
|
|
10893
11188
|
"output_path": "outputPath",
|
|
10894
11189
|
"result_path": "resultPath",
|
|
10895
11190
|
"result_selector": "resultSelector",
|
|
11191
|
+
"state_name": "stateName",
|
|
10896
11192
|
"task_timeout": "taskTimeout",
|
|
10897
11193
|
"timeout": "timeout",
|
|
10898
11194
|
"cluster": "cluster",
|
|
@@ -10915,6 +11211,7 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10915
11211
|
output_path: typing.Optional[builtins.str] = None,
|
|
10916
11212
|
result_path: typing.Optional[builtins.str] = None,
|
|
10917
11213
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
11214
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
10918
11215
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
10919
11216
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
10920
11217
|
cluster: _ICluster_6b2b80df,
|
|
@@ -10934,6 +11231,7 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10934
11231
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
10935
11232
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
10936
11233
|
: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
|
|
11234
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
10937
11235
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
10938
11236
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
10939
11237
|
:param cluster: The EKS cluster.
|
|
@@ -10973,6 +11271,7 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10973
11271
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
10974
11272
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
10975
11273
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
11274
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
10976
11275
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
10977
11276
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
10978
11277
|
check_type(argname="argument cluster", value=cluster, expected_type=type_hints["cluster"])
|
|
@@ -11003,6 +11302,8 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11003
11302
|
self._values["result_path"] = result_path
|
|
11004
11303
|
if result_selector is not None:
|
|
11005
11304
|
self._values["result_selector"] = result_selector
|
|
11305
|
+
if state_name is not None:
|
|
11306
|
+
self._values["state_name"] = state_name
|
|
11006
11307
|
if task_timeout is not None:
|
|
11007
11308
|
self._values["task_timeout"] = task_timeout
|
|
11008
11309
|
if timeout is not None:
|
|
@@ -11131,6 +11432,15 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11131
11432
|
result = self._values.get("result_selector")
|
|
11132
11433
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
11133
11434
|
|
|
11435
|
+
@builtins.property
|
|
11436
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
11437
|
+
'''Optional name for this state.
|
|
11438
|
+
|
|
11439
|
+
:default: - The construct ID will be used as state name
|
|
11440
|
+
'''
|
|
11441
|
+
result = self._values.get("state_name")
|
|
11442
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
11443
|
+
|
|
11134
11444
|
@builtins.property
|
|
11135
11445
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
11136
11446
|
'''Timeout for the task.
|
|
@@ -11300,6 +11610,7 @@ class EmrAddStep(
|
|
|
11300
11610
|
output_path: typing.Optional[builtins.str] = None,
|
|
11301
11611
|
result_path: typing.Optional[builtins.str] = None,
|
|
11302
11612
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
11613
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
11303
11614
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
11304
11615
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
11305
11616
|
) -> None:
|
|
@@ -11322,6 +11633,7 @@ class EmrAddStep(
|
|
|
11322
11633
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
11323
11634
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
11324
11635
|
: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
|
|
11636
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
11325
11637
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
11326
11638
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
11327
11639
|
'''
|
|
@@ -11346,6 +11658,7 @@ class EmrAddStep(
|
|
|
11346
11658
|
output_path=output_path,
|
|
11347
11659
|
result_path=result_path,
|
|
11348
11660
|
result_selector=result_selector,
|
|
11661
|
+
state_name=state_name,
|
|
11349
11662
|
task_timeout=task_timeout,
|
|
11350
11663
|
timeout=timeout,
|
|
11351
11664
|
)
|
|
@@ -11376,6 +11689,7 @@ class EmrAddStep(
|
|
|
11376
11689
|
"output_path": "outputPath",
|
|
11377
11690
|
"result_path": "resultPath",
|
|
11378
11691
|
"result_selector": "resultSelector",
|
|
11692
|
+
"state_name": "stateName",
|
|
11379
11693
|
"task_timeout": "taskTimeout",
|
|
11380
11694
|
"timeout": "timeout",
|
|
11381
11695
|
"cluster_id": "clusterId",
|
|
@@ -11400,6 +11714,7 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11400
11714
|
output_path: typing.Optional[builtins.str] = None,
|
|
11401
11715
|
result_path: typing.Optional[builtins.str] = None,
|
|
11402
11716
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
11717
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
11403
11718
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
11404
11719
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
11405
11720
|
cluster_id: builtins.str,
|
|
@@ -11421,6 +11736,7 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11421
11736
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
11422
11737
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
11423
11738
|
: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
|
|
11739
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
11424
11740
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
11425
11741
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
11426
11742
|
:param cluster_id: The ClusterId to add the Step to.
|
|
@@ -11455,6 +11771,7 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11455
11771
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
11456
11772
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
11457
11773
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
11774
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
11458
11775
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
11459
11776
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
11460
11777
|
check_type(argname="argument cluster_id", value=cluster_id, expected_type=type_hints["cluster_id"])
|
|
@@ -11487,6 +11804,8 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11487
11804
|
self._values["result_path"] = result_path
|
|
11488
11805
|
if result_selector is not None:
|
|
11489
11806
|
self._values["result_selector"] = result_selector
|
|
11807
|
+
if state_name is not None:
|
|
11808
|
+
self._values["state_name"] = state_name
|
|
11490
11809
|
if task_timeout is not None:
|
|
11491
11810
|
self._values["task_timeout"] = task_timeout
|
|
11492
11811
|
if timeout is not None:
|
|
@@ -11619,6 +11938,15 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11619
11938
|
result = self._values.get("result_selector")
|
|
11620
11939
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
11621
11940
|
|
|
11941
|
+
@builtins.property
|
|
11942
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
11943
|
+
'''Optional name for this state.
|
|
11944
|
+
|
|
11945
|
+
:default: - The construct ID will be used as state name
|
|
11946
|
+
'''
|
|
11947
|
+
result = self._values.get("state_name")
|
|
11948
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
11949
|
+
|
|
11622
11950
|
@builtins.property
|
|
11623
11951
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
11624
11952
|
'''Timeout for the task.
|
|
@@ -11764,6 +12092,7 @@ class EmrCancelStep(
|
|
|
11764
12092
|
output_path: typing.Optional[builtins.str] = None,
|
|
11765
12093
|
result_path: typing.Optional[builtins.str] = None,
|
|
11766
12094
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
12095
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
11767
12096
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
11768
12097
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
11769
12098
|
) -> None:
|
|
@@ -11781,6 +12110,7 @@ class EmrCancelStep(
|
|
|
11781
12110
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
11782
12111
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
11783
12112
|
: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
|
|
12113
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
11784
12114
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
11785
12115
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
11786
12116
|
'''
|
|
@@ -11800,6 +12130,7 @@ class EmrCancelStep(
|
|
|
11800
12130
|
output_path=output_path,
|
|
11801
12131
|
result_path=result_path,
|
|
11802
12132
|
result_selector=result_selector,
|
|
12133
|
+
state_name=state_name,
|
|
11803
12134
|
task_timeout=task_timeout,
|
|
11804
12135
|
timeout=timeout,
|
|
11805
12136
|
)
|
|
@@ -11830,6 +12161,7 @@ class EmrCancelStep(
|
|
|
11830
12161
|
"output_path": "outputPath",
|
|
11831
12162
|
"result_path": "resultPath",
|
|
11832
12163
|
"result_selector": "resultSelector",
|
|
12164
|
+
"state_name": "stateName",
|
|
11833
12165
|
"task_timeout": "taskTimeout",
|
|
11834
12166
|
"timeout": "timeout",
|
|
11835
12167
|
"cluster_id": "clusterId",
|
|
@@ -11849,6 +12181,7 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11849
12181
|
output_path: typing.Optional[builtins.str] = None,
|
|
11850
12182
|
result_path: typing.Optional[builtins.str] = None,
|
|
11851
12183
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
12184
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
11852
12185
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
11853
12186
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
11854
12187
|
cluster_id: builtins.str,
|
|
@@ -11865,6 +12198,7 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11865
12198
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
11866
12199
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
11867
12200
|
: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
|
|
12201
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
11868
12202
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
11869
12203
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
11870
12204
|
:param cluster_id: The ClusterId to update.
|
|
@@ -11892,6 +12226,7 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11892
12226
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
11893
12227
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
11894
12228
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
12229
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
11895
12230
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
11896
12231
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
11897
12232
|
check_type(argname="argument cluster_id", value=cluster_id, expected_type=type_hints["cluster_id"])
|
|
@@ -11918,6 +12253,8 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11918
12253
|
self._values["result_path"] = result_path
|
|
11919
12254
|
if result_selector is not None:
|
|
11920
12255
|
self._values["result_selector"] = result_selector
|
|
12256
|
+
if state_name is not None:
|
|
12257
|
+
self._values["state_name"] = state_name
|
|
11921
12258
|
if task_timeout is not None:
|
|
11922
12259
|
self._values["task_timeout"] = task_timeout
|
|
11923
12260
|
if timeout is not None:
|
|
@@ -12042,6 +12379,15 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12042
12379
|
result = self._values.get("result_selector")
|
|
12043
12380
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
12044
12381
|
|
|
12382
|
+
@builtins.property
|
|
12383
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
12384
|
+
'''Optional name for this state.
|
|
12385
|
+
|
|
12386
|
+
:default: - The construct ID will be used as state name
|
|
12387
|
+
'''
|
|
12388
|
+
result = self._values.get("state_name")
|
|
12389
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
12390
|
+
|
|
12045
12391
|
@builtins.property
|
|
12046
12392
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
12047
12393
|
'''Timeout for the task.
|
|
@@ -12129,6 +12475,7 @@ class EmrContainersCreateVirtualCluster(
|
|
|
12129
12475
|
output_path: typing.Optional[builtins.str] = None,
|
|
12130
12476
|
result_path: typing.Optional[builtins.str] = None,
|
|
12131
12477
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
12478
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
12132
12479
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
12133
12480
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
12134
12481
|
) -> None:
|
|
@@ -12148,6 +12495,7 @@ class EmrContainersCreateVirtualCluster(
|
|
|
12148
12495
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
12149
12496
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
12150
12497
|
: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
|
|
12498
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
12151
12499
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12152
12500
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
12153
12501
|
'''
|
|
@@ -12169,6 +12517,7 @@ class EmrContainersCreateVirtualCluster(
|
|
|
12169
12517
|
output_path=output_path,
|
|
12170
12518
|
result_path=result_path,
|
|
12171
12519
|
result_selector=result_selector,
|
|
12520
|
+
state_name=state_name,
|
|
12172
12521
|
task_timeout=task_timeout,
|
|
12173
12522
|
timeout=timeout,
|
|
12174
12523
|
)
|
|
@@ -12199,6 +12548,7 @@ class EmrContainersCreateVirtualCluster(
|
|
|
12199
12548
|
"output_path": "outputPath",
|
|
12200
12549
|
"result_path": "resultPath",
|
|
12201
12550
|
"result_selector": "resultSelector",
|
|
12551
|
+
"state_name": "stateName",
|
|
12202
12552
|
"task_timeout": "taskTimeout",
|
|
12203
12553
|
"timeout": "timeout",
|
|
12204
12554
|
"eks_cluster": "eksCluster",
|
|
@@ -12220,6 +12570,7 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12220
12570
|
output_path: typing.Optional[builtins.str] = None,
|
|
12221
12571
|
result_path: typing.Optional[builtins.str] = None,
|
|
12222
12572
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
12573
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
12223
12574
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
12224
12575
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
12225
12576
|
eks_cluster: EksClusterInput,
|
|
@@ -12238,6 +12589,7 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12238
12589
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
12239
12590
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
12240
12591
|
: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
|
|
12592
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
12241
12593
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12242
12594
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
12243
12595
|
:param eks_cluster: EKS Cluster or task input that contains the name of the cluster.
|
|
@@ -12267,6 +12619,7 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12267
12619
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
12268
12620
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
12269
12621
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
12622
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
12270
12623
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
12271
12624
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
12272
12625
|
check_type(argname="argument eks_cluster", value=eks_cluster, expected_type=type_hints["eks_cluster"])
|
|
@@ -12294,6 +12647,8 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12294
12647
|
self._values["result_path"] = result_path
|
|
12295
12648
|
if result_selector is not None:
|
|
12296
12649
|
self._values["result_selector"] = result_selector
|
|
12650
|
+
if state_name is not None:
|
|
12651
|
+
self._values["state_name"] = state_name
|
|
12297
12652
|
if task_timeout is not None:
|
|
12298
12653
|
self._values["task_timeout"] = task_timeout
|
|
12299
12654
|
if timeout is not None:
|
|
@@ -12424,6 +12779,15 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12424
12779
|
result = self._values.get("result_selector")
|
|
12425
12780
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
12426
12781
|
|
|
12782
|
+
@builtins.property
|
|
12783
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
12784
|
+
'''Optional name for this state.
|
|
12785
|
+
|
|
12786
|
+
:default: - The construct ID will be used as state name
|
|
12787
|
+
'''
|
|
12788
|
+
result = self._values.get("state_name")
|
|
12789
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
12790
|
+
|
|
12427
12791
|
@builtins.property
|
|
12428
12792
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
12429
12793
|
'''Timeout for the task.
|
|
@@ -12527,6 +12891,7 @@ class EmrContainersDeleteVirtualCluster(
|
|
|
12527
12891
|
output_path: typing.Optional[builtins.str] = None,
|
|
12528
12892
|
result_path: typing.Optional[builtins.str] = None,
|
|
12529
12893
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
12894
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
12530
12895
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
12531
12896
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
12532
12897
|
) -> None:
|
|
@@ -12543,6 +12908,7 @@ class EmrContainersDeleteVirtualCluster(
|
|
|
12543
12908
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
12544
12909
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
12545
12910
|
: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
|
|
12911
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
12546
12912
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12547
12913
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
12548
12914
|
'''
|
|
@@ -12561,6 +12927,7 @@ class EmrContainersDeleteVirtualCluster(
|
|
|
12561
12927
|
output_path=output_path,
|
|
12562
12928
|
result_path=result_path,
|
|
12563
12929
|
result_selector=result_selector,
|
|
12930
|
+
state_name=state_name,
|
|
12564
12931
|
task_timeout=task_timeout,
|
|
12565
12932
|
timeout=timeout,
|
|
12566
12933
|
)
|
|
@@ -12591,6 +12958,7 @@ class EmrContainersDeleteVirtualCluster(
|
|
|
12591
12958
|
"output_path": "outputPath",
|
|
12592
12959
|
"result_path": "resultPath",
|
|
12593
12960
|
"result_selector": "resultSelector",
|
|
12961
|
+
"state_name": "stateName",
|
|
12594
12962
|
"task_timeout": "taskTimeout",
|
|
12595
12963
|
"timeout": "timeout",
|
|
12596
12964
|
"virtual_cluster_id": "virtualClusterId",
|
|
@@ -12609,6 +12977,7 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12609
12977
|
output_path: typing.Optional[builtins.str] = None,
|
|
12610
12978
|
result_path: typing.Optional[builtins.str] = None,
|
|
12611
12979
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
12980
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
12612
12981
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
12613
12982
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
12614
12983
|
virtual_cluster_id: _TaskInput_91b91b91,
|
|
@@ -12624,6 +12993,7 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12624
12993
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
12625
12994
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
12626
12995
|
: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
|
|
12996
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
12627
12997
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12628
12998
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
12629
12999
|
:param virtual_cluster_id: The ID of the virtual cluster that will be deleted.
|
|
@@ -12649,6 +13019,7 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12649
13019
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
12650
13020
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
12651
13021
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
13022
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
12652
13023
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
12653
13024
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
12654
13025
|
check_type(argname="argument virtual_cluster_id", value=virtual_cluster_id, expected_type=type_hints["virtual_cluster_id"])
|
|
@@ -12673,6 +13044,8 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12673
13044
|
self._values["result_path"] = result_path
|
|
12674
13045
|
if result_selector is not None:
|
|
12675
13046
|
self._values["result_selector"] = result_selector
|
|
13047
|
+
if state_name is not None:
|
|
13048
|
+
self._values["state_name"] = state_name
|
|
12676
13049
|
if task_timeout is not None:
|
|
12677
13050
|
self._values["task_timeout"] = task_timeout
|
|
12678
13051
|
if timeout is not None:
|
|
@@ -12797,6 +13170,15 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12797
13170
|
result = self._values.get("result_selector")
|
|
12798
13171
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
12799
13172
|
|
|
13173
|
+
@builtins.property
|
|
13174
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
13175
|
+
'''Optional name for this state.
|
|
13176
|
+
|
|
13177
|
+
:default: - The construct ID will be used as state name
|
|
13178
|
+
'''
|
|
13179
|
+
result = self._values.get("state_name")
|
|
13180
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
13181
|
+
|
|
12800
13182
|
@builtins.property
|
|
12801
13183
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
12802
13184
|
'''Timeout for the task.
|
|
@@ -12899,6 +13281,7 @@ class EmrContainersStartJobRun(
|
|
|
12899
13281
|
output_path: typing.Optional[builtins.str] = None,
|
|
12900
13282
|
result_path: typing.Optional[builtins.str] = None,
|
|
12901
13283
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
13284
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
12902
13285
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
12903
13286
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
12904
13287
|
) -> None:
|
|
@@ -12922,6 +13305,7 @@ class EmrContainersStartJobRun(
|
|
|
12922
13305
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
12923
13306
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
12924
13307
|
: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
|
|
13308
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
12925
13309
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12926
13310
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
12927
13311
|
'''
|
|
@@ -12947,6 +13331,7 @@ class EmrContainersStartJobRun(
|
|
|
12947
13331
|
output_path=output_path,
|
|
12948
13332
|
result_path=result_path,
|
|
12949
13333
|
result_selector=result_selector,
|
|
13334
|
+
state_name=state_name,
|
|
12950
13335
|
task_timeout=task_timeout,
|
|
12951
13336
|
timeout=timeout,
|
|
12952
13337
|
)
|
|
@@ -12983,6 +13368,7 @@ class EmrContainersStartJobRun(
|
|
|
12983
13368
|
"output_path": "outputPath",
|
|
12984
13369
|
"result_path": "resultPath",
|
|
12985
13370
|
"result_selector": "resultSelector",
|
|
13371
|
+
"state_name": "stateName",
|
|
12986
13372
|
"task_timeout": "taskTimeout",
|
|
12987
13373
|
"timeout": "timeout",
|
|
12988
13374
|
"job_driver": "jobDriver",
|
|
@@ -13008,6 +13394,7 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13008
13394
|
output_path: typing.Optional[builtins.str] = None,
|
|
13009
13395
|
result_path: typing.Optional[builtins.str] = None,
|
|
13010
13396
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
13397
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
13011
13398
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
13012
13399
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
13013
13400
|
job_driver: typing.Union["JobDriver", typing.Dict[builtins.str, typing.Any]],
|
|
@@ -13030,6 +13417,7 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13030
13417
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
13031
13418
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
13032
13419
|
: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
|
|
13420
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
13033
13421
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
13034
13422
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
13035
13423
|
:param job_driver: The job driver for the job run.
|
|
@@ -13080,6 +13468,7 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13080
13468
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
13081
13469
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
13082
13470
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
13471
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
13083
13472
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
13084
13473
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
13085
13474
|
check_type(argname="argument job_driver", value=job_driver, expected_type=type_hints["job_driver"])
|
|
@@ -13113,6 +13502,8 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13113
13502
|
self._values["result_path"] = result_path
|
|
13114
13503
|
if result_selector is not None:
|
|
13115
13504
|
self._values["result_selector"] = result_selector
|
|
13505
|
+
if state_name is not None:
|
|
13506
|
+
self._values["state_name"] = state_name
|
|
13116
13507
|
if task_timeout is not None:
|
|
13117
13508
|
self._values["task_timeout"] = task_timeout
|
|
13118
13509
|
if timeout is not None:
|
|
@@ -13247,6 +13638,15 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13247
13638
|
result = self._values.get("result_selector")
|
|
13248
13639
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
13249
13640
|
|
|
13641
|
+
@builtins.property
|
|
13642
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
13643
|
+
'''Optional name for this state.
|
|
13644
|
+
|
|
13645
|
+
:default: - The construct ID will be used as state name
|
|
13646
|
+
'''
|
|
13647
|
+
result = self._values.get("state_name")
|
|
13648
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
13649
|
+
|
|
13250
13650
|
@builtins.property
|
|
13251
13651
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
13252
13652
|
'''Timeout for the task.
|
|
@@ -13445,6 +13845,7 @@ class EmrCreateCluster(
|
|
|
13445
13845
|
output_path: typing.Optional[builtins.str] = None,
|
|
13446
13846
|
result_path: typing.Optional[builtins.str] = None,
|
|
13447
13847
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
13848
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
13448
13849
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
13449
13850
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
13450
13851
|
) -> None:
|
|
@@ -13479,6 +13880,7 @@ class EmrCreateCluster(
|
|
|
13479
13880
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
13480
13881
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
13481
13882
|
: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
|
|
13883
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
13482
13884
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
13483
13885
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
13484
13886
|
'''
|
|
@@ -13515,6 +13917,7 @@ class EmrCreateCluster(
|
|
|
13515
13917
|
output_path=output_path,
|
|
13516
13918
|
result_path=result_path,
|
|
13517
13919
|
result_selector=result_selector,
|
|
13920
|
+
state_name=state_name,
|
|
13518
13921
|
task_timeout=task_timeout,
|
|
13519
13922
|
timeout=timeout,
|
|
13520
13923
|
)
|
|
@@ -16562,6 +16965,7 @@ class EmrCreateCluster(
|
|
|
16562
16965
|
"output_path": "outputPath",
|
|
16563
16966
|
"result_path": "resultPath",
|
|
16564
16967
|
"result_selector": "resultSelector",
|
|
16968
|
+
"state_name": "stateName",
|
|
16565
16969
|
"task_timeout": "taskTimeout",
|
|
16566
16970
|
"timeout": "timeout",
|
|
16567
16971
|
"instances": "instances",
|
|
@@ -16598,6 +17002,7 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
16598
17002
|
output_path: typing.Optional[builtins.str] = None,
|
|
16599
17003
|
result_path: typing.Optional[builtins.str] = None,
|
|
16600
17004
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
17005
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
16601
17006
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
16602
17007
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
16603
17008
|
instances: typing.Union[EmrCreateCluster.InstancesConfigProperty, typing.Dict[builtins.str, typing.Any]],
|
|
@@ -16633,6 +17038,7 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
16633
17038
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
16634
17039
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
16635
17040
|
: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
|
|
17041
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
16636
17042
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
16637
17043
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
16638
17044
|
:param instances: A specification of the number and type of Amazon EC2 instances.
|
|
@@ -16707,6 +17113,7 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
16707
17113
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
16708
17114
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
16709
17115
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
17116
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
16710
17117
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
16711
17118
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
16712
17119
|
check_type(argname="argument instances", value=instances, expected_type=type_hints["instances"])
|
|
@@ -16750,6 +17157,8 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
16750
17157
|
self._values["result_path"] = result_path
|
|
16751
17158
|
if result_selector is not None:
|
|
16752
17159
|
self._values["result_selector"] = result_selector
|
|
17160
|
+
if state_name is not None:
|
|
17161
|
+
self._values["state_name"] = state_name
|
|
16753
17162
|
if task_timeout is not None:
|
|
16754
17163
|
self._values["task_timeout"] = task_timeout
|
|
16755
17164
|
if timeout is not None:
|
|
@@ -16908,6 +17317,15 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
16908
17317
|
result = self._values.get("result_selector")
|
|
16909
17318
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
16910
17319
|
|
|
17320
|
+
@builtins.property
|
|
17321
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
17322
|
+
'''Optional name for this state.
|
|
17323
|
+
|
|
17324
|
+
:default: - The construct ID will be used as state name
|
|
17325
|
+
'''
|
|
17326
|
+
result = self._values.get("state_name")
|
|
17327
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
17328
|
+
|
|
16911
17329
|
@builtins.property
|
|
16912
17330
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
16913
17331
|
'''Timeout for the task.
|
|
@@ -17169,6 +17587,7 @@ class EmrModifyInstanceFleetByName(
|
|
|
17169
17587
|
output_path: typing.Optional[builtins.str] = None,
|
|
17170
17588
|
result_path: typing.Optional[builtins.str] = None,
|
|
17171
17589
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
17590
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
17172
17591
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
17173
17592
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
17174
17593
|
) -> None:
|
|
@@ -17188,6 +17607,7 @@ class EmrModifyInstanceFleetByName(
|
|
|
17188
17607
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
17189
17608
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
17190
17609
|
: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
|
|
17610
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
17191
17611
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
17192
17612
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
17193
17613
|
'''
|
|
@@ -17209,6 +17629,7 @@ class EmrModifyInstanceFleetByName(
|
|
|
17209
17629
|
output_path=output_path,
|
|
17210
17630
|
result_path=result_path,
|
|
17211
17631
|
result_selector=result_selector,
|
|
17632
|
+
state_name=state_name,
|
|
17212
17633
|
task_timeout=task_timeout,
|
|
17213
17634
|
timeout=timeout,
|
|
17214
17635
|
)
|
|
@@ -17239,6 +17660,7 @@ class EmrModifyInstanceFleetByName(
|
|
|
17239
17660
|
"output_path": "outputPath",
|
|
17240
17661
|
"result_path": "resultPath",
|
|
17241
17662
|
"result_selector": "resultSelector",
|
|
17663
|
+
"state_name": "stateName",
|
|
17242
17664
|
"task_timeout": "taskTimeout",
|
|
17243
17665
|
"timeout": "timeout",
|
|
17244
17666
|
"cluster_id": "clusterId",
|
|
@@ -17260,6 +17682,7 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
17260
17682
|
output_path: typing.Optional[builtins.str] = None,
|
|
17261
17683
|
result_path: typing.Optional[builtins.str] = None,
|
|
17262
17684
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
17685
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
17263
17686
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
17264
17687
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
17265
17688
|
cluster_id: builtins.str,
|
|
@@ -17278,6 +17701,7 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
17278
17701
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
17279
17702
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
17280
17703
|
: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
|
|
17704
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
17281
17705
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
17282
17706
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
17283
17707
|
:param cluster_id: The ClusterId to update.
|
|
@@ -17309,6 +17733,7 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
17309
17733
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
17310
17734
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
17311
17735
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
17736
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
17312
17737
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
17313
17738
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
17314
17739
|
check_type(argname="argument cluster_id", value=cluster_id, expected_type=type_hints["cluster_id"])
|
|
@@ -17339,6 +17764,8 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
17339
17764
|
self._values["result_path"] = result_path
|
|
17340
17765
|
if result_selector is not None:
|
|
17341
17766
|
self._values["result_selector"] = result_selector
|
|
17767
|
+
if state_name is not None:
|
|
17768
|
+
self._values["state_name"] = state_name
|
|
17342
17769
|
if task_timeout is not None:
|
|
17343
17770
|
self._values["task_timeout"] = task_timeout
|
|
17344
17771
|
if timeout is not None:
|
|
@@ -17463,6 +17890,15 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
17463
17890
|
result = self._values.get("result_selector")
|
|
17464
17891
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
17465
17892
|
|
|
17893
|
+
@builtins.property
|
|
17894
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
17895
|
+
'''Optional name for this state.
|
|
17896
|
+
|
|
17897
|
+
:default: - The construct ID will be used as state name
|
|
17898
|
+
'''
|
|
17899
|
+
result = self._values.get("state_name")
|
|
17900
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
17901
|
+
|
|
17466
17902
|
@builtins.property
|
|
17467
17903
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
17468
17904
|
'''Timeout for the task.
|
|
@@ -17575,6 +18011,7 @@ class EmrModifyInstanceGroupByName(
|
|
|
17575
18011
|
output_path: typing.Optional[builtins.str] = None,
|
|
17576
18012
|
result_path: typing.Optional[builtins.str] = None,
|
|
17577
18013
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
18014
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
17578
18015
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
17579
18016
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
17580
18017
|
) -> None:
|
|
@@ -17593,6 +18030,7 @@ class EmrModifyInstanceGroupByName(
|
|
|
17593
18030
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
17594
18031
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
17595
18032
|
: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
|
|
18033
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
17596
18034
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
17597
18035
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
17598
18036
|
'''
|
|
@@ -17613,6 +18051,7 @@ class EmrModifyInstanceGroupByName(
|
|
|
17613
18051
|
output_path=output_path,
|
|
17614
18052
|
result_path=result_path,
|
|
17615
18053
|
result_selector=result_selector,
|
|
18054
|
+
state_name=state_name,
|
|
17616
18055
|
task_timeout=task_timeout,
|
|
17617
18056
|
timeout=timeout,
|
|
17618
18057
|
)
|
|
@@ -17933,6 +18372,7 @@ class EmrModifyInstanceGroupByName(
|
|
|
17933
18372
|
"output_path": "outputPath",
|
|
17934
18373
|
"result_path": "resultPath",
|
|
17935
18374
|
"result_selector": "resultSelector",
|
|
18375
|
+
"state_name": "stateName",
|
|
17936
18376
|
"task_timeout": "taskTimeout",
|
|
17937
18377
|
"timeout": "timeout",
|
|
17938
18378
|
"cluster_id": "clusterId",
|
|
@@ -17953,6 +18393,7 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
17953
18393
|
output_path: typing.Optional[builtins.str] = None,
|
|
17954
18394
|
result_path: typing.Optional[builtins.str] = None,
|
|
17955
18395
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
18396
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
17956
18397
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
17957
18398
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
17958
18399
|
cluster_id: builtins.str,
|
|
@@ -17970,6 +18411,7 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
17970
18411
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
17971
18412
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
17972
18413
|
: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
|
|
18414
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
17973
18415
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
17974
18416
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
17975
18417
|
:param cluster_id: The ClusterId to update.
|
|
@@ -18003,6 +18445,7 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18003
18445
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
18004
18446
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
18005
18447
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
18448
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
18006
18449
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
18007
18450
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
18008
18451
|
check_type(argname="argument cluster_id", value=cluster_id, expected_type=type_hints["cluster_id"])
|
|
@@ -18031,6 +18474,8 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18031
18474
|
self._values["result_path"] = result_path
|
|
18032
18475
|
if result_selector is not None:
|
|
18033
18476
|
self._values["result_selector"] = result_selector
|
|
18477
|
+
if state_name is not None:
|
|
18478
|
+
self._values["state_name"] = state_name
|
|
18034
18479
|
if task_timeout is not None:
|
|
18035
18480
|
self._values["task_timeout"] = task_timeout
|
|
18036
18481
|
if timeout is not None:
|
|
@@ -18155,6 +18600,15 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18155
18600
|
result = self._values.get("result_selector")
|
|
18156
18601
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
18157
18602
|
|
|
18603
|
+
@builtins.property
|
|
18604
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
18605
|
+
'''Optional name for this state.
|
|
18606
|
+
|
|
18607
|
+
:default: - The construct ID will be used as state name
|
|
18608
|
+
'''
|
|
18609
|
+
result = self._values.get("state_name")
|
|
18610
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
18611
|
+
|
|
18158
18612
|
@builtins.property
|
|
18159
18613
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
18160
18614
|
'''Timeout for the task.
|
|
@@ -18253,6 +18707,7 @@ class EmrSetClusterTerminationProtection(
|
|
|
18253
18707
|
output_path: typing.Optional[builtins.str] = None,
|
|
18254
18708
|
result_path: typing.Optional[builtins.str] = None,
|
|
18255
18709
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
18710
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
18256
18711
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
18257
18712
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
18258
18713
|
) -> None:
|
|
@@ -18270,6 +18725,7 @@ class EmrSetClusterTerminationProtection(
|
|
|
18270
18725
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
18271
18726
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
18272
18727
|
: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
|
|
18728
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
18273
18729
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
18274
18730
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
18275
18731
|
'''
|
|
@@ -18289,6 +18745,7 @@ class EmrSetClusterTerminationProtection(
|
|
|
18289
18745
|
output_path=output_path,
|
|
18290
18746
|
result_path=result_path,
|
|
18291
18747
|
result_selector=result_selector,
|
|
18748
|
+
state_name=state_name,
|
|
18292
18749
|
task_timeout=task_timeout,
|
|
18293
18750
|
timeout=timeout,
|
|
18294
18751
|
)
|
|
@@ -18319,6 +18776,7 @@ class EmrSetClusterTerminationProtection(
|
|
|
18319
18776
|
"output_path": "outputPath",
|
|
18320
18777
|
"result_path": "resultPath",
|
|
18321
18778
|
"result_selector": "resultSelector",
|
|
18779
|
+
"state_name": "stateName",
|
|
18322
18780
|
"task_timeout": "taskTimeout",
|
|
18323
18781
|
"timeout": "timeout",
|
|
18324
18782
|
"cluster_id": "clusterId",
|
|
@@ -18338,6 +18796,7 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18338
18796
|
output_path: typing.Optional[builtins.str] = None,
|
|
18339
18797
|
result_path: typing.Optional[builtins.str] = None,
|
|
18340
18798
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
18799
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
18341
18800
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
18342
18801
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
18343
18802
|
cluster_id: builtins.str,
|
|
@@ -18354,6 +18813,7 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18354
18813
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
18355
18814
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
18356
18815
|
: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
|
|
18816
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
18357
18817
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
18358
18818
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
18359
18819
|
:param cluster_id: The ClusterId to update.
|
|
@@ -18381,6 +18841,7 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18381
18841
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
18382
18842
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
18383
18843
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
18844
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
18384
18845
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
18385
18846
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
18386
18847
|
check_type(argname="argument cluster_id", value=cluster_id, expected_type=type_hints["cluster_id"])
|
|
@@ -18407,6 +18868,8 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18407
18868
|
self._values["result_path"] = result_path
|
|
18408
18869
|
if result_selector is not None:
|
|
18409
18870
|
self._values["result_selector"] = result_selector
|
|
18871
|
+
if state_name is not None:
|
|
18872
|
+
self._values["state_name"] = state_name
|
|
18410
18873
|
if task_timeout is not None:
|
|
18411
18874
|
self._values["task_timeout"] = task_timeout
|
|
18412
18875
|
if timeout is not None:
|
|
@@ -18531,6 +18994,15 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18531
18994
|
result = self._values.get("result_selector")
|
|
18532
18995
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
18533
18996
|
|
|
18997
|
+
@builtins.property
|
|
18998
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
18999
|
+
'''Optional name for this state.
|
|
19000
|
+
|
|
19001
|
+
:default: - The construct ID will be used as state name
|
|
19002
|
+
'''
|
|
19003
|
+
result = self._values.get("state_name")
|
|
19004
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
19005
|
+
|
|
18534
19006
|
@builtins.property
|
|
18535
19007
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
18536
19008
|
'''Timeout for the task.
|
|
@@ -18613,6 +19085,7 @@ class EmrTerminateCluster(
|
|
|
18613
19085
|
output_path: typing.Optional[builtins.str] = None,
|
|
18614
19086
|
result_path: typing.Optional[builtins.str] = None,
|
|
18615
19087
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
19088
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
18616
19089
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
18617
19090
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
18618
19091
|
) -> None:
|
|
@@ -18629,6 +19102,7 @@ class EmrTerminateCluster(
|
|
|
18629
19102
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
18630
19103
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
18631
19104
|
: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
|
|
19105
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
18632
19106
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
18633
19107
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
18634
19108
|
'''
|
|
@@ -18647,6 +19121,7 @@ class EmrTerminateCluster(
|
|
|
18647
19121
|
output_path=output_path,
|
|
18648
19122
|
result_path=result_path,
|
|
18649
19123
|
result_selector=result_selector,
|
|
19124
|
+
state_name=state_name,
|
|
18650
19125
|
task_timeout=task_timeout,
|
|
18651
19126
|
timeout=timeout,
|
|
18652
19127
|
)
|
|
@@ -18677,6 +19152,7 @@ class EmrTerminateCluster(
|
|
|
18677
19152
|
"output_path": "outputPath",
|
|
18678
19153
|
"result_path": "resultPath",
|
|
18679
19154
|
"result_selector": "resultSelector",
|
|
19155
|
+
"state_name": "stateName",
|
|
18680
19156
|
"task_timeout": "taskTimeout",
|
|
18681
19157
|
"timeout": "timeout",
|
|
18682
19158
|
"cluster_id": "clusterId",
|
|
@@ -18695,6 +19171,7 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18695
19171
|
output_path: typing.Optional[builtins.str] = None,
|
|
18696
19172
|
result_path: typing.Optional[builtins.str] = None,
|
|
18697
19173
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
19174
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
18698
19175
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
18699
19176
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
18700
19177
|
cluster_id: builtins.str,
|
|
@@ -18710,6 +19187,7 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18710
19187
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
18711
19188
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
18712
19189
|
: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
|
|
19190
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
18713
19191
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
18714
19192
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
18715
19193
|
:param cluster_id: The ClusterId to terminate.
|
|
@@ -18735,6 +19213,7 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18735
19213
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
18736
19214
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
18737
19215
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
19216
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
18738
19217
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
18739
19218
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
18740
19219
|
check_type(argname="argument cluster_id", value=cluster_id, expected_type=type_hints["cluster_id"])
|
|
@@ -18759,6 +19238,8 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18759
19238
|
self._values["result_path"] = result_path
|
|
18760
19239
|
if result_selector is not None:
|
|
18761
19240
|
self._values["result_selector"] = result_selector
|
|
19241
|
+
if state_name is not None:
|
|
19242
|
+
self._values["state_name"] = state_name
|
|
18762
19243
|
if task_timeout is not None:
|
|
18763
19244
|
self._values["task_timeout"] = task_timeout
|
|
18764
19245
|
if timeout is not None:
|
|
@@ -18883,6 +19364,15 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18883
19364
|
result = self._values.get("result_selector")
|
|
18884
19365
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
18885
19366
|
|
|
19367
|
+
@builtins.property
|
|
19368
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
19369
|
+
'''Optional name for this state.
|
|
19370
|
+
|
|
19371
|
+
:default: - The construct ID will be used as state name
|
|
19372
|
+
'''
|
|
19373
|
+
result = self._values.get("state_name")
|
|
19374
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
19375
|
+
|
|
18886
19376
|
@builtins.property
|
|
18887
19377
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
18888
19378
|
'''Timeout for the task.
|
|
@@ -18965,7 +19455,8 @@ class EncryptionConfiguration:
|
|
|
18965
19455
|
bucket_name="query-results-bucket",
|
|
18966
19456
|
object_key="folder"
|
|
18967
19457
|
)
|
|
18968
|
-
)
|
|
19458
|
+
),
|
|
19459
|
+
execution_parameters=["param1", "param2"]
|
|
18969
19460
|
)
|
|
18970
19461
|
'''
|
|
18971
19462
|
if __debug__:
|
|
@@ -19031,7 +19522,8 @@ class EncryptionOption(enum.Enum):
|
|
|
19031
19522
|
bucket_name="query-results-bucket",
|
|
19032
19523
|
object_key="folder"
|
|
19033
19524
|
)
|
|
19034
|
-
)
|
|
19525
|
+
),
|
|
19526
|
+
execution_parameters=["param1", "param2"]
|
|
19035
19527
|
)
|
|
19036
19528
|
'''
|
|
19037
19529
|
|
|
@@ -19108,6 +19600,7 @@ class EvaluateExpression(
|
|
|
19108
19600
|
output_path: typing.Optional[builtins.str] = None,
|
|
19109
19601
|
result_path: typing.Optional[builtins.str] = None,
|
|
19110
19602
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
19603
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
19111
19604
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
19112
19605
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
19113
19606
|
) -> None:
|
|
@@ -19125,6 +19618,7 @@ class EvaluateExpression(
|
|
|
19125
19618
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
19126
19619
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
19127
19620
|
: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
|
|
19621
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
19128
19622
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
19129
19623
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
19130
19624
|
'''
|
|
@@ -19144,6 +19638,7 @@ class EvaluateExpression(
|
|
|
19144
19638
|
output_path=output_path,
|
|
19145
19639
|
result_path=result_path,
|
|
19146
19640
|
result_selector=result_selector,
|
|
19641
|
+
state_name=state_name,
|
|
19147
19642
|
task_timeout=task_timeout,
|
|
19148
19643
|
timeout=timeout,
|
|
19149
19644
|
)
|
|
@@ -19174,6 +19669,7 @@ class EvaluateExpression(
|
|
|
19174
19669
|
"output_path": "outputPath",
|
|
19175
19670
|
"result_path": "resultPath",
|
|
19176
19671
|
"result_selector": "resultSelector",
|
|
19672
|
+
"state_name": "stateName",
|
|
19177
19673
|
"task_timeout": "taskTimeout",
|
|
19178
19674
|
"timeout": "timeout",
|
|
19179
19675
|
"expression": "expression",
|
|
@@ -19193,6 +19689,7 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19193
19689
|
output_path: typing.Optional[builtins.str] = None,
|
|
19194
19690
|
result_path: typing.Optional[builtins.str] = None,
|
|
19195
19691
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
19692
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
19196
19693
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
19197
19694
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
19198
19695
|
expression: builtins.str,
|
|
@@ -19209,6 +19706,7 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19209
19706
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
19210
19707
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
19211
19708
|
: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
|
|
19709
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
19212
19710
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
19213
19711
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
19214
19712
|
:param expression: The expression to evaluate. The expression may contain state paths. Example value: ``'$.a + $.b'``
|
|
@@ -19257,6 +19755,7 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19257
19755
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
19258
19756
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
19259
19757
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
19758
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
19260
19759
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
19261
19760
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
19262
19761
|
check_type(argname="argument expression", value=expression, expected_type=type_hints["expression"])
|
|
@@ -19282,6 +19781,8 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19282
19781
|
self._values["result_path"] = result_path
|
|
19283
19782
|
if result_selector is not None:
|
|
19284
19783
|
self._values["result_selector"] = result_selector
|
|
19784
|
+
if state_name is not None:
|
|
19785
|
+
self._values["state_name"] = state_name
|
|
19285
19786
|
if task_timeout is not None:
|
|
19286
19787
|
self._values["task_timeout"] = task_timeout
|
|
19287
19788
|
if timeout is not None:
|
|
@@ -19408,6 +19909,15 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19408
19909
|
result = self._values.get("result_selector")
|
|
19409
19910
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
19410
19911
|
|
|
19912
|
+
@builtins.property
|
|
19913
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
19914
|
+
'''Optional name for this state.
|
|
19915
|
+
|
|
19916
|
+
:default: - The construct ID will be used as state name
|
|
19917
|
+
'''
|
|
19918
|
+
result = self._values.get("state_name")
|
|
19919
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
19920
|
+
|
|
19411
19921
|
@builtins.property
|
|
19412
19922
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
19413
19923
|
'''Timeout for the task.
|
|
@@ -19509,6 +20019,7 @@ class EventBridgePutEvents(
|
|
|
19509
20019
|
output_path: typing.Optional[builtins.str] = None,
|
|
19510
20020
|
result_path: typing.Optional[builtins.str] = None,
|
|
19511
20021
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
20022
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
19512
20023
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
19513
20024
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
19514
20025
|
) -> None:
|
|
@@ -19525,6 +20036,7 @@ class EventBridgePutEvents(
|
|
|
19525
20036
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
19526
20037
|
:param result_path: JSONPath expression to indicate where to inject the state's output. May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output. Default: - Replaces the entire input with the result (JSON path '$')
|
|
19527
20038
|
:param result_selector: The JSON that will replace the state's raw result and become the effective result before ResultPath is applied. You can use ResultSelector to create a payload with values that are static or selected from the state's raw result. Default: - None
|
|
20039
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
19528
20040
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
19529
20041
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
19530
20042
|
'''
|
|
@@ -19543,6 +20055,7 @@ class EventBridgePutEvents(
|
|
|
19543
20055
|
output_path=output_path,
|
|
19544
20056
|
result_path=result_path,
|
|
19545
20057
|
result_selector=result_selector,
|
|
20058
|
+
state_name=state_name,
|
|
19546
20059
|
task_timeout=task_timeout,
|
|
19547
20060
|
timeout=timeout,
|
|
19548
20061
|
)
|
|
@@ -19697,6 +20210,7 @@ class EventBridgePutEventsEntry:
|
|
|
19697
20210
|
"output_path": "outputPath",
|
|
19698
20211
|
"result_path": "resultPath",
|
|
19699
20212
|
"result_selector": "resultSelector",
|
|
20213
|
+
"state_name": "stateName",
|
|
19700
20214
|
"task_timeout": "taskTimeout",
|
|
19701
20215
|
"timeout": "timeout",
|
|
19702
20216
|
"entries": "entries",
|
|
@@ -19715,6 +20229,7 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19715
20229
|
output_path: typing.Optional[builtins.str] = None,
|
|
19716
20230
|
result_path: typing.Optional[builtins.str] = None,
|
|
19717
20231
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
20232
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
19718
20233
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
19719
20234
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
19720
20235
|
entries: typing.Sequence[typing.Union[EventBridgePutEventsEntry, typing.Dict[builtins.str, typing.Any]]],
|
|
@@ -19730,6 +20245,7 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19730
20245
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
19731
20246
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
19732
20247
|
: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
|
|
20248
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
19733
20249
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
19734
20250
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
19735
20251
|
:param entries: The entries that will be sent. Minimum number of entries is 1 and maximum is 10, unless `PutEvents API limit <https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html#API_PutEvents_RequestSyntax>`_ has changed.
|
|
@@ -19769,6 +20285,7 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19769
20285
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
19770
20286
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
19771
20287
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
20288
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
19772
20289
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
19773
20290
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
19774
20291
|
check_type(argname="argument entries", value=entries, expected_type=type_hints["entries"])
|
|
@@ -19793,6 +20310,8 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19793
20310
|
self._values["result_path"] = result_path
|
|
19794
20311
|
if result_selector is not None:
|
|
19795
20312
|
self._values["result_selector"] = result_selector
|
|
20313
|
+
if state_name is not None:
|
|
20314
|
+
self._values["state_name"] = state_name
|
|
19796
20315
|
if task_timeout is not None:
|
|
19797
20316
|
self._values["task_timeout"] = task_timeout
|
|
19798
20317
|
if timeout is not None:
|
|
@@ -19917,6 +20436,15 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19917
20436
|
result = self._values.get("result_selector")
|
|
19918
20437
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
19919
20438
|
|
|
20439
|
+
@builtins.property
|
|
20440
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
20441
|
+
'''Optional name for this state.
|
|
20442
|
+
|
|
20443
|
+
:default: - The construct ID will be used as state name
|
|
20444
|
+
'''
|
|
20445
|
+
result = self._values.get("state_name")
|
|
20446
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
20447
|
+
|
|
19920
20448
|
@builtins.property
|
|
19921
20449
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
19922
20450
|
'''Timeout for the task.
|
|
@@ -19997,6 +20525,7 @@ class GlueDataBrewStartJobRun(
|
|
|
19997
20525
|
output_path: typing.Optional[builtins.str] = None,
|
|
19998
20526
|
result_path: typing.Optional[builtins.str] = None,
|
|
19999
20527
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
20528
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
20000
20529
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
20001
20530
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
20002
20531
|
) -> None:
|
|
@@ -20013,6 +20542,7 @@ class GlueDataBrewStartJobRun(
|
|
|
20013
20542
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
20014
20543
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
20015
20544
|
: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
|
|
20545
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
20016
20546
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
20017
20547
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
20018
20548
|
'''
|
|
@@ -20031,6 +20561,7 @@ class GlueDataBrewStartJobRun(
|
|
|
20031
20561
|
output_path=output_path,
|
|
20032
20562
|
result_path=result_path,
|
|
20033
20563
|
result_selector=result_selector,
|
|
20564
|
+
state_name=state_name,
|
|
20034
20565
|
task_timeout=task_timeout,
|
|
20035
20566
|
timeout=timeout,
|
|
20036
20567
|
)
|
|
@@ -20061,6 +20592,7 @@ class GlueDataBrewStartJobRun(
|
|
|
20061
20592
|
"output_path": "outputPath",
|
|
20062
20593
|
"result_path": "resultPath",
|
|
20063
20594
|
"result_selector": "resultSelector",
|
|
20595
|
+
"state_name": "stateName",
|
|
20064
20596
|
"task_timeout": "taskTimeout",
|
|
20065
20597
|
"timeout": "timeout",
|
|
20066
20598
|
"name": "name",
|
|
@@ -20079,6 +20611,7 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20079
20611
|
output_path: typing.Optional[builtins.str] = None,
|
|
20080
20612
|
result_path: typing.Optional[builtins.str] = None,
|
|
20081
20613
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
20614
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
20082
20615
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
20083
20616
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
20084
20617
|
name: builtins.str,
|
|
@@ -20094,6 +20627,7 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20094
20627
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
20095
20628
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
20096
20629
|
: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
|
|
20630
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
20097
20631
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
20098
20632
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
20099
20633
|
:param name: Glue DataBrew Job to run.
|
|
@@ -20119,6 +20653,7 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20119
20653
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
20120
20654
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
20121
20655
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
20656
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
20122
20657
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
20123
20658
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
20124
20659
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
@@ -20143,6 +20678,8 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20143
20678
|
self._values["result_path"] = result_path
|
|
20144
20679
|
if result_selector is not None:
|
|
20145
20680
|
self._values["result_selector"] = result_selector
|
|
20681
|
+
if state_name is not None:
|
|
20682
|
+
self._values["state_name"] = state_name
|
|
20146
20683
|
if task_timeout is not None:
|
|
20147
20684
|
self._values["task_timeout"] = task_timeout
|
|
20148
20685
|
if timeout is not None:
|
|
@@ -20267,6 +20804,15 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20267
20804
|
result = self._values.get("result_selector")
|
|
20268
20805
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
20269
20806
|
|
|
20807
|
+
@builtins.property
|
|
20808
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
20809
|
+
'''Optional name for this state.
|
|
20810
|
+
|
|
20811
|
+
:default: - The construct ID will be used as state name
|
|
20812
|
+
'''
|
|
20813
|
+
result = self._values.get("state_name")
|
|
20814
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
20815
|
+
|
|
20270
20816
|
@builtins.property
|
|
20271
20817
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
20272
20818
|
'''Timeout for the task.
|
|
@@ -20354,6 +20900,7 @@ class GlueStartJobRun(
|
|
|
20354
20900
|
output_path: typing.Optional[builtins.str] = None,
|
|
20355
20901
|
result_path: typing.Optional[builtins.str] = None,
|
|
20356
20902
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
20903
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
20357
20904
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
20358
20905
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
20359
20906
|
) -> None:
|
|
@@ -20373,6 +20920,7 @@ class GlueStartJobRun(
|
|
|
20373
20920
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
20374
20921
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
20375
20922
|
: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
|
|
20923
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
20376
20924
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
20377
20925
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
20378
20926
|
'''
|
|
@@ -20394,6 +20942,7 @@ class GlueStartJobRun(
|
|
|
20394
20942
|
output_path=output_path,
|
|
20395
20943
|
result_path=result_path,
|
|
20396
20944
|
result_selector=result_selector,
|
|
20945
|
+
state_name=state_name,
|
|
20397
20946
|
task_timeout=task_timeout,
|
|
20398
20947
|
timeout=timeout,
|
|
20399
20948
|
)
|
|
@@ -20424,6 +20973,7 @@ class GlueStartJobRun(
|
|
|
20424
20973
|
"output_path": "outputPath",
|
|
20425
20974
|
"result_path": "resultPath",
|
|
20426
20975
|
"result_selector": "resultSelector",
|
|
20976
|
+
"state_name": "stateName",
|
|
20427
20977
|
"task_timeout": "taskTimeout",
|
|
20428
20978
|
"timeout": "timeout",
|
|
20429
20979
|
"glue_job_name": "glueJobName",
|
|
@@ -20445,6 +20995,7 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20445
20995
|
output_path: typing.Optional[builtins.str] = None,
|
|
20446
20996
|
result_path: typing.Optional[builtins.str] = None,
|
|
20447
20997
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
20998
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
20448
20999
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
20449
21000
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
20450
21001
|
glue_job_name: builtins.str,
|
|
@@ -20463,6 +21014,7 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20463
21014
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
20464
21015
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
20465
21016
|
: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
|
|
21017
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
20466
21018
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
20467
21019
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
20468
21020
|
:param glue_job_name: Glue job name.
|
|
@@ -20496,6 +21048,7 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20496
21048
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
20497
21049
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
20498
21050
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
21051
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
20499
21052
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
20500
21053
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
20501
21054
|
check_type(argname="argument glue_job_name", value=glue_job_name, expected_type=type_hints["glue_job_name"])
|
|
@@ -20523,6 +21076,8 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20523
21076
|
self._values["result_path"] = result_path
|
|
20524
21077
|
if result_selector is not None:
|
|
20525
21078
|
self._values["result_selector"] = result_selector
|
|
21079
|
+
if state_name is not None:
|
|
21080
|
+
self._values["state_name"] = state_name
|
|
20526
21081
|
if task_timeout is not None:
|
|
20527
21082
|
self._values["task_timeout"] = task_timeout
|
|
20528
21083
|
if timeout is not None:
|
|
@@ -20653,6 +21208,15 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20653
21208
|
result = self._values.get("result_selector")
|
|
20654
21209
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
20655
21210
|
|
|
21211
|
+
@builtins.property
|
|
21212
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
21213
|
+
'''Optional name for this state.
|
|
21214
|
+
|
|
21215
|
+
:default: - The construct ID will be used as state name
|
|
21216
|
+
'''
|
|
21217
|
+
result = self._values.get("state_name")
|
|
21218
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
21219
|
+
|
|
20656
21220
|
@builtins.property
|
|
20657
21221
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
20658
21222
|
'''Timeout for the task.
|
|
@@ -21174,6 +21738,7 @@ class LambdaInvoke(
|
|
|
21174
21738
|
output_path: typing.Optional[builtins.str] = None,
|
|
21175
21739
|
result_path: typing.Optional[builtins.str] = None,
|
|
21176
21740
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
21741
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
21177
21742
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
21178
21743
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
21179
21744
|
) -> None:
|
|
@@ -21196,6 +21761,7 @@ class LambdaInvoke(
|
|
|
21196
21761
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
21197
21762
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
21198
21763
|
: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
|
|
21764
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
21199
21765
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
21200
21766
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
21201
21767
|
'''
|
|
@@ -21220,6 +21786,7 @@ class LambdaInvoke(
|
|
|
21220
21786
|
output_path=output_path,
|
|
21221
21787
|
result_path=result_path,
|
|
21222
21788
|
result_selector=result_selector,
|
|
21789
|
+
state_name=state_name,
|
|
21223
21790
|
task_timeout=task_timeout,
|
|
21224
21791
|
timeout=timeout,
|
|
21225
21792
|
)
|
|
@@ -21250,6 +21817,7 @@ class LambdaInvoke(
|
|
|
21250
21817
|
"output_path": "outputPath",
|
|
21251
21818
|
"result_path": "resultPath",
|
|
21252
21819
|
"result_selector": "resultSelector",
|
|
21820
|
+
"state_name": "stateName",
|
|
21253
21821
|
"task_timeout": "taskTimeout",
|
|
21254
21822
|
"timeout": "timeout",
|
|
21255
21823
|
"lambda_function": "lambdaFunction",
|
|
@@ -21274,6 +21842,7 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21274
21842
|
output_path: typing.Optional[builtins.str] = None,
|
|
21275
21843
|
result_path: typing.Optional[builtins.str] = None,
|
|
21276
21844
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
21845
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
21277
21846
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
21278
21847
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
21279
21848
|
lambda_function: _IFunction_6adb0ab8,
|
|
@@ -21295,6 +21864,7 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21295
21864
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
21296
21865
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
21297
21866
|
: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
|
|
21867
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
21298
21868
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
21299
21869
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
21300
21870
|
:param lambda_function: Lambda function to invoke.
|
|
@@ -21335,6 +21905,7 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21335
21905
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
21336
21906
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
21337
21907
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
21908
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
21338
21909
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
21339
21910
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
21340
21911
|
check_type(argname="argument lambda_function", value=lambda_function, expected_type=type_hints["lambda_function"])
|
|
@@ -21365,6 +21936,8 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21365
21936
|
self._values["result_path"] = result_path
|
|
21366
21937
|
if result_selector is not None:
|
|
21367
21938
|
self._values["result_selector"] = result_selector
|
|
21939
|
+
if state_name is not None:
|
|
21940
|
+
self._values["state_name"] = state_name
|
|
21368
21941
|
if task_timeout is not None:
|
|
21369
21942
|
self._values["task_timeout"] = task_timeout
|
|
21370
21943
|
if timeout is not None:
|
|
@@ -21501,6 +22074,15 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21501
22074
|
result = self._values.get("result_selector")
|
|
21502
22075
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
21503
22076
|
|
|
22077
|
+
@builtins.property
|
|
22078
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
22079
|
+
'''Optional name for this state.
|
|
22080
|
+
|
|
22081
|
+
:default: - The construct ID will be used as state name
|
|
22082
|
+
'''
|
|
22083
|
+
result = self._values.get("state_name")
|
|
22084
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
22085
|
+
|
|
21504
22086
|
@builtins.property
|
|
21505
22087
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
21506
22088
|
'''Timeout for the task.
|
|
@@ -22421,7 +23003,8 @@ class QueryExecutionContext:
|
|
|
22421
23003
|
bucket_name="query-results-bucket",
|
|
22422
23004
|
object_key="folder"
|
|
22423
23005
|
)
|
|
22424
|
-
)
|
|
23006
|
+
),
|
|
23007
|
+
execution_parameters=["param1", "param2"]
|
|
22425
23008
|
)
|
|
22426
23009
|
'''
|
|
22427
23010
|
if __debug__:
|
|
@@ -22719,7 +23302,8 @@ class ResultConfiguration:
|
|
|
22719
23302
|
bucket_name="query-results-bucket",
|
|
22720
23303
|
object_key="folder"
|
|
22721
23304
|
)
|
|
22722
|
-
)
|
|
23305
|
+
),
|
|
23306
|
+
execution_parameters=["param1", "param2"]
|
|
22723
23307
|
)
|
|
22724
23308
|
'''
|
|
22725
23309
|
if isinstance(encryption_configuration, dict):
|
|
@@ -23217,6 +23801,7 @@ class SageMakerCreateEndpoint(
|
|
|
23217
23801
|
output_path: typing.Optional[builtins.str] = None,
|
|
23218
23802
|
result_path: typing.Optional[builtins.str] = None,
|
|
23219
23803
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
23804
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
23220
23805
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
23221
23806
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
23222
23807
|
) -> None:
|
|
@@ -23235,6 +23820,7 @@ class SageMakerCreateEndpoint(
|
|
|
23235
23820
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
23236
23821
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
23237
23822
|
: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
|
|
23823
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
23238
23824
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
23239
23825
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
23240
23826
|
'''
|
|
@@ -23255,6 +23841,7 @@ class SageMakerCreateEndpoint(
|
|
|
23255
23841
|
output_path=output_path,
|
|
23256
23842
|
result_path=result_path,
|
|
23257
23843
|
result_selector=result_selector,
|
|
23844
|
+
state_name=state_name,
|
|
23258
23845
|
task_timeout=task_timeout,
|
|
23259
23846
|
timeout=timeout,
|
|
23260
23847
|
)
|
|
@@ -23313,6 +23900,7 @@ class SageMakerCreateEndpointConfig(
|
|
|
23313
23900
|
output_path: typing.Optional[builtins.str] = None,
|
|
23314
23901
|
result_path: typing.Optional[builtins.str] = None,
|
|
23315
23902
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
23903
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
23316
23904
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
23317
23905
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
23318
23906
|
) -> None:
|
|
@@ -23332,6 +23920,7 @@ class SageMakerCreateEndpointConfig(
|
|
|
23332
23920
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
23333
23921
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
23334
23922
|
: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
|
|
23923
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
23335
23924
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
23336
23925
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
23337
23926
|
'''
|
|
@@ -23353,6 +23942,7 @@ class SageMakerCreateEndpointConfig(
|
|
|
23353
23942
|
output_path=output_path,
|
|
23354
23943
|
result_path=result_path,
|
|
23355
23944
|
result_selector=result_selector,
|
|
23945
|
+
state_name=state_name,
|
|
23356
23946
|
task_timeout=task_timeout,
|
|
23357
23947
|
timeout=timeout,
|
|
23358
23948
|
)
|
|
@@ -23383,6 +23973,7 @@ class SageMakerCreateEndpointConfig(
|
|
|
23383
23973
|
"output_path": "outputPath",
|
|
23384
23974
|
"result_path": "resultPath",
|
|
23385
23975
|
"result_selector": "resultSelector",
|
|
23976
|
+
"state_name": "stateName",
|
|
23386
23977
|
"task_timeout": "taskTimeout",
|
|
23387
23978
|
"timeout": "timeout",
|
|
23388
23979
|
"endpoint_config_name": "endpointConfigName",
|
|
@@ -23404,6 +23995,7 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23404
23995
|
output_path: typing.Optional[builtins.str] = None,
|
|
23405
23996
|
result_path: typing.Optional[builtins.str] = None,
|
|
23406
23997
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
23998
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
23407
23999
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
23408
24000
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
23409
24001
|
endpoint_config_name: builtins.str,
|
|
@@ -23422,6 +24014,7 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23422
24014
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
23423
24015
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
23424
24016
|
: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
|
|
24017
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
23425
24018
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
23426
24019
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
23427
24020
|
:param endpoint_config_name: The name of the endpoint configuration.
|
|
@@ -23457,6 +24050,7 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23457
24050
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
23458
24051
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
23459
24052
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
24053
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
23460
24054
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
23461
24055
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
23462
24056
|
check_type(argname="argument endpoint_config_name", value=endpoint_config_name, expected_type=type_hints["endpoint_config_name"])
|
|
@@ -23485,6 +24079,8 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23485
24079
|
self._values["result_path"] = result_path
|
|
23486
24080
|
if result_selector is not None:
|
|
23487
24081
|
self._values["result_selector"] = result_selector
|
|
24082
|
+
if state_name is not None:
|
|
24083
|
+
self._values["state_name"] = state_name
|
|
23488
24084
|
if task_timeout is not None:
|
|
23489
24085
|
self._values["task_timeout"] = task_timeout
|
|
23490
24086
|
if timeout is not None:
|
|
@@ -23613,6 +24209,15 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23613
24209
|
result = self._values.get("result_selector")
|
|
23614
24210
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
23615
24211
|
|
|
24212
|
+
@builtins.property
|
|
24213
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
24214
|
+
'''Optional name for this state.
|
|
24215
|
+
|
|
24216
|
+
:default: - The construct ID will be used as state name
|
|
24217
|
+
'''
|
|
24218
|
+
result = self._values.get("state_name")
|
|
24219
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
24220
|
+
|
|
23616
24221
|
@builtins.property
|
|
23617
24222
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
23618
24223
|
'''Timeout for the task.
|
|
@@ -23699,6 +24304,7 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23699
24304
|
"output_path": "outputPath",
|
|
23700
24305
|
"result_path": "resultPath",
|
|
23701
24306
|
"result_selector": "resultSelector",
|
|
24307
|
+
"state_name": "stateName",
|
|
23702
24308
|
"task_timeout": "taskTimeout",
|
|
23703
24309
|
"timeout": "timeout",
|
|
23704
24310
|
"endpoint_config_name": "endpointConfigName",
|
|
@@ -23719,6 +24325,7 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23719
24325
|
output_path: typing.Optional[builtins.str] = None,
|
|
23720
24326
|
result_path: typing.Optional[builtins.str] = None,
|
|
23721
24327
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
24328
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
23722
24329
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
23723
24330
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
23724
24331
|
endpoint_config_name: builtins.str,
|
|
@@ -23736,6 +24343,7 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23736
24343
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
23737
24344
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
23738
24345
|
: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
|
|
24346
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
23739
24347
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
23740
24348
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
23741
24349
|
:param endpoint_config_name: The name of an endpoint configuration.
|
|
@@ -23765,6 +24373,7 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23765
24373
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
23766
24374
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
23767
24375
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
24376
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
23768
24377
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
23769
24378
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
23770
24379
|
check_type(argname="argument endpoint_config_name", value=endpoint_config_name, expected_type=type_hints["endpoint_config_name"])
|
|
@@ -23792,6 +24401,8 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23792
24401
|
self._values["result_path"] = result_path
|
|
23793
24402
|
if result_selector is not None:
|
|
23794
24403
|
self._values["result_selector"] = result_selector
|
|
24404
|
+
if state_name is not None:
|
|
24405
|
+
self._values["state_name"] = state_name
|
|
23795
24406
|
if task_timeout is not None:
|
|
23796
24407
|
self._values["task_timeout"] = task_timeout
|
|
23797
24408
|
if timeout is not None:
|
|
@@ -23918,6 +24529,15 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23918
24529
|
result = self._values.get("result_selector")
|
|
23919
24530
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
23920
24531
|
|
|
24532
|
+
@builtins.property
|
|
24533
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
24534
|
+
'''Optional name for this state.
|
|
24535
|
+
|
|
24536
|
+
:default: - The construct ID will be used as state name
|
|
24537
|
+
'''
|
|
24538
|
+
result = self._values.get("state_name")
|
|
24539
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
24540
|
+
|
|
23921
24541
|
@builtins.property
|
|
23922
24542
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
23923
24543
|
'''Timeout for the task.
|
|
@@ -24026,6 +24646,7 @@ class SageMakerCreateModel(
|
|
|
24026
24646
|
output_path: typing.Optional[builtins.str] = None,
|
|
24027
24647
|
result_path: typing.Optional[builtins.str] = None,
|
|
24028
24648
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
24649
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
24029
24650
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
24030
24651
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
24031
24652
|
) -> None:
|
|
@@ -24049,6 +24670,7 @@ class SageMakerCreateModel(
|
|
|
24049
24670
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
24050
24671
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
24051
24672
|
: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
|
|
24673
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
24052
24674
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
24053
24675
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
24054
24676
|
'''
|
|
@@ -24074,6 +24696,7 @@ class SageMakerCreateModel(
|
|
|
24074
24696
|
output_path=output_path,
|
|
24075
24697
|
result_path=result_path,
|
|
24076
24698
|
result_selector=result_selector,
|
|
24699
|
+
state_name=state_name,
|
|
24077
24700
|
task_timeout=task_timeout,
|
|
24078
24701
|
timeout=timeout,
|
|
24079
24702
|
)
|
|
@@ -24133,6 +24756,7 @@ class SageMakerCreateModel(
|
|
|
24133
24756
|
"output_path": "outputPath",
|
|
24134
24757
|
"result_path": "resultPath",
|
|
24135
24758
|
"result_selector": "resultSelector",
|
|
24759
|
+
"state_name": "stateName",
|
|
24136
24760
|
"task_timeout": "taskTimeout",
|
|
24137
24761
|
"timeout": "timeout",
|
|
24138
24762
|
"model_name": "modelName",
|
|
@@ -24158,6 +24782,7 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24158
24782
|
output_path: typing.Optional[builtins.str] = None,
|
|
24159
24783
|
result_path: typing.Optional[builtins.str] = None,
|
|
24160
24784
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
24785
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
24161
24786
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
24162
24787
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
24163
24788
|
model_name: builtins.str,
|
|
@@ -24180,6 +24805,7 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24180
24805
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
24181
24806
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
24182
24807
|
: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
|
|
24808
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
24183
24809
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
24184
24810
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
24185
24811
|
:param model_name: The name of the new model.
|
|
@@ -24220,6 +24846,7 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24220
24846
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
24221
24847
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
24222
24848
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
24849
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
24223
24850
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
24224
24851
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
24225
24852
|
check_type(argname="argument model_name", value=model_name, expected_type=type_hints["model_name"])
|
|
@@ -24252,6 +24879,8 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24252
24879
|
self._values["result_path"] = result_path
|
|
24253
24880
|
if result_selector is not None:
|
|
24254
24881
|
self._values["result_selector"] = result_selector
|
|
24882
|
+
if state_name is not None:
|
|
24883
|
+
self._values["state_name"] = state_name
|
|
24255
24884
|
if task_timeout is not None:
|
|
24256
24885
|
self._values["task_timeout"] = task_timeout
|
|
24257
24886
|
if timeout is not None:
|
|
@@ -24388,6 +25017,15 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24388
25017
|
result = self._values.get("result_selector")
|
|
24389
25018
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
24390
25019
|
|
|
25020
|
+
@builtins.property
|
|
25021
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
25022
|
+
'''Optional name for this state.
|
|
25023
|
+
|
|
25024
|
+
:default: - The construct ID will be used as state name
|
|
25025
|
+
'''
|
|
25026
|
+
result = self._values.get("state_name")
|
|
25027
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
25028
|
+
|
|
24391
25029
|
@builtins.property
|
|
24392
25030
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
24393
25031
|
'''Timeout for the task.
|
|
@@ -24562,6 +25200,7 @@ class SageMakerCreateTrainingJob(
|
|
|
24562
25200
|
output_path: typing.Optional[builtins.str] = None,
|
|
24563
25201
|
result_path: typing.Optional[builtins.str] = None,
|
|
24564
25202
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
25203
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
24565
25204
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
24566
25205
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
24567
25206
|
) -> None:
|
|
@@ -24589,6 +25228,7 @@ class SageMakerCreateTrainingJob(
|
|
|
24589
25228
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
24590
25229
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
24591
25230
|
: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
|
|
25231
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
24592
25232
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
24593
25233
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
24594
25234
|
'''
|
|
@@ -24618,6 +25258,7 @@ class SageMakerCreateTrainingJob(
|
|
|
24618
25258
|
output_path=output_path,
|
|
24619
25259
|
result_path=result_path,
|
|
24620
25260
|
result_selector=result_selector,
|
|
25261
|
+
state_name=state_name,
|
|
24621
25262
|
task_timeout=task_timeout,
|
|
24622
25263
|
timeout=timeout,
|
|
24623
25264
|
)
|
|
@@ -24680,6 +25321,7 @@ class SageMakerCreateTrainingJob(
|
|
|
24680
25321
|
"output_path": "outputPath",
|
|
24681
25322
|
"result_path": "resultPath",
|
|
24682
25323
|
"result_selector": "resultSelector",
|
|
25324
|
+
"state_name": "stateName",
|
|
24683
25325
|
"task_timeout": "taskTimeout",
|
|
24684
25326
|
"timeout": "timeout",
|
|
24685
25327
|
"algorithm_specification": "algorithmSpecification",
|
|
@@ -24709,6 +25351,7 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24709
25351
|
output_path: typing.Optional[builtins.str] = None,
|
|
24710
25352
|
result_path: typing.Optional[builtins.str] = None,
|
|
24711
25353
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
25354
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
24712
25355
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
24713
25356
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
24714
25357
|
algorithm_specification: typing.Union[AlgorithmSpecification, typing.Dict[builtins.str, typing.Any]],
|
|
@@ -24735,6 +25378,7 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24735
25378
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
24736
25379
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
24737
25380
|
: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
|
|
25381
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
24738
25382
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
24739
25383
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
24740
25384
|
:param algorithm_specification: Identifies the training algorithm to use.
|
|
@@ -24805,6 +25449,7 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24805
25449
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
24806
25450
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
24807
25451
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
25452
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
24808
25453
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
24809
25454
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
24810
25455
|
check_type(argname="argument algorithm_specification", value=algorithm_specification, expected_type=type_hints["algorithm_specification"])
|
|
@@ -24843,6 +25488,8 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24843
25488
|
self._values["result_path"] = result_path
|
|
24844
25489
|
if result_selector is not None:
|
|
24845
25490
|
self._values["result_selector"] = result_selector
|
|
25491
|
+
if state_name is not None:
|
|
25492
|
+
self._values["state_name"] = state_name
|
|
24846
25493
|
if task_timeout is not None:
|
|
24847
25494
|
self._values["task_timeout"] = task_timeout
|
|
24848
25495
|
if timeout is not None:
|
|
@@ -24983,6 +25630,15 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
24983
25630
|
result = self._values.get("result_selector")
|
|
24984
25631
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
24985
25632
|
|
|
25633
|
+
@builtins.property
|
|
25634
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
25635
|
+
'''Optional name for this state.
|
|
25636
|
+
|
|
25637
|
+
:default: - The construct ID will be used as state name
|
|
25638
|
+
'''
|
|
25639
|
+
result = self._values.get("state_name")
|
|
25640
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
25641
|
+
|
|
24986
25642
|
@builtins.property
|
|
24987
25643
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
24988
25644
|
'''Timeout for the task.
|
|
@@ -25198,6 +25854,7 @@ class SageMakerCreateTransformJob(
|
|
|
25198
25854
|
output_path: typing.Optional[builtins.str] = None,
|
|
25199
25855
|
result_path: typing.Optional[builtins.str] = None,
|
|
25200
25856
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
25857
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
25201
25858
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
25202
25859
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
25203
25860
|
) -> None:
|
|
@@ -25225,6 +25882,7 @@ class SageMakerCreateTransformJob(
|
|
|
25225
25882
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
25226
25883
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
25227
25884
|
: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
|
|
25885
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
25228
25886
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25229
25887
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
25230
25888
|
'''
|
|
@@ -25254,6 +25912,7 @@ class SageMakerCreateTransformJob(
|
|
|
25254
25912
|
output_path=output_path,
|
|
25255
25913
|
result_path=result_path,
|
|
25256
25914
|
result_selector=result_selector,
|
|
25915
|
+
state_name=state_name,
|
|
25257
25916
|
task_timeout=task_timeout,
|
|
25258
25917
|
timeout=timeout,
|
|
25259
25918
|
)
|
|
@@ -25293,6 +25952,7 @@ class SageMakerCreateTransformJob(
|
|
|
25293
25952
|
"output_path": "outputPath",
|
|
25294
25953
|
"result_path": "resultPath",
|
|
25295
25954
|
"result_selector": "resultSelector",
|
|
25955
|
+
"state_name": "stateName",
|
|
25296
25956
|
"task_timeout": "taskTimeout",
|
|
25297
25957
|
"timeout": "timeout",
|
|
25298
25958
|
"model_name": "modelName",
|
|
@@ -25322,6 +25982,7 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25322
25982
|
output_path: typing.Optional[builtins.str] = None,
|
|
25323
25983
|
result_path: typing.Optional[builtins.str] = None,
|
|
25324
25984
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
25985
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
25325
25986
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
25326
25987
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
25327
25988
|
model_name: builtins.str,
|
|
@@ -25348,6 +26009,7 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25348
26009
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
25349
26010
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
25350
26011
|
: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
|
|
26012
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
25351
26013
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25352
26014
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
25353
26015
|
:param model_name: Name of the model that you want to use for the transform job.
|
|
@@ -25412,6 +26074,7 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25412
26074
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
25413
26075
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
25414
26076
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
26077
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
25415
26078
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
25416
26079
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
25417
26080
|
check_type(argname="argument model_name", value=model_name, expected_type=type_hints["model_name"])
|
|
@@ -25450,6 +26113,8 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25450
26113
|
self._values["result_path"] = result_path
|
|
25451
26114
|
if result_selector is not None:
|
|
25452
26115
|
self._values["result_selector"] = result_selector
|
|
26116
|
+
if state_name is not None:
|
|
26117
|
+
self._values["state_name"] = state_name
|
|
25453
26118
|
if task_timeout is not None:
|
|
25454
26119
|
self._values["task_timeout"] = task_timeout
|
|
25455
26120
|
if timeout is not None:
|
|
@@ -25590,6 +26255,15 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25590
26255
|
result = self._values.get("result_selector")
|
|
25591
26256
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
25592
26257
|
|
|
26258
|
+
@builtins.property
|
|
26259
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
26260
|
+
'''Optional name for this state.
|
|
26261
|
+
|
|
26262
|
+
:default: - The construct ID will be used as state name
|
|
26263
|
+
'''
|
|
26264
|
+
result = self._values.get("state_name")
|
|
26265
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
26266
|
+
|
|
25593
26267
|
@builtins.property
|
|
25594
26268
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
25595
26269
|
'''Timeout for the task.
|
|
@@ -25766,6 +26440,7 @@ class SageMakerUpdateEndpoint(
|
|
|
25766
26440
|
output_path: typing.Optional[builtins.str] = None,
|
|
25767
26441
|
result_path: typing.Optional[builtins.str] = None,
|
|
25768
26442
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
26443
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
25769
26444
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
25770
26445
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
25771
26446
|
) -> None:
|
|
@@ -25783,6 +26458,7 @@ class SageMakerUpdateEndpoint(
|
|
|
25783
26458
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
25784
26459
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
25785
26460
|
: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
|
|
26461
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
25786
26462
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25787
26463
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
25788
26464
|
'''
|
|
@@ -25802,6 +26478,7 @@ class SageMakerUpdateEndpoint(
|
|
|
25802
26478
|
output_path=output_path,
|
|
25803
26479
|
result_path=result_path,
|
|
25804
26480
|
result_selector=result_selector,
|
|
26481
|
+
state_name=state_name,
|
|
25805
26482
|
task_timeout=task_timeout,
|
|
25806
26483
|
timeout=timeout,
|
|
25807
26484
|
)
|
|
@@ -25832,6 +26509,7 @@ class SageMakerUpdateEndpoint(
|
|
|
25832
26509
|
"output_path": "outputPath",
|
|
25833
26510
|
"result_path": "resultPath",
|
|
25834
26511
|
"result_selector": "resultSelector",
|
|
26512
|
+
"state_name": "stateName",
|
|
25835
26513
|
"task_timeout": "taskTimeout",
|
|
25836
26514
|
"timeout": "timeout",
|
|
25837
26515
|
"endpoint_config_name": "endpointConfigName",
|
|
@@ -25851,6 +26529,7 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25851
26529
|
output_path: typing.Optional[builtins.str] = None,
|
|
25852
26530
|
result_path: typing.Optional[builtins.str] = None,
|
|
25853
26531
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
26532
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
25854
26533
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
25855
26534
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
25856
26535
|
endpoint_config_name: builtins.str,
|
|
@@ -25867,6 +26546,7 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25867
26546
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
25868
26547
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
25869
26548
|
: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
|
|
26549
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
25870
26550
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25871
26551
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
25872
26552
|
:param endpoint_config_name: The name of the new endpoint configuration.
|
|
@@ -25895,6 +26575,7 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25895
26575
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
25896
26576
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
25897
26577
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
26578
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
25898
26579
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
25899
26580
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
25900
26581
|
check_type(argname="argument endpoint_config_name", value=endpoint_config_name, expected_type=type_hints["endpoint_config_name"])
|
|
@@ -25921,6 +26602,8 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25921
26602
|
self._values["result_path"] = result_path
|
|
25922
26603
|
if result_selector is not None:
|
|
25923
26604
|
self._values["result_selector"] = result_selector
|
|
26605
|
+
if state_name is not None:
|
|
26606
|
+
self._values["state_name"] = state_name
|
|
25924
26607
|
if task_timeout is not None:
|
|
25925
26608
|
self._values["task_timeout"] = task_timeout
|
|
25926
26609
|
if timeout is not None:
|
|
@@ -26045,6 +26728,15 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26045
26728
|
result = self._values.get("result_selector")
|
|
26046
26729
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
26047
26730
|
|
|
26731
|
+
@builtins.property
|
|
26732
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
26733
|
+
'''Optional name for this state.
|
|
26734
|
+
|
|
26735
|
+
:default: - The construct ID will be used as state name
|
|
26736
|
+
'''
|
|
26737
|
+
result = self._values.get("state_name")
|
|
26738
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
26739
|
+
|
|
26048
26740
|
@builtins.property
|
|
26049
26741
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
26050
26742
|
'''Timeout for the task.
|
|
@@ -26191,6 +26883,8 @@ class SnsPublish(
|
|
|
26191
26883
|
message: _TaskInput_91b91b91,
|
|
26192
26884
|
topic: _ITopic_9eca4852,
|
|
26193
26885
|
message_attributes: typing.Optional[typing.Mapping[builtins.str, typing.Union[MessageAttribute, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
26886
|
+
message_deduplication_id: typing.Optional[builtins.str] = None,
|
|
26887
|
+
message_group_id: typing.Optional[builtins.str] = None,
|
|
26194
26888
|
message_per_subscription_type: typing.Optional[builtins.bool] = None,
|
|
26195
26889
|
subject: typing.Optional[builtins.str] = None,
|
|
26196
26890
|
comment: typing.Optional[builtins.str] = None,
|
|
@@ -26202,6 +26896,7 @@ class SnsPublish(
|
|
|
26202
26896
|
output_path: typing.Optional[builtins.str] = None,
|
|
26203
26897
|
result_path: typing.Optional[builtins.str] = None,
|
|
26204
26898
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
26899
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
26205
26900
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
26206
26901
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
26207
26902
|
) -> None:
|
|
@@ -26211,6 +26906,8 @@ class SnsPublish(
|
|
|
26211
26906
|
:param message: The message you want to send. With the exception of SMS, messages must be UTF-8 encoded strings and at most 256 KB in size. For SMS, each message can contain up to 140 characters.
|
|
26212
26907
|
:param topic: The SNS topic that the task will publish to.
|
|
26213
26908
|
:param message_attributes: Add message attributes when publishing. These attributes carry additional metadata about the message and may be used for subscription filters. Default: {}
|
|
26909
|
+
:param message_deduplication_id: This parameter applies only to FIFO topics. Every message must have a unique MessageDeduplicationId, which is a token used for deduplication of sent messages. If a message with a particular MessageDeduplicationId is sent successfully, any message sent with the same MessageDeduplicationId during the 5-minute deduplication interval is treated as a duplicate. If the topic has ContentBasedDeduplication set, the system generates a MessageDeduplicationId based on the contents of the message. Your MessageDeduplicationId overrides the generated one. Default: - Not used for standard topics, required for FIFO topics with ContentBasedDeduplication disabled.
|
|
26910
|
+
:param message_group_id: This parameter applies only to FIFO topics. The MessageGroupId is a tag that specifies that a message belongs to a specific message group. Messages that belong to the same message group are processed in a FIFO manner (however, messages in different message groups might be processed out of order). Every message must include a MessageGroupId. Default: - Not used for standard topics, required for FIFO topics.
|
|
26214
26911
|
:param message_per_subscription_type: Send different messages for each transport protocol. For example, you might want to send a shorter message to SMS subscribers and a more verbose message to email and SQS subscribers. Your message must be a JSON object with a top-level JSON key of "default" with a value that is a string You can define other top-level keys that define the message you want to send to a specific transport protocol (i.e. "sqs", "email", "http", etc) Default: false
|
|
26215
26912
|
:param subject: Used as the "Subject" line when the message is delivered to email endpoints. This field will also be included, if present, in the standard JSON messages delivered to other endpoints. Default: - No subject
|
|
26216
26913
|
:param comment: An optional description for this state. Default: - No comment
|
|
@@ -26222,6 +26919,7 @@ class SnsPublish(
|
|
|
26222
26919
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
26223
26920
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
26224
26921
|
: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
|
|
26922
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
26225
26923
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
26226
26924
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
26227
26925
|
'''
|
|
@@ -26233,6 +26931,8 @@ class SnsPublish(
|
|
|
26233
26931
|
message=message,
|
|
26234
26932
|
topic=topic,
|
|
26235
26933
|
message_attributes=message_attributes,
|
|
26934
|
+
message_deduplication_id=message_deduplication_id,
|
|
26935
|
+
message_group_id=message_group_id,
|
|
26236
26936
|
message_per_subscription_type=message_per_subscription_type,
|
|
26237
26937
|
subject=subject,
|
|
26238
26938
|
comment=comment,
|
|
@@ -26244,6 +26944,7 @@ class SnsPublish(
|
|
|
26244
26944
|
output_path=output_path,
|
|
26245
26945
|
result_path=result_path,
|
|
26246
26946
|
result_selector=result_selector,
|
|
26947
|
+
state_name=state_name,
|
|
26247
26948
|
task_timeout=task_timeout,
|
|
26248
26949
|
timeout=timeout,
|
|
26249
26950
|
)
|
|
@@ -26274,11 +26975,14 @@ class SnsPublish(
|
|
|
26274
26975
|
"output_path": "outputPath",
|
|
26275
26976
|
"result_path": "resultPath",
|
|
26276
26977
|
"result_selector": "resultSelector",
|
|
26978
|
+
"state_name": "stateName",
|
|
26277
26979
|
"task_timeout": "taskTimeout",
|
|
26278
26980
|
"timeout": "timeout",
|
|
26279
26981
|
"message": "message",
|
|
26280
26982
|
"topic": "topic",
|
|
26281
26983
|
"message_attributes": "messageAttributes",
|
|
26984
|
+
"message_deduplication_id": "messageDeduplicationId",
|
|
26985
|
+
"message_group_id": "messageGroupId",
|
|
26282
26986
|
"message_per_subscription_type": "messagePerSubscriptionType",
|
|
26283
26987
|
"subject": "subject",
|
|
26284
26988
|
},
|
|
@@ -26296,11 +27000,14 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26296
27000
|
output_path: typing.Optional[builtins.str] = None,
|
|
26297
27001
|
result_path: typing.Optional[builtins.str] = None,
|
|
26298
27002
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
27003
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
26299
27004
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
26300
27005
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
26301
27006
|
message: _TaskInput_91b91b91,
|
|
26302
27007
|
topic: _ITopic_9eca4852,
|
|
26303
27008
|
message_attributes: typing.Optional[typing.Mapping[builtins.str, typing.Union[MessageAttribute, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27009
|
+
message_deduplication_id: typing.Optional[builtins.str] = None,
|
|
27010
|
+
message_group_id: typing.Optional[builtins.str] = None,
|
|
26304
27011
|
message_per_subscription_type: typing.Optional[builtins.bool] = None,
|
|
26305
27012
|
subject: typing.Optional[builtins.str] = None,
|
|
26306
27013
|
) -> None:
|
|
@@ -26315,11 +27022,14 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26315
27022
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
26316
27023
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
26317
27024
|
: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
|
|
27025
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
26318
27026
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
26319
27027
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
26320
27028
|
:param message: The message you want to send. With the exception of SMS, messages must be UTF-8 encoded strings and at most 256 KB in size. For SMS, each message can contain up to 140 characters.
|
|
26321
27029
|
:param topic: The SNS topic that the task will publish to.
|
|
26322
27030
|
:param message_attributes: Add message attributes when publishing. These attributes carry additional metadata about the message and may be used for subscription filters. Default: {}
|
|
27031
|
+
:param message_deduplication_id: This parameter applies only to FIFO topics. Every message must have a unique MessageDeduplicationId, which is a token used for deduplication of sent messages. If a message with a particular MessageDeduplicationId is sent successfully, any message sent with the same MessageDeduplicationId during the 5-minute deduplication interval is treated as a duplicate. If the topic has ContentBasedDeduplication set, the system generates a MessageDeduplicationId based on the contents of the message. Your MessageDeduplicationId overrides the generated one. Default: - Not used for standard topics, required for FIFO topics with ContentBasedDeduplication disabled.
|
|
27032
|
+
:param message_group_id: This parameter applies only to FIFO topics. The MessageGroupId is a tag that specifies that a message belongs to a specific message group. Messages that belong to the same message group are processed in a FIFO manner (however, messages in different message groups might be processed out of order). Every message must include a MessageGroupId. Default: - Not used for standard topics, required for FIFO topics.
|
|
26323
27033
|
:param message_per_subscription_type: Send different messages for each transport protocol. For example, you might want to send a shorter message to SMS subscribers and a more verbose message to email and SQS subscribers. Your message must be a JSON object with a top-level JSON key of "default" with a value that is a string You can define other top-level keys that define the message you want to send to a specific transport protocol (i.e. "sqs", "email", "http", etc) Default: false
|
|
26324
27034
|
:param subject: Used as the "Subject" line when the message is delivered to email endpoints. This field will also be included, if present, in the standard JSON messages delivered to other endpoints. Default: - No subject
|
|
26325
27035
|
|
|
@@ -26366,11 +27076,14 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26366
27076
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
26367
27077
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
26368
27078
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
27079
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
26369
27080
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
26370
27081
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
26371
27082
|
check_type(argname="argument message", value=message, expected_type=type_hints["message"])
|
|
26372
27083
|
check_type(argname="argument topic", value=topic, expected_type=type_hints["topic"])
|
|
26373
27084
|
check_type(argname="argument message_attributes", value=message_attributes, expected_type=type_hints["message_attributes"])
|
|
27085
|
+
check_type(argname="argument message_deduplication_id", value=message_deduplication_id, expected_type=type_hints["message_deduplication_id"])
|
|
27086
|
+
check_type(argname="argument message_group_id", value=message_group_id, expected_type=type_hints["message_group_id"])
|
|
26374
27087
|
check_type(argname="argument message_per_subscription_type", value=message_per_subscription_type, expected_type=type_hints["message_per_subscription_type"])
|
|
26375
27088
|
check_type(argname="argument subject", value=subject, expected_type=type_hints["subject"])
|
|
26376
27089
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -26395,12 +27108,18 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26395
27108
|
self._values["result_path"] = result_path
|
|
26396
27109
|
if result_selector is not None:
|
|
26397
27110
|
self._values["result_selector"] = result_selector
|
|
27111
|
+
if state_name is not None:
|
|
27112
|
+
self._values["state_name"] = state_name
|
|
26398
27113
|
if task_timeout is not None:
|
|
26399
27114
|
self._values["task_timeout"] = task_timeout
|
|
26400
27115
|
if timeout is not None:
|
|
26401
27116
|
self._values["timeout"] = timeout
|
|
26402
27117
|
if message_attributes is not None:
|
|
26403
27118
|
self._values["message_attributes"] = message_attributes
|
|
27119
|
+
if message_deduplication_id is not None:
|
|
27120
|
+
self._values["message_deduplication_id"] = message_deduplication_id
|
|
27121
|
+
if message_group_id is not None:
|
|
27122
|
+
self._values["message_group_id"] = message_group_id
|
|
26404
27123
|
if message_per_subscription_type is not None:
|
|
26405
27124
|
self._values["message_per_subscription_type"] = message_per_subscription_type
|
|
26406
27125
|
if subject is not None:
|
|
@@ -26525,6 +27244,15 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26525
27244
|
result = self._values.get("result_selector")
|
|
26526
27245
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
26527
27246
|
|
|
27247
|
+
@builtins.property
|
|
27248
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
27249
|
+
'''Optional name for this state.
|
|
27250
|
+
|
|
27251
|
+
:default: - The construct ID will be used as state name
|
|
27252
|
+
'''
|
|
27253
|
+
result = self._values.get("state_name")
|
|
27254
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
27255
|
+
|
|
26528
27256
|
@builtins.property
|
|
26529
27257
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
26530
27258
|
'''Timeout for the task.
|
|
@@ -26585,6 +27313,36 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26585
27313
|
result = self._values.get("message_attributes")
|
|
26586
27314
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, MessageAttribute]], result)
|
|
26587
27315
|
|
|
27316
|
+
@builtins.property
|
|
27317
|
+
def message_deduplication_id(self) -> typing.Optional[builtins.str]:
|
|
27318
|
+
'''This parameter applies only to FIFO topics.
|
|
27319
|
+
|
|
27320
|
+
Every message must have a unique MessageDeduplicationId, which is a token used for deduplication of sent messages.
|
|
27321
|
+
If a message with a particular MessageDeduplicationId is sent successfully, any message sent with the same MessageDeduplicationId
|
|
27322
|
+
during the 5-minute deduplication interval is treated as a duplicate.
|
|
27323
|
+
|
|
27324
|
+
If the topic has ContentBasedDeduplication set, the system generates a MessageDeduplicationId
|
|
27325
|
+
based on the contents of the message. Your MessageDeduplicationId overrides the generated one.
|
|
27326
|
+
|
|
27327
|
+
:default: - Not used for standard topics, required for FIFO topics with ContentBasedDeduplication disabled.
|
|
27328
|
+
'''
|
|
27329
|
+
result = self._values.get("message_deduplication_id")
|
|
27330
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
27331
|
+
|
|
27332
|
+
@builtins.property
|
|
27333
|
+
def message_group_id(self) -> typing.Optional[builtins.str]:
|
|
27334
|
+
'''This parameter applies only to FIFO topics.
|
|
27335
|
+
|
|
27336
|
+
The MessageGroupId is a tag that specifies that a message belongs to a specific message group.
|
|
27337
|
+
Messages that belong to the same message group are processed in a FIFO manner
|
|
27338
|
+
(however, messages in different message groups might be processed out of order).
|
|
27339
|
+
Every message must include a MessageGroupId.
|
|
27340
|
+
|
|
27341
|
+
:default: - Not used for standard topics, required for FIFO topics.
|
|
27342
|
+
'''
|
|
27343
|
+
result = self._values.get("message_group_id")
|
|
27344
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
27345
|
+
|
|
26588
27346
|
@builtins.property
|
|
26589
27347
|
def message_per_subscription_type(self) -> typing.Optional[builtins.bool]:
|
|
26590
27348
|
'''Send different messages for each transport protocol.
|
|
@@ -26795,6 +27553,7 @@ class SqsSendMessage(
|
|
|
26795
27553
|
output_path: typing.Optional[builtins.str] = None,
|
|
26796
27554
|
result_path: typing.Optional[builtins.str] = None,
|
|
26797
27555
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
27556
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
26798
27557
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
26799
27558
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
26800
27559
|
) -> None:
|
|
@@ -26815,6 +27574,7 @@ class SqsSendMessage(
|
|
|
26815
27574
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
26816
27575
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
26817
27576
|
: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
|
|
27577
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
26818
27578
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
26819
27579
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
26820
27580
|
'''
|
|
@@ -26837,6 +27597,7 @@ class SqsSendMessage(
|
|
|
26837
27597
|
output_path=output_path,
|
|
26838
27598
|
result_path=result_path,
|
|
26839
27599
|
result_selector=result_selector,
|
|
27600
|
+
state_name=state_name,
|
|
26840
27601
|
task_timeout=task_timeout,
|
|
26841
27602
|
timeout=timeout,
|
|
26842
27603
|
)
|
|
@@ -26867,6 +27628,7 @@ class SqsSendMessage(
|
|
|
26867
27628
|
"output_path": "outputPath",
|
|
26868
27629
|
"result_path": "resultPath",
|
|
26869
27630
|
"result_selector": "resultSelector",
|
|
27631
|
+
"state_name": "stateName",
|
|
26870
27632
|
"task_timeout": "taskTimeout",
|
|
26871
27633
|
"timeout": "timeout",
|
|
26872
27634
|
"message_body": "messageBody",
|
|
@@ -26889,6 +27651,7 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26889
27651
|
output_path: typing.Optional[builtins.str] = None,
|
|
26890
27652
|
result_path: typing.Optional[builtins.str] = None,
|
|
26891
27653
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
27654
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
26892
27655
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
26893
27656
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
26894
27657
|
message_body: _TaskInput_91b91b91,
|
|
@@ -26908,6 +27671,7 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26908
27671
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
26909
27672
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
26910
27673
|
: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
|
|
27674
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
26911
27675
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
26912
27676
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
26913
27677
|
:param message_body: The text message to send to the queue.
|
|
@@ -26951,6 +27715,7 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26951
27715
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
26952
27716
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
26953
27717
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
27718
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
26954
27719
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
26955
27720
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
26956
27721
|
check_type(argname="argument message_body", value=message_body, expected_type=type_hints["message_body"])
|
|
@@ -26980,6 +27745,8 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26980
27745
|
self._values["result_path"] = result_path
|
|
26981
27746
|
if result_selector is not None:
|
|
26982
27747
|
self._values["result_selector"] = result_selector
|
|
27748
|
+
if state_name is not None:
|
|
27749
|
+
self._values["state_name"] = state_name
|
|
26983
27750
|
if task_timeout is not None:
|
|
26984
27751
|
self._values["task_timeout"] = task_timeout
|
|
26985
27752
|
if timeout is not None:
|
|
@@ -27110,6 +27877,15 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27110
27877
|
result = self._values.get("result_selector")
|
|
27111
27878
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
27112
27879
|
|
|
27880
|
+
@builtins.property
|
|
27881
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
27882
|
+
'''Optional name for this state.
|
|
27883
|
+
|
|
27884
|
+
:default: - The construct ID will be used as state name
|
|
27885
|
+
'''
|
|
27886
|
+
result = self._values.get("state_name")
|
|
27887
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
27888
|
+
|
|
27113
27889
|
@builtins.property
|
|
27114
27890
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
27115
27891
|
'''Timeout for the task.
|
|
@@ -27236,6 +28012,7 @@ class StepFunctionsInvokeActivity(
|
|
|
27236
28012
|
output_path: typing.Optional[builtins.str] = None,
|
|
27237
28013
|
result_path: typing.Optional[builtins.str] = None,
|
|
27238
28014
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
28015
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
27239
28016
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
27240
28017
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
27241
28018
|
) -> None:
|
|
@@ -27253,6 +28030,7 @@ class StepFunctionsInvokeActivity(
|
|
|
27253
28030
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
27254
28031
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
27255
28032
|
: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
|
|
28033
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
27256
28034
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
27257
28035
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
27258
28036
|
'''
|
|
@@ -27272,6 +28050,7 @@ class StepFunctionsInvokeActivity(
|
|
|
27272
28050
|
output_path=output_path,
|
|
27273
28051
|
result_path=result_path,
|
|
27274
28052
|
result_selector=result_selector,
|
|
28053
|
+
state_name=state_name,
|
|
27275
28054
|
task_timeout=task_timeout,
|
|
27276
28055
|
timeout=timeout,
|
|
27277
28056
|
)
|
|
@@ -27302,6 +28081,7 @@ class StepFunctionsInvokeActivity(
|
|
|
27302
28081
|
"output_path": "outputPath",
|
|
27303
28082
|
"result_path": "resultPath",
|
|
27304
28083
|
"result_selector": "resultSelector",
|
|
28084
|
+
"state_name": "stateName",
|
|
27305
28085
|
"task_timeout": "taskTimeout",
|
|
27306
28086
|
"timeout": "timeout",
|
|
27307
28087
|
"activity": "activity",
|
|
@@ -27321,6 +28101,7 @@ class StepFunctionsInvokeActivityProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27321
28101
|
output_path: typing.Optional[builtins.str] = None,
|
|
27322
28102
|
result_path: typing.Optional[builtins.str] = None,
|
|
27323
28103
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
28104
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
27324
28105
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
27325
28106
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
27326
28107
|
activity: _IActivity_3cf6efa2,
|
|
@@ -27337,6 +28118,7 @@ class StepFunctionsInvokeActivityProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27337
28118
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
27338
28119
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
27339
28120
|
: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
|
|
28121
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
27340
28122
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
27341
28123
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
27342
28124
|
:param activity: Step Functions Activity to invoke.
|
|
@@ -27365,6 +28147,7 @@ class StepFunctionsInvokeActivityProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27365
28147
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
27366
28148
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
27367
28149
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
28150
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
27368
28151
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
27369
28152
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
27370
28153
|
check_type(argname="argument activity", value=activity, expected_type=type_hints["activity"])
|
|
@@ -27390,6 +28173,8 @@ class StepFunctionsInvokeActivityProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27390
28173
|
self._values["result_path"] = result_path
|
|
27391
28174
|
if result_selector is not None:
|
|
27392
28175
|
self._values["result_selector"] = result_selector
|
|
28176
|
+
if state_name is not None:
|
|
28177
|
+
self._values["state_name"] = state_name
|
|
27393
28178
|
if task_timeout is not None:
|
|
27394
28179
|
self._values["task_timeout"] = task_timeout
|
|
27395
28180
|
if timeout is not None:
|
|
@@ -27516,6 +28301,15 @@ class StepFunctionsInvokeActivityProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27516
28301
|
result = self._values.get("result_selector")
|
|
27517
28302
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
27518
28303
|
|
|
28304
|
+
@builtins.property
|
|
28305
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
28306
|
+
'''Optional name for this state.
|
|
28307
|
+
|
|
28308
|
+
:default: - The construct ID will be used as state name
|
|
28309
|
+
'''
|
|
28310
|
+
result = self._values.get("state_name")
|
|
28311
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
28312
|
+
|
|
27519
28313
|
@builtins.property
|
|
27520
28314
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
27521
28315
|
'''Timeout for the task.
|
|
@@ -27624,6 +28418,7 @@ class StepFunctionsStartExecution(
|
|
|
27624
28418
|
output_path: typing.Optional[builtins.str] = None,
|
|
27625
28419
|
result_path: typing.Optional[builtins.str] = None,
|
|
27626
28420
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
28421
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
27627
28422
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
27628
28423
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
27629
28424
|
) -> None:
|
|
@@ -27643,6 +28438,7 @@ class StepFunctionsStartExecution(
|
|
|
27643
28438
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
27644
28439
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
27645
28440
|
: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
|
|
28441
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
27646
28442
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
27647
28443
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
27648
28444
|
'''
|
|
@@ -27664,6 +28460,7 @@ class StepFunctionsStartExecution(
|
|
|
27664
28460
|
output_path=output_path,
|
|
27665
28461
|
result_path=result_path,
|
|
27666
28462
|
result_selector=result_selector,
|
|
28463
|
+
state_name=state_name,
|
|
27667
28464
|
task_timeout=task_timeout,
|
|
27668
28465
|
timeout=timeout,
|
|
27669
28466
|
)
|
|
@@ -27694,6 +28491,7 @@ class StepFunctionsStartExecution(
|
|
|
27694
28491
|
"output_path": "outputPath",
|
|
27695
28492
|
"result_path": "resultPath",
|
|
27696
28493
|
"result_selector": "resultSelector",
|
|
28494
|
+
"state_name": "stateName",
|
|
27697
28495
|
"task_timeout": "taskTimeout",
|
|
27698
28496
|
"timeout": "timeout",
|
|
27699
28497
|
"state_machine": "stateMachine",
|
|
@@ -27715,6 +28513,7 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27715
28513
|
output_path: typing.Optional[builtins.str] = None,
|
|
27716
28514
|
result_path: typing.Optional[builtins.str] = None,
|
|
27717
28515
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
28516
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
27718
28517
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
27719
28518
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
27720
28519
|
state_machine: _IStateMachine_73e8d2b0,
|
|
@@ -27733,6 +28532,7 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27733
28532
|
:param output_path: JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}. Default: - The entire JSON node determined by the state input, the task result, and resultPath is passed to the next state (JSON path '$')
|
|
27734
28533
|
: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: - Replaces the entire input with the result (JSON path '$')
|
|
27735
28534
|
: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
|
|
28535
|
+
:param state_name: Optional name for this state. Default: - The construct ID will be used as state name
|
|
27736
28536
|
:param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
27737
28537
|
:param timeout: (deprecated) Timeout for the task. Default: - None
|
|
27738
28538
|
:param state_machine: The Step Functions state machine to start the execution on.
|
|
@@ -27778,6 +28578,7 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27778
28578
|
check_type(argname="argument output_path", value=output_path, expected_type=type_hints["output_path"])
|
|
27779
28579
|
check_type(argname="argument result_path", value=result_path, expected_type=type_hints["result_path"])
|
|
27780
28580
|
check_type(argname="argument result_selector", value=result_selector, expected_type=type_hints["result_selector"])
|
|
28581
|
+
check_type(argname="argument state_name", value=state_name, expected_type=type_hints["state_name"])
|
|
27781
28582
|
check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
|
|
27782
28583
|
check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
|
|
27783
28584
|
check_type(argname="argument state_machine", value=state_machine, expected_type=type_hints["state_machine"])
|
|
@@ -27805,6 +28606,8 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27805
28606
|
self._values["result_path"] = result_path
|
|
27806
28607
|
if result_selector is not None:
|
|
27807
28608
|
self._values["result_selector"] = result_selector
|
|
28609
|
+
if state_name is not None:
|
|
28610
|
+
self._values["state_name"] = state_name
|
|
27808
28611
|
if task_timeout is not None:
|
|
27809
28612
|
self._values["task_timeout"] = task_timeout
|
|
27810
28613
|
if timeout is not None:
|
|
@@ -27935,6 +28738,15 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27935
28738
|
result = self._values.get("result_selector")
|
|
27936
28739
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
27937
28740
|
|
|
28741
|
+
@builtins.property
|
|
28742
|
+
def state_name(self) -> typing.Optional[builtins.str]:
|
|
28743
|
+
'''Optional name for this state.
|
|
28744
|
+
|
|
28745
|
+
:default: - The construct ID will be used as state name
|
|
28746
|
+
'''
|
|
28747
|
+
result = self._values.get("state_name")
|
|
28748
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
28749
|
+
|
|
27938
28750
|
@builtins.property
|
|
27939
28751
|
def task_timeout(self) -> typing.Optional[_Timeout_d7c10551]:
|
|
27940
28752
|
'''Timeout for the task.
|
|
@@ -29235,6 +30047,7 @@ def _typecheckingstub__f874d4b3d8cca8a1aa5d7809bc14fb2078e4f8cbdcf8a7ade80f98ea3
|
|
|
29235
30047
|
output_path: typing.Optional[builtins.str] = None,
|
|
29236
30048
|
result_path: typing.Optional[builtins.str] = None,
|
|
29237
30049
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30050
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29238
30051
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29239
30052
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29240
30053
|
) -> None:
|
|
@@ -29252,6 +30065,7 @@ def _typecheckingstub__426b683b3fff9459413103d38b8f467a1eef7b493511c26ddef6ccaf2
|
|
|
29252
30065
|
output_path: typing.Optional[builtins.str] = None,
|
|
29253
30066
|
result_path: typing.Optional[builtins.str] = None,
|
|
29254
30067
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30068
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29255
30069
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29256
30070
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29257
30071
|
query_execution_id: builtins.str,
|
|
@@ -29275,6 +30089,7 @@ def _typecheckingstub__4fbcf740a1e3e37ea0b4976ce01dbba60ab814c75d0b05f5ea68b86ab
|
|
|
29275
30089
|
output_path: typing.Optional[builtins.str] = None,
|
|
29276
30090
|
result_path: typing.Optional[builtins.str] = None,
|
|
29277
30091
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30092
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29278
30093
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29279
30094
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29280
30095
|
) -> None:
|
|
@@ -29292,6 +30107,7 @@ def _typecheckingstub__e62d5ebfcc36e5adfee6cea02c96ccdc0cba73b7dc4169d47fcd62e6b
|
|
|
29292
30107
|
output_path: typing.Optional[builtins.str] = None,
|
|
29293
30108
|
result_path: typing.Optional[builtins.str] = None,
|
|
29294
30109
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30110
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29295
30111
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29296
30112
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29297
30113
|
query_execution_id: builtins.str,
|
|
@@ -29307,6 +30123,7 @@ def _typecheckingstub__74ee21cd0bad6760da4cd18a6c4cd846a24d69d25b7bac8eb004edf64
|
|
|
29307
30123
|
*,
|
|
29308
30124
|
query_string: builtins.str,
|
|
29309
30125
|
client_request_token: typing.Optional[builtins.str] = None,
|
|
30126
|
+
execution_parameters: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
29310
30127
|
query_execution_context: typing.Optional[typing.Union[QueryExecutionContext, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
29311
30128
|
result_configuration: typing.Optional[typing.Union[ResultConfiguration, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
29312
30129
|
work_group: typing.Optional[builtins.str] = None,
|
|
@@ -29319,6 +30136,7 @@ def _typecheckingstub__74ee21cd0bad6760da4cd18a6c4cd846a24d69d25b7bac8eb004edf64
|
|
|
29319
30136
|
output_path: typing.Optional[builtins.str] = None,
|
|
29320
30137
|
result_path: typing.Optional[builtins.str] = None,
|
|
29321
30138
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30139
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29322
30140
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29323
30141
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29324
30142
|
) -> None:
|
|
@@ -29336,10 +30154,12 @@ def _typecheckingstub__d2b6c9868cc3485b4ed4a4ef1f89308086ff873bc4d86413aa4b420c9
|
|
|
29336
30154
|
output_path: typing.Optional[builtins.str] = None,
|
|
29337
30155
|
result_path: typing.Optional[builtins.str] = None,
|
|
29338
30156
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30157
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29339
30158
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29340
30159
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29341
30160
|
query_string: builtins.str,
|
|
29342
30161
|
client_request_token: typing.Optional[builtins.str] = None,
|
|
30162
|
+
execution_parameters: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
29343
30163
|
query_execution_context: typing.Optional[typing.Union[QueryExecutionContext, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
29344
30164
|
result_configuration: typing.Optional[typing.Union[ResultConfiguration, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
29345
30165
|
work_group: typing.Optional[builtins.str] = None,
|
|
@@ -29361,6 +30181,7 @@ def _typecheckingstub__6d67b0a74228051a1266e72262ec4fc6e739a35f07a82a3e5faf57fbe
|
|
|
29361
30181
|
output_path: typing.Optional[builtins.str] = None,
|
|
29362
30182
|
result_path: typing.Optional[builtins.str] = None,
|
|
29363
30183
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30184
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29364
30185
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29365
30186
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29366
30187
|
) -> None:
|
|
@@ -29378,6 +30199,7 @@ def _typecheckingstub__95e47c48916d5954411b46d2ffee40460efc3e552562676549f5de7fe
|
|
|
29378
30199
|
output_path: typing.Optional[builtins.str] = None,
|
|
29379
30200
|
result_path: typing.Optional[builtins.str] = None,
|
|
29380
30201
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30202
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29381
30203
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29382
30204
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29383
30205
|
query_execution_id: builtins.str,
|
|
@@ -29427,6 +30249,7 @@ def _typecheckingstub__fe5d08d3f91a8bb221c70885cc736bf4f22481309f41eda6cfe2f1829
|
|
|
29427
30249
|
output_path: typing.Optional[builtins.str] = None,
|
|
29428
30250
|
result_path: typing.Optional[builtins.str] = None,
|
|
29429
30251
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30252
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29430
30253
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29431
30254
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29432
30255
|
) -> None:
|
|
@@ -29444,6 +30267,7 @@ def _typecheckingstub__c3197d21dad4ba55e29e09cf770b47b7859167ae6b1ae5ef674cca1be
|
|
|
29444
30267
|
output_path: typing.Optional[builtins.str] = None,
|
|
29445
30268
|
result_path: typing.Optional[builtins.str] = None,
|
|
29446
30269
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30270
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29447
30271
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29448
30272
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29449
30273
|
job_definition_arn: builtins.str,
|
|
@@ -29470,6 +30294,7 @@ def _typecheckingstub__e9dbc58cb4f9a28fbab12032a3c39bc929dcf76e35816fe9ba25aab36
|
|
|
29470
30294
|
output_path: typing.Optional[builtins.str] = None,
|
|
29471
30295
|
result_path: typing.Optional[builtins.str] = None,
|
|
29472
30296
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30297
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29473
30298
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29474
30299
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29475
30300
|
method: HttpMethod,
|
|
@@ -29504,6 +30329,7 @@ def _typecheckingstub__1e727eac1466f73756eed51efa40866442f05dae5d955ec7e6f153902
|
|
|
29504
30329
|
output_path: typing.Optional[builtins.str] = None,
|
|
29505
30330
|
result_path: typing.Optional[builtins.str] = None,
|
|
29506
30331
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30332
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29507
30333
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29508
30334
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29509
30335
|
) -> None:
|
|
@@ -29521,6 +30347,7 @@ def _typecheckingstub__8a41fc59378bfacae33639438a7a9b775728e418d0a325893bbe9defe
|
|
|
29521
30347
|
output_path: typing.Optional[builtins.str] = None,
|
|
29522
30348
|
result_path: typing.Optional[builtins.str] = None,
|
|
29523
30349
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30350
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29524
30351
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29525
30352
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29526
30353
|
method: HttpMethod,
|
|
@@ -29557,6 +30384,7 @@ def _typecheckingstub__a76886b18651b0cbd9c7ad80e6a462a8540904f212eeb56575f9a2c9a
|
|
|
29557
30384
|
output_path: typing.Optional[builtins.str] = None,
|
|
29558
30385
|
result_path: typing.Optional[builtins.str] = None,
|
|
29559
30386
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30387
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29560
30388
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29561
30389
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29562
30390
|
) -> None:
|
|
@@ -29574,6 +30402,7 @@ def _typecheckingstub__f5e083701921cac85bdeb9778c84e51785062fe16c2575a0df424f5a5
|
|
|
29574
30402
|
output_path: typing.Optional[builtins.str] = None,
|
|
29575
30403
|
result_path: typing.Optional[builtins.str] = None,
|
|
29576
30404
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30405
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29577
30406
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29578
30407
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29579
30408
|
method: HttpMethod,
|
|
@@ -29607,6 +30436,7 @@ def _typecheckingstub__e4534f8232f0840d6ef9dc3920130b2d24934f22c4483b9bd14a19e81
|
|
|
29607
30436
|
output_path: typing.Optional[builtins.str] = None,
|
|
29608
30437
|
result_path: typing.Optional[builtins.str] = None,
|
|
29609
30438
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30439
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29610
30440
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29611
30441
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29612
30442
|
) -> None:
|
|
@@ -29624,6 +30454,7 @@ def _typecheckingstub__63c577047b5ec17a682dc869c299af67611178c845f52baceb7e79927
|
|
|
29624
30454
|
output_path: typing.Optional[builtins.str] = None,
|
|
29625
30455
|
result_path: typing.Optional[builtins.str] = None,
|
|
29626
30456
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30457
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29627
30458
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29628
30459
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29629
30460
|
action: builtins.str,
|
|
@@ -29670,6 +30501,7 @@ def _typecheckingstub__c7420ddc3c5f914d45be1248775c7909c2f866fec2613b9197535be32
|
|
|
29670
30501
|
output_path: typing.Optional[builtins.str] = None,
|
|
29671
30502
|
result_path: typing.Optional[builtins.str] = None,
|
|
29672
30503
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30504
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29673
30505
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29674
30506
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29675
30507
|
) -> None:
|
|
@@ -29687,6 +30519,7 @@ def _typecheckingstub__ebd97f3c78209d84d4f3a8d1f76a2b5cb48ba6488d6d752e425bf3de3
|
|
|
29687
30519
|
output_path: typing.Optional[builtins.str] = None,
|
|
29688
30520
|
result_path: typing.Optional[builtins.str] = None,
|
|
29689
30521
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30522
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29690
30523
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29691
30524
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29692
30525
|
project: _IProject_aafae30a,
|
|
@@ -29924,6 +30757,7 @@ def _typecheckingstub__edb1d36a100179709070b2a353dbc0d0f9dccc17168862b0e912fbc42
|
|
|
29924
30757
|
output_path: typing.Optional[builtins.str] = None,
|
|
29925
30758
|
result_path: typing.Optional[builtins.str] = None,
|
|
29926
30759
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30760
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29927
30761
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29928
30762
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29929
30763
|
) -> None:
|
|
@@ -29941,6 +30775,7 @@ def _typecheckingstub__510b0be6b21e762c909dde7691f4bf61c85378c52e4d86e80ef8e2ef6
|
|
|
29941
30775
|
output_path: typing.Optional[builtins.str] = None,
|
|
29942
30776
|
result_path: typing.Optional[builtins.str] = None,
|
|
29943
30777
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30778
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29944
30779
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29945
30780
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29946
30781
|
key: typing.Mapping[builtins.str, DynamoAttributeValue],
|
|
@@ -29974,6 +30809,7 @@ def _typecheckingstub__4a48aa717b6b76ef93a4795798a823a4c793e85cdb6e1994bad7a54cc
|
|
|
29974
30809
|
output_path: typing.Optional[builtins.str] = None,
|
|
29975
30810
|
result_path: typing.Optional[builtins.str] = None,
|
|
29976
30811
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30812
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29977
30813
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29978
30814
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29979
30815
|
) -> None:
|
|
@@ -29991,6 +30827,7 @@ def _typecheckingstub__b3bf052a704a02426d42f908423a0d52a8c6b1252e3a38c30d6e41a41
|
|
|
29991
30827
|
output_path: typing.Optional[builtins.str] = None,
|
|
29992
30828
|
result_path: typing.Optional[builtins.str] = None,
|
|
29993
30829
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30830
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
29994
30831
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
29995
30832
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
29996
30833
|
key: typing.Mapping[builtins.str, DynamoAttributeValue],
|
|
@@ -30036,6 +30873,7 @@ def _typecheckingstub__908da2e1959e7dd9a6fb0b8888d346015e5a113821bb480e8aa19402a
|
|
|
30036
30873
|
output_path: typing.Optional[builtins.str] = None,
|
|
30037
30874
|
result_path: typing.Optional[builtins.str] = None,
|
|
30038
30875
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30876
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30039
30877
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30040
30878
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30041
30879
|
) -> None:
|
|
@@ -30053,6 +30891,7 @@ def _typecheckingstub__955d8ae263b142df28d2448d874e1df52a64b2f0b68fdf91f649288df
|
|
|
30053
30891
|
output_path: typing.Optional[builtins.str] = None,
|
|
30054
30892
|
result_path: typing.Optional[builtins.str] = None,
|
|
30055
30893
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30894
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30056
30895
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30057
30896
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30058
30897
|
item: typing.Mapping[builtins.str, DynamoAttributeValue],
|
|
@@ -30089,6 +30928,7 @@ def _typecheckingstub__f896817c76b8d681471c18eb94a64c54da31608671fa9dd54c2488298
|
|
|
30089
30928
|
output_path: typing.Optional[builtins.str] = None,
|
|
30090
30929
|
result_path: typing.Optional[builtins.str] = None,
|
|
30091
30930
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30931
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30092
30932
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30093
30933
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30094
30934
|
) -> None:
|
|
@@ -30106,6 +30946,7 @@ def _typecheckingstub__e7aea420152cc3e3e8760f2c58796d00aeae52b0f65e38d68c8a67540
|
|
|
30106
30946
|
output_path: typing.Optional[builtins.str] = None,
|
|
30107
30947
|
result_path: typing.Optional[builtins.str] = None,
|
|
30108
30948
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
30949
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30109
30950
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30110
30951
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30111
30952
|
key: typing.Mapping[builtins.str, DynamoAttributeValue],
|
|
@@ -30165,6 +31006,7 @@ def _typecheckingstub__1b9fa1de6876853cd0aa59517079cbcfc7017daf643f17b13556a7a5f
|
|
|
30165
31006
|
output_path: typing.Optional[builtins.str] = None,
|
|
30166
31007
|
result_path: typing.Optional[builtins.str] = None,
|
|
30167
31008
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31009
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30168
31010
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30169
31011
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30170
31012
|
) -> None:
|
|
@@ -30182,6 +31024,7 @@ def _typecheckingstub__4f880997570006602fac387ce93510039132ec3f42612722766b67ec6
|
|
|
30182
31024
|
output_path: typing.Optional[builtins.str] = None,
|
|
30183
31025
|
result_path: typing.Optional[builtins.str] = None,
|
|
30184
31026
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31027
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30185
31028
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30186
31029
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30187
31030
|
cluster: _ICluster_16cddd09,
|
|
@@ -30215,6 +31058,7 @@ def _typecheckingstub__bfd7c8b4f5f0a6a73672aa71209e22351ee76daf9aeecf0866a8edb50
|
|
|
30215
31058
|
output_path: typing.Optional[builtins.str] = None,
|
|
30216
31059
|
result_path: typing.Optional[builtins.str] = None,
|
|
30217
31060
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31061
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30218
31062
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30219
31063
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30220
31064
|
) -> None:
|
|
@@ -30232,6 +31076,7 @@ def _typecheckingstub__e58be48e4bfa4586fe34b8a7150b2912601a5e10bf73dc98bed0745cc
|
|
|
30232
31076
|
output_path: typing.Optional[builtins.str] = None,
|
|
30233
31077
|
result_path: typing.Optional[builtins.str] = None,
|
|
30234
31078
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31079
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30235
31080
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30236
31081
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30237
31082
|
cluster: _ICluster_6b2b80df,
|
|
@@ -30275,6 +31120,7 @@ def _typecheckingstub__3889d4459b3d727348b867bd8b4b4db43cb1a83f081697d2504a78836
|
|
|
30275
31120
|
output_path: typing.Optional[builtins.str] = None,
|
|
30276
31121
|
result_path: typing.Optional[builtins.str] = None,
|
|
30277
31122
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31123
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30278
31124
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30279
31125
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30280
31126
|
) -> None:
|
|
@@ -30292,6 +31138,7 @@ def _typecheckingstub__16e8ce40cbe4d2af2daa80fd98236e2d21a2b602039be22115fc95da9
|
|
|
30292
31138
|
output_path: typing.Optional[builtins.str] = None,
|
|
30293
31139
|
result_path: typing.Optional[builtins.str] = None,
|
|
30294
31140
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31141
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30295
31142
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30296
31143
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30297
31144
|
cluster_id: builtins.str,
|
|
@@ -30320,6 +31167,7 @@ def _typecheckingstub__be7b4f19f262543ce06c3b38b96d7720f5278fbf1216b47537353ebb5
|
|
|
30320
31167
|
output_path: typing.Optional[builtins.str] = None,
|
|
30321
31168
|
result_path: typing.Optional[builtins.str] = None,
|
|
30322
31169
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31170
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30323
31171
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30324
31172
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30325
31173
|
) -> None:
|
|
@@ -30337,6 +31185,7 @@ def _typecheckingstub__d2d4bb2455be55813cd2c251e051cf1070226b61192b46e00299c625b
|
|
|
30337
31185
|
output_path: typing.Optional[builtins.str] = None,
|
|
30338
31186
|
result_path: typing.Optional[builtins.str] = None,
|
|
30339
31187
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31188
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30340
31189
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30341
31190
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30342
31191
|
cluster_id: builtins.str,
|
|
@@ -30362,6 +31211,7 @@ def _typecheckingstub__d2551d81a8c2db12e500c842b415cf280bf3e5262dfb484ab5e30ffb8
|
|
|
30362
31211
|
output_path: typing.Optional[builtins.str] = None,
|
|
30363
31212
|
result_path: typing.Optional[builtins.str] = None,
|
|
30364
31213
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31214
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30365
31215
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30366
31216
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30367
31217
|
) -> None:
|
|
@@ -30379,6 +31229,7 @@ def _typecheckingstub__1a919131aef8d10da2c45d080cca2469281203956d0996c0891a790ee
|
|
|
30379
31229
|
output_path: typing.Optional[builtins.str] = None,
|
|
30380
31230
|
result_path: typing.Optional[builtins.str] = None,
|
|
30381
31231
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31232
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30382
31233
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30383
31234
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30384
31235
|
eks_cluster: EksClusterInput,
|
|
@@ -30403,6 +31254,7 @@ def _typecheckingstub__45d36fc34e9d926d46273dc2bd77731619b155106eabef0bcf97acc6f
|
|
|
30403
31254
|
output_path: typing.Optional[builtins.str] = None,
|
|
30404
31255
|
result_path: typing.Optional[builtins.str] = None,
|
|
30405
31256
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31257
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30406
31258
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30407
31259
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30408
31260
|
) -> None:
|
|
@@ -30420,6 +31272,7 @@ def _typecheckingstub__c9195cd27c10930f3e13b47dd7dc37795ebf5a270019a8ad2374cbcf7
|
|
|
30420
31272
|
output_path: typing.Optional[builtins.str] = None,
|
|
30421
31273
|
result_path: typing.Optional[builtins.str] = None,
|
|
30422
31274
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31275
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30423
31276
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30424
31277
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30425
31278
|
virtual_cluster_id: _TaskInput_91b91b91,
|
|
@@ -30448,6 +31301,7 @@ def _typecheckingstub__e81261774db571ee755e76dd1bfc8ac82bba1efd6875d4a031b2df44c
|
|
|
30448
31301
|
output_path: typing.Optional[builtins.str] = None,
|
|
30449
31302
|
result_path: typing.Optional[builtins.str] = None,
|
|
30450
31303
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31304
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30451
31305
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30452
31306
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30453
31307
|
) -> None:
|
|
@@ -30465,6 +31319,7 @@ def _typecheckingstub__e94f69fc1284cb9be57f4899558468aff459289a87ff8dec0791e5bf7
|
|
|
30465
31319
|
output_path: typing.Optional[builtins.str] = None,
|
|
30466
31320
|
result_path: typing.Optional[builtins.str] = None,
|
|
30467
31321
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31322
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30468
31323
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30469
31324
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30470
31325
|
job_driver: typing.Union[JobDriver, typing.Dict[builtins.str, typing.Any]],
|
|
@@ -30511,6 +31366,7 @@ def _typecheckingstub__cea19fa2105afe952446f5bd0f605c16f7727beccef02df2d7846fc03
|
|
|
30511
31366
|
output_path: typing.Optional[builtins.str] = None,
|
|
30512
31367
|
result_path: typing.Optional[builtins.str] = None,
|
|
30513
31368
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31369
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30514
31370
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30515
31371
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30516
31372
|
) -> None:
|
|
@@ -30758,6 +31614,7 @@ def _typecheckingstub__47264d4efff2249070476b1432ca851665096bb89026c6d6564ff3c77
|
|
|
30758
31614
|
output_path: typing.Optional[builtins.str] = None,
|
|
30759
31615
|
result_path: typing.Optional[builtins.str] = None,
|
|
30760
31616
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31617
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30761
31618
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30762
31619
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30763
31620
|
instances: typing.Union[EmrCreateCluster.InstancesConfigProperty, typing.Dict[builtins.str, typing.Any]],
|
|
@@ -30800,6 +31657,7 @@ def _typecheckingstub__44c29c883ea8c3f9dafe68d628e20bea269edf8d0742e0637ea23b88d
|
|
|
30800
31657
|
output_path: typing.Optional[builtins.str] = None,
|
|
30801
31658
|
result_path: typing.Optional[builtins.str] = None,
|
|
30802
31659
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31660
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30803
31661
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30804
31662
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30805
31663
|
) -> None:
|
|
@@ -30817,6 +31675,7 @@ def _typecheckingstub__d43fbaef8b6dee665530d57b843a8c0b590ccbe7d76a5babea20fd55e
|
|
|
30817
31675
|
output_path: typing.Optional[builtins.str] = None,
|
|
30818
31676
|
result_path: typing.Optional[builtins.str] = None,
|
|
30819
31677
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31678
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30820
31679
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30821
31680
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30822
31681
|
cluster_id: builtins.str,
|
|
@@ -30843,6 +31702,7 @@ def _typecheckingstub__1827c77327dd89e8130c07793fdfbf5a53b4078f3db4417c751d28c12
|
|
|
30843
31702
|
output_path: typing.Optional[builtins.str] = None,
|
|
30844
31703
|
result_path: typing.Optional[builtins.str] = None,
|
|
30845
31704
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31705
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30846
31706
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30847
31707
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30848
31708
|
) -> None:
|
|
@@ -30887,6 +31747,7 @@ def _typecheckingstub__9c62909c53696cbd5e1b50294401de7e37a1a51225d9bd25c6cf98c6c
|
|
|
30887
31747
|
output_path: typing.Optional[builtins.str] = None,
|
|
30888
31748
|
result_path: typing.Optional[builtins.str] = None,
|
|
30889
31749
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31750
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30890
31751
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30891
31752
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30892
31753
|
cluster_id: builtins.str,
|
|
@@ -30911,6 +31772,7 @@ def _typecheckingstub__152b964688ba0a54d4029e6c9be6f9b58c7872d51ce6c52c872bbf5b5
|
|
|
30911
31772
|
output_path: typing.Optional[builtins.str] = None,
|
|
30912
31773
|
result_path: typing.Optional[builtins.str] = None,
|
|
30913
31774
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31775
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30914
31776
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30915
31777
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30916
31778
|
) -> None:
|
|
@@ -30928,6 +31790,7 @@ def _typecheckingstub__43f523884966182c76c7e1e2fef4a4b49988e980e5a676cef0ca41c18
|
|
|
30928
31790
|
output_path: typing.Optional[builtins.str] = None,
|
|
30929
31791
|
result_path: typing.Optional[builtins.str] = None,
|
|
30930
31792
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31793
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30931
31794
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30932
31795
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30933
31796
|
cluster_id: builtins.str,
|
|
@@ -30950,6 +31813,7 @@ def _typecheckingstub__40203f9a6659336dbad4533d895e62225d438ca7ba10b27e16a78a5f2
|
|
|
30950
31813
|
output_path: typing.Optional[builtins.str] = None,
|
|
30951
31814
|
result_path: typing.Optional[builtins.str] = None,
|
|
30952
31815
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31816
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30953
31817
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30954
31818
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30955
31819
|
) -> None:
|
|
@@ -30967,6 +31831,7 @@ def _typecheckingstub__c80e906432a50136c0f9e04017864ce1c2e4248cf7a80bc25f1be91c4
|
|
|
30967
31831
|
output_path: typing.Optional[builtins.str] = None,
|
|
30968
31832
|
result_path: typing.Optional[builtins.str] = None,
|
|
30969
31833
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31834
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
30970
31835
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
30971
31836
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
30972
31837
|
cluster_id: builtins.str,
|
|
@@ -30997,6 +31862,7 @@ def _typecheckingstub__7da4306c848323ad0fd19f879d1e450efab7eb83fb1ef1cb0d748933f
|
|
|
30997
31862
|
output_path: typing.Optional[builtins.str] = None,
|
|
30998
31863
|
result_path: typing.Optional[builtins.str] = None,
|
|
30999
31864
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31865
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31000
31866
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31001
31867
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31002
31868
|
) -> None:
|
|
@@ -31014,6 +31880,7 @@ def _typecheckingstub__7b660a2d739c33e835b358bdf384dcda902727f35dd042f5cd8486b6f
|
|
|
31014
31880
|
output_path: typing.Optional[builtins.str] = None,
|
|
31015
31881
|
result_path: typing.Optional[builtins.str] = None,
|
|
31016
31882
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31883
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31017
31884
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31018
31885
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31019
31886
|
expression: builtins.str,
|
|
@@ -31036,6 +31903,7 @@ def _typecheckingstub__33c781a26e2ad811ea1684ae1aa8b9f51d77dd36cde72f5e28578979f
|
|
|
31036
31903
|
output_path: typing.Optional[builtins.str] = None,
|
|
31037
31904
|
result_path: typing.Optional[builtins.str] = None,
|
|
31038
31905
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31906
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31039
31907
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31040
31908
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31041
31909
|
) -> None:
|
|
@@ -31063,6 +31931,7 @@ def _typecheckingstub__3d1533e2221776c3bad646394bc560a4c2723f94942ecd3f4dacdb6c7
|
|
|
31063
31931
|
output_path: typing.Optional[builtins.str] = None,
|
|
31064
31932
|
result_path: typing.Optional[builtins.str] = None,
|
|
31065
31933
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31934
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31066
31935
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31067
31936
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31068
31937
|
entries: typing.Sequence[typing.Union[EventBridgePutEventsEntry, typing.Dict[builtins.str, typing.Any]]],
|
|
@@ -31084,6 +31953,7 @@ def _typecheckingstub__cb07757b4483ab674eb60feab8180666aaf3693f5b2c5fc2b5f17e759
|
|
|
31084
31953
|
output_path: typing.Optional[builtins.str] = None,
|
|
31085
31954
|
result_path: typing.Optional[builtins.str] = None,
|
|
31086
31955
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31956
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31087
31957
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31088
31958
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31089
31959
|
) -> None:
|
|
@@ -31101,6 +31971,7 @@ def _typecheckingstub__69a84c7e673f8f3a1038e40920094e0954ed3fead8b2f4b7c569c20e5
|
|
|
31101
31971
|
output_path: typing.Optional[builtins.str] = None,
|
|
31102
31972
|
result_path: typing.Optional[builtins.str] = None,
|
|
31103
31973
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31974
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31104
31975
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31105
31976
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31106
31977
|
name: builtins.str,
|
|
@@ -31125,6 +31996,7 @@ def _typecheckingstub__ca53b69e05a043466b0fb8d683b8908756bbb80a6167bf6e801b2cc4b
|
|
|
31125
31996
|
output_path: typing.Optional[builtins.str] = None,
|
|
31126
31997
|
result_path: typing.Optional[builtins.str] = None,
|
|
31127
31998
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
31999
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31128
32000
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31129
32001
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31130
32002
|
) -> None:
|
|
@@ -31142,6 +32014,7 @@ def _typecheckingstub__6a5a6a067402f20efc3f218ecff8d7cae8c7206cf0bfb73907469d47f
|
|
|
31142
32014
|
output_path: typing.Optional[builtins.str] = None,
|
|
31143
32015
|
result_path: typing.Optional[builtins.str] = None,
|
|
31144
32016
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32017
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31145
32018
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31146
32019
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31147
32020
|
glue_job_name: builtins.str,
|
|
@@ -31202,6 +32075,7 @@ def _typecheckingstub__1c1fad3b246549c634e670e346a4f04a3bae8a15c91763bfd4860853b
|
|
|
31202
32075
|
output_path: typing.Optional[builtins.str] = None,
|
|
31203
32076
|
result_path: typing.Optional[builtins.str] = None,
|
|
31204
32077
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32078
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31205
32079
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31206
32080
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31207
32081
|
) -> None:
|
|
@@ -31219,6 +32093,7 @@ def _typecheckingstub__adb7be6f8310d32af2294762cf6aeb418411f6262f6779429b5902369
|
|
|
31219
32093
|
output_path: typing.Optional[builtins.str] = None,
|
|
31220
32094
|
result_path: typing.Optional[builtins.str] = None,
|
|
31221
32095
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32096
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31222
32097
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31223
32098
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31224
32099
|
lambda_function: _IFunction_6adb0ab8,
|
|
@@ -31390,6 +32265,7 @@ def _typecheckingstub__cac66362a54ff78c6c85ccb16d3ca034b98636f2f20ed18c0ad444ea4
|
|
|
31390
32265
|
output_path: typing.Optional[builtins.str] = None,
|
|
31391
32266
|
result_path: typing.Optional[builtins.str] = None,
|
|
31392
32267
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32268
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31393
32269
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31394
32270
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31395
32271
|
) -> None:
|
|
@@ -31413,6 +32289,7 @@ def _typecheckingstub__7955865e1edbdbe14b7d0785bfa36c7b48efa077af003aaf9df70da12
|
|
|
31413
32289
|
output_path: typing.Optional[builtins.str] = None,
|
|
31414
32290
|
result_path: typing.Optional[builtins.str] = None,
|
|
31415
32291
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32292
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31416
32293
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31417
32294
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31418
32295
|
) -> None:
|
|
@@ -31430,6 +32307,7 @@ def _typecheckingstub__1d1471e23ddcae3c4722c429827c5dc0c982af6428c9ffd8f2f2d5418
|
|
|
31430
32307
|
output_path: typing.Optional[builtins.str] = None,
|
|
31431
32308
|
result_path: typing.Optional[builtins.str] = None,
|
|
31432
32309
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32310
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31433
32311
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31434
32312
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31435
32313
|
endpoint_config_name: builtins.str,
|
|
@@ -31451,6 +32329,7 @@ def _typecheckingstub__96e3552698c5c697886aa5aea1d639061f3abf9f32dbb928c486ab194
|
|
|
31451
32329
|
output_path: typing.Optional[builtins.str] = None,
|
|
31452
32330
|
result_path: typing.Optional[builtins.str] = None,
|
|
31453
32331
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32332
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31454
32333
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31455
32334
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31456
32335
|
endpoint_config_name: builtins.str,
|
|
@@ -31481,6 +32360,7 @@ def _typecheckingstub__fac8ecf5a76161d20fd34907e36ca66626011120baadab5d4c8f65ff6
|
|
|
31481
32360
|
output_path: typing.Optional[builtins.str] = None,
|
|
31482
32361
|
result_path: typing.Optional[builtins.str] = None,
|
|
31483
32362
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32363
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31484
32364
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31485
32365
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31486
32366
|
) -> None:
|
|
@@ -31504,6 +32384,7 @@ def _typecheckingstub__765f42ba1c130c80b8d1a476f4899a20a0b649f91d087022988b2c851
|
|
|
31504
32384
|
output_path: typing.Optional[builtins.str] = None,
|
|
31505
32385
|
result_path: typing.Optional[builtins.str] = None,
|
|
31506
32386
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32387
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31507
32388
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31508
32389
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31509
32390
|
model_name: builtins.str,
|
|
@@ -31543,6 +32424,7 @@ def _typecheckingstub__28a8bfbbe70fbb6daf63ef03a7856f2801f4c204a85129b4c8c78b357
|
|
|
31543
32424
|
output_path: typing.Optional[builtins.str] = None,
|
|
31544
32425
|
result_path: typing.Optional[builtins.str] = None,
|
|
31545
32426
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32427
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31546
32428
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31547
32429
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31548
32430
|
) -> None:
|
|
@@ -31566,6 +32448,7 @@ def _typecheckingstub__5eab5c7c6ad3bd91898189dd3d054ff0770c91123ed264c153dbffeb0
|
|
|
31566
32448
|
output_path: typing.Optional[builtins.str] = None,
|
|
31567
32449
|
result_path: typing.Optional[builtins.str] = None,
|
|
31568
32450
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32451
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31569
32452
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31570
32453
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31571
32454
|
algorithm_specification: typing.Union[AlgorithmSpecification, typing.Dict[builtins.str, typing.Any]],
|
|
@@ -31609,6 +32492,7 @@ def _typecheckingstub__f1c1ac56dd1da31001ef15321d9d46241c539bd762926a0e459c7c6de
|
|
|
31609
32492
|
output_path: typing.Optional[builtins.str] = None,
|
|
31610
32493
|
result_path: typing.Optional[builtins.str] = None,
|
|
31611
32494
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32495
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31612
32496
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31613
32497
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31614
32498
|
) -> None:
|
|
@@ -31626,6 +32510,7 @@ def _typecheckingstub__d5a9d96915e7f95ea734e8d17c1adcfe9e5d75ac373d0a6ff95c36108
|
|
|
31626
32510
|
output_path: typing.Optional[builtins.str] = None,
|
|
31627
32511
|
result_path: typing.Optional[builtins.str] = None,
|
|
31628
32512
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32513
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31629
32514
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31630
32515
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31631
32516
|
model_name: builtins.str,
|
|
@@ -31659,6 +32544,7 @@ def _typecheckingstub__991e74457064d32aa2903ba15408f7a5795216e8dc3df7685c4270f97
|
|
|
31659
32544
|
output_path: typing.Optional[builtins.str] = None,
|
|
31660
32545
|
result_path: typing.Optional[builtins.str] = None,
|
|
31661
32546
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32547
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31662
32548
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31663
32549
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31664
32550
|
) -> None:
|
|
@@ -31676,6 +32562,7 @@ def _typecheckingstub__d96c2c0df56e3dc1707e4ba9fa8a1542b52a2238b392b5de5c6a4cfd8
|
|
|
31676
32562
|
output_path: typing.Optional[builtins.str] = None,
|
|
31677
32563
|
result_path: typing.Optional[builtins.str] = None,
|
|
31678
32564
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32565
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31679
32566
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31680
32567
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31681
32568
|
endpoint_config_name: builtins.str,
|
|
@@ -31698,6 +32585,8 @@ def _typecheckingstub__7d10001f719517487b429c55520b1608ee35cac0c355ffdbbf882a10f
|
|
|
31698
32585
|
message: _TaskInput_91b91b91,
|
|
31699
32586
|
topic: _ITopic_9eca4852,
|
|
31700
32587
|
message_attributes: typing.Optional[typing.Mapping[builtins.str, typing.Union[MessageAttribute, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
32588
|
+
message_deduplication_id: typing.Optional[builtins.str] = None,
|
|
32589
|
+
message_group_id: typing.Optional[builtins.str] = None,
|
|
31701
32590
|
message_per_subscription_type: typing.Optional[builtins.bool] = None,
|
|
31702
32591
|
subject: typing.Optional[builtins.str] = None,
|
|
31703
32592
|
comment: typing.Optional[builtins.str] = None,
|
|
@@ -31709,6 +32598,7 @@ def _typecheckingstub__7d10001f719517487b429c55520b1608ee35cac0c355ffdbbf882a10f
|
|
|
31709
32598
|
output_path: typing.Optional[builtins.str] = None,
|
|
31710
32599
|
result_path: typing.Optional[builtins.str] = None,
|
|
31711
32600
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32601
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31712
32602
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31713
32603
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31714
32604
|
) -> None:
|
|
@@ -31726,11 +32616,14 @@ def _typecheckingstub__ba59e027f30d7ee475f7b281a0ad51f46041e065fffed1057f76425f2
|
|
|
31726
32616
|
output_path: typing.Optional[builtins.str] = None,
|
|
31727
32617
|
result_path: typing.Optional[builtins.str] = None,
|
|
31728
32618
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32619
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31729
32620
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31730
32621
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31731
32622
|
message: _TaskInput_91b91b91,
|
|
31732
32623
|
topic: _ITopic_9eca4852,
|
|
31733
32624
|
message_attributes: typing.Optional[typing.Mapping[builtins.str, typing.Union[MessageAttribute, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
32625
|
+
message_deduplication_id: typing.Optional[builtins.str] = None,
|
|
32626
|
+
message_group_id: typing.Optional[builtins.str] = None,
|
|
31734
32627
|
message_per_subscription_type: typing.Optional[builtins.bool] = None,
|
|
31735
32628
|
subject: typing.Optional[builtins.str] = None,
|
|
31736
32629
|
) -> None:
|
|
@@ -31764,6 +32657,7 @@ def _typecheckingstub__f3bb4b5efd9a268c1c999f4d1da63551d5f3be9c1457389cbf19899c8
|
|
|
31764
32657
|
output_path: typing.Optional[builtins.str] = None,
|
|
31765
32658
|
result_path: typing.Optional[builtins.str] = None,
|
|
31766
32659
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32660
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31767
32661
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31768
32662
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31769
32663
|
) -> None:
|
|
@@ -31781,6 +32675,7 @@ def _typecheckingstub__4090d6866087f73c6108fc9df4234d6d1223f1620746b33869c526b3f
|
|
|
31781
32675
|
output_path: typing.Optional[builtins.str] = None,
|
|
31782
32676
|
result_path: typing.Optional[builtins.str] = None,
|
|
31783
32677
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32678
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31784
32679
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31785
32680
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31786
32681
|
message_body: _TaskInput_91b91b91,
|
|
@@ -31807,6 +32702,7 @@ def _typecheckingstub__5e7128c47da8a4055731455481c945d8f7cc5b04a1afe8df23be177a4
|
|
|
31807
32702
|
output_path: typing.Optional[builtins.str] = None,
|
|
31808
32703
|
result_path: typing.Optional[builtins.str] = None,
|
|
31809
32704
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32705
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31810
32706
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31811
32707
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31812
32708
|
) -> None:
|
|
@@ -31824,6 +32720,7 @@ def _typecheckingstub__86d4faf1f1d7e8fd9bb5bb1dc4ea04bc3ef53ba85f09ef6abb53f7318
|
|
|
31824
32720
|
output_path: typing.Optional[builtins.str] = None,
|
|
31825
32721
|
result_path: typing.Optional[builtins.str] = None,
|
|
31826
32722
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32723
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31827
32724
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31828
32725
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31829
32726
|
activity: _IActivity_3cf6efa2,
|
|
@@ -31849,6 +32746,7 @@ def _typecheckingstub__7b4bca7c95e8aaf839d18d6f990b230e9737455435d5b68625b080340
|
|
|
31849
32746
|
output_path: typing.Optional[builtins.str] = None,
|
|
31850
32747
|
result_path: typing.Optional[builtins.str] = None,
|
|
31851
32748
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32749
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31852
32750
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31853
32751
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31854
32752
|
) -> None:
|
|
@@ -31866,6 +32764,7 @@ def _typecheckingstub__61ce50878e5c10aaced4c2f2b754776f53d64a884b32a285d0355b7f2
|
|
|
31866
32764
|
output_path: typing.Optional[builtins.str] = None,
|
|
31867
32765
|
result_path: typing.Optional[builtins.str] = None,
|
|
31868
32766
|
result_selector: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
32767
|
+
state_name: typing.Optional[builtins.str] = None,
|
|
31869
32768
|
task_timeout: typing.Optional[_Timeout_d7c10551] = None,
|
|
31870
32769
|
timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
31871
32770
|
state_machine: _IStateMachine_73e8d2b0,
|