aws-cdk-lib 2.126.0__py3-none-any.whl → 2.127.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +0 -2
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.126.0.jsii.tgz → aws-cdk-lib@2.127.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +18 -6
- aws_cdk/aws_amazonmq/__init__.py +3 -2
- aws_cdk/aws_amplifyuibuilder/__init__.py +1212 -666
- aws_cdk/aws_apigateway/__init__.py +7 -3
- aws_cdk/aws_appconfig/__init__.py +108 -19
- aws_cdk/aws_appsync/__init__.py +43 -0
- aws_cdk/aws_autoscaling/__init__.py +37 -14
- aws_cdk/aws_cassandra/__init__.py +810 -4
- aws_cdk/aws_cloudfront/__init__.py +35 -37
- aws_cdk/aws_cloudfront/experimental/__init__.py +21 -0
- aws_cdk/aws_codebuild/__init__.py +43 -3
- aws_cdk/aws_codecommit/__init__.py +1 -0
- aws_cdk/aws_codepipeline/__init__.py +7 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +11 -1
- aws_cdk/aws_codestarnotifications/__init__.py +24 -15
- aws_cdk/aws_cognito/__init__.py +180 -116
- aws_cdk/aws_datasync/__init__.py +8 -4
- aws_cdk/aws_dynamodb/__init__.py +80 -11
- aws_cdk/aws_ec2/__init__.py +207 -45
- aws_cdk/aws_ecs/__init__.py +171 -78
- aws_cdk/aws_ecs_patterns/__init__.py +24 -0
- aws_cdk/aws_efs/__init__.py +64 -8
- aws_cdk/aws_eks/__init__.py +52 -41
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +12 -9
- aws_cdk/aws_fis/__init__.py +32 -12
- aws_cdk/aws_fsx/__init__.py +61 -43
- aws_cdk/aws_glue/__init__.py +449 -0
- aws_cdk/aws_guardduty/__init__.py +0 -8
- aws_cdk/aws_iam/__init__.py +3 -3
- aws_cdk/aws_inspectorv2/__init__.py +989 -0
- aws_cdk/aws_internetmonitor/__init__.py +10 -12
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotwireless/__init__.py +32 -19
- aws_cdk/aws_lambda/__init__.py +129 -32
- aws_cdk/aws_lambda_event_sources/__init__.py +95 -4
- aws_cdk/aws_lambda_nodejs/__init__.py +21 -0
- aws_cdk/aws_location/__init__.py +8 -2
- aws_cdk/aws_logs/__init__.py +7 -3
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_opensearchserverless/__init__.py +4 -4
- aws_cdk/aws_osis/__init__.py +13 -13
- aws_cdk/aws_personalize/__init__.py +1 -1
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +7 -10
- aws_cdk/aws_rds/__init__.py +449 -8
- aws_cdk/aws_redshiftserverless/__init__.py +282 -0
- aws_cdk/aws_rolesanywhere/__init__.py +53 -41
- aws_cdk/aws_route53/__init__.py +282 -0
- aws_cdk/aws_s3/__init__.py +11 -6
- aws_cdk/aws_sagemaker/__init__.py +1398 -39
- aws_cdk/aws_sns/__init__.py +56 -13
- aws_cdk/aws_sqs/__init__.py +13 -10
- aws_cdk/aws_stepfunctions/__init__.py +3612 -1395
- aws_cdk/aws_stepfunctions_tasks/__init__.py +267 -181
- aws_cdk/aws_transfer/__init__.py +1 -1
- aws_cdk/aws_verifiedpermissions/__init__.py +55 -55
- aws_cdk/aws_workspacesweb/__init__.py +6 -3
- aws_cdk/cx_api/__init__.py +17 -0
- aws_cdk/triggers/__init__.py +21 -0
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/RECORD +68 -69
- aws_cdk/aws_ssmguiconnect/__init__.py +0 -540
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.126.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/top_level.txt +0 -0
|
@@ -1987,7 +1987,7 @@ class AthenaGetQueryExecution(
|
|
|
1987
1987
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
1988
1988
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
1989
1989
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
1990
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
1990
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
1991
1991
|
: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 '$')
|
|
1992
1992
|
: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 '$')
|
|
1993
1993
|
: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
|
|
@@ -2072,7 +2072,7 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2072
2072
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
2073
2073
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2074
2074
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
2075
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2075
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2076
2076
|
: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 '$')
|
|
2077
2077
|
: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 '$')
|
|
2078
2078
|
: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
|
|
@@ -2197,7 +2197,9 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2197
2197
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
2198
2198
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
2199
2199
|
|
|
2200
|
-
You can control these AWS services using service integration patterns
|
|
2200
|
+
You can control these AWS services using service integration patterns.
|
|
2201
|
+
|
|
2202
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
2201
2203
|
|
|
2202
2204
|
:default:
|
|
2203
2205
|
|
|
@@ -2205,7 +2207,7 @@ class AthenaGetQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2205
2207
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
2206
2208
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2207
2209
|
|
|
2208
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
2210
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
2209
2211
|
'''
|
|
2210
2212
|
result = self._values.get("integration_pattern")
|
|
2211
2213
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -2358,7 +2360,7 @@ class AthenaGetQueryResults(
|
|
|
2358
2360
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
2359
2361
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2360
2362
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
2361
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2363
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2362
2364
|
: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 '$')
|
|
2363
2365
|
: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 '$')
|
|
2364
2366
|
: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
|
|
@@ -2449,7 +2451,7 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2449
2451
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
2450
2452
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2451
2453
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
2452
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2454
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2453
2455
|
: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 '$')
|
|
2454
2456
|
: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 '$')
|
|
2455
2457
|
: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
|
|
@@ -2582,7 +2584,9 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2582
2584
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
2583
2585
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
2584
2586
|
|
|
2585
|
-
You can control these AWS services using service integration patterns
|
|
2587
|
+
You can control these AWS services using service integration patterns.
|
|
2588
|
+
|
|
2589
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
2586
2590
|
|
|
2587
2591
|
:default:
|
|
2588
2592
|
|
|
@@ -2590,7 +2594,7 @@ class AthenaGetQueryResultsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2590
2594
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
2591
2595
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2592
2596
|
|
|
2593
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
2597
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
2594
2598
|
'''
|
|
2595
2599
|
result = self._values.get("integration_pattern")
|
|
2596
2600
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -2780,7 +2784,7 @@ class AthenaStartQueryExecution(
|
|
|
2780
2784
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
2781
2785
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2782
2786
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
2783
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2787
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2784
2788
|
: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 '$')
|
|
2785
2789
|
: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 '$')
|
|
2786
2790
|
: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
|
|
@@ -2880,7 +2884,7 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
2880
2884
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
2881
2885
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
2882
2886
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
2883
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2887
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
2884
2888
|
: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 '$')
|
|
2885
2889
|
: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 '$')
|
|
2886
2890
|
: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
|
|
@@ -3042,7 +3046,9 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3042
3046
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
3043
3047
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
3044
3048
|
|
|
3045
|
-
You can control these AWS services using service integration patterns
|
|
3049
|
+
You can control these AWS services using service integration patterns.
|
|
3050
|
+
|
|
3051
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
3046
3052
|
|
|
3047
3053
|
:default:
|
|
3048
3054
|
|
|
@@ -3050,7 +3056,7 @@ class AthenaStartQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3050
3056
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
3051
3057
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3052
3058
|
|
|
3053
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
3059
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
3054
3060
|
'''
|
|
3055
3061
|
result = self._values.get("integration_pattern")
|
|
3056
3062
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -3244,7 +3250,7 @@ class AthenaStopQueryExecution(
|
|
|
3244
3250
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
3245
3251
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
3246
3252
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
3247
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3253
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3248
3254
|
: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 '$')
|
|
3249
3255
|
: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 '$')
|
|
3250
3256
|
: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
|
|
@@ -3329,7 +3335,7 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3329
3335
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
3330
3336
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
3331
3337
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
3332
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3338
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3333
3339
|
: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 '$')
|
|
3334
3340
|
: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 '$')
|
|
3335
3341
|
: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
|
|
@@ -3454,7 +3460,9 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3454
3460
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
3455
3461
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
3456
3462
|
|
|
3457
|
-
You can control these AWS services using service integration patterns
|
|
3463
|
+
You can control these AWS services using service integration patterns.
|
|
3464
|
+
|
|
3465
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
3458
3466
|
|
|
3459
3467
|
:default:
|
|
3460
3468
|
|
|
@@ -3462,7 +3470,7 @@ class AthenaStopQueryExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3462
3470
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
3463
3471
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3464
3472
|
|
|
3465
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
3473
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
3466
3474
|
'''
|
|
3467
3475
|
result = self._values.get("integration_pattern")
|
|
3468
3476
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -3881,7 +3889,7 @@ class BatchSubmitJob(
|
|
|
3881
3889
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
3882
3890
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
3883
3891
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
3884
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3892
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3885
3893
|
: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 '$')
|
|
3886
3894
|
: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 '$')
|
|
3887
3895
|
: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
|
|
@@ -3990,7 +3998,7 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
3990
3998
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
3991
3999
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
3992
4000
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
3993
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
4001
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
3994
4002
|
: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 '$')
|
|
3995
4003
|
: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 '$')
|
|
3996
4004
|
: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
|
|
@@ -4154,7 +4162,9 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4154
4162
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
4155
4163
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
4156
4164
|
|
|
4157
|
-
You can control these AWS services using service integration patterns
|
|
4165
|
+
You can control these AWS services using service integration patterns.
|
|
4166
|
+
|
|
4167
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
4158
4168
|
|
|
4159
4169
|
:default:
|
|
4160
4170
|
|
|
@@ -4162,7 +4172,7 @@ class BatchSubmitJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4162
4172
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
4163
4173
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
4164
4174
|
|
|
4165
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
4175
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
4166
4176
|
'''
|
|
4167
4177
|
result = self._values.get("integration_pattern")
|
|
4168
4178
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -4417,7 +4427,7 @@ class BedrockInvokeModel(
|
|
|
4417
4427
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
4418
4428
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
4419
4429
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
4420
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
4430
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
4421
4431
|
: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 '$')
|
|
4422
4432
|
: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 '$')
|
|
4423
4433
|
: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
|
|
@@ -4650,7 +4660,7 @@ class BedrockInvokeModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4650
4660
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
4651
4661
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
4652
4662
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
4653
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
4663
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
4654
4664
|
: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 '$')
|
|
4655
4665
|
: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 '$')
|
|
4656
4666
|
: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
|
|
@@ -4814,7 +4824,9 @@ class BedrockInvokeModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4814
4824
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
4815
4825
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
4816
4826
|
|
|
4817
|
-
You can control these AWS services using service integration patterns
|
|
4827
|
+
You can control these AWS services using service integration patterns.
|
|
4828
|
+
|
|
4829
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
4818
4830
|
|
|
4819
4831
|
:default:
|
|
4820
4832
|
|
|
@@ -4822,7 +4834,7 @@ class BedrockInvokeModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
4822
4834
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
4823
4835
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
4824
4836
|
|
|
4825
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
4837
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
4826
4838
|
'''
|
|
4827
4839
|
result = self._values.get("integration_pattern")
|
|
4828
4840
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -5045,7 +5057,7 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5045
5057
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
5046
5058
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
5047
5059
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
5048
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
5060
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
5049
5061
|
: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 '$')
|
|
5050
5062
|
: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 '$')
|
|
5051
5063
|
: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
|
|
@@ -5224,7 +5236,9 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5224
5236
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
5225
5237
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
5226
5238
|
|
|
5227
|
-
You can control these AWS services using service integration patterns
|
|
5239
|
+
You can control these AWS services using service integration patterns.
|
|
5240
|
+
|
|
5241
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
5228
5242
|
|
|
5229
5243
|
:default:
|
|
5230
5244
|
|
|
@@ -5232,7 +5246,7 @@ class CallApiGatewayEndpointBaseProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
5232
5246
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
5233
5247
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
5234
5248
|
|
|
5235
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
5249
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
5236
5250
|
'''
|
|
5237
5251
|
result = self._values.get("integration_pattern")
|
|
5238
5252
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -5445,7 +5459,7 @@ class CallApiGatewayHttpApiEndpoint(
|
|
|
5445
5459
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
5446
5460
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
5447
5461
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
5448
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
5462
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
5449
5463
|
: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 '$')
|
|
5450
5464
|
: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 '$')
|
|
5451
5465
|
: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
|
|
@@ -5573,7 +5587,7 @@ class CallApiGatewayHttpApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
5573
5587
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
5574
5588
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
5575
5589
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
5576
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
5590
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
5577
5591
|
: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 '$')
|
|
5578
5592
|
: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 '$')
|
|
5579
5593
|
: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
|
|
@@ -5734,7 +5748,9 @@ class CallApiGatewayHttpApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
5734
5748
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
5735
5749
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
5736
5750
|
|
|
5737
|
-
You can control these AWS services using service integration patterns
|
|
5751
|
+
You can control these AWS services using service integration patterns.
|
|
5752
|
+
|
|
5753
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
5738
5754
|
|
|
5739
5755
|
:default:
|
|
5740
5756
|
|
|
@@ -5742,7 +5758,7 @@ class CallApiGatewayHttpApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
5742
5758
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
5743
5759
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
5744
5760
|
|
|
5745
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
5761
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
5746
5762
|
'''
|
|
5747
5763
|
result = self._values.get("integration_pattern")
|
|
5748
5764
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -5998,7 +6014,7 @@ class CallApiGatewayRestApiEndpoint(
|
|
|
5998
6014
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
5999
6015
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
6000
6016
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
6001
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6017
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6002
6018
|
: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 '$')
|
|
6003
6019
|
: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 '$')
|
|
6004
6020
|
: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
|
|
@@ -6123,7 +6139,7 @@ class CallApiGatewayRestApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
6123
6139
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
6124
6140
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
6125
6141
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
6126
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6142
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6127
6143
|
: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 '$')
|
|
6128
6144
|
: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 '$')
|
|
6129
6145
|
: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
|
|
@@ -6284,7 +6300,9 @@ class CallApiGatewayRestApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
6284
6300
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
6285
6301
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
6286
6302
|
|
|
6287
|
-
You can control these AWS services using service integration patterns
|
|
6303
|
+
You can control these AWS services using service integration patterns.
|
|
6304
|
+
|
|
6305
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
6288
6306
|
|
|
6289
6307
|
:default:
|
|
6290
6308
|
|
|
@@ -6292,7 +6310,7 @@ class CallApiGatewayRestApiEndpointProps(CallApiGatewayEndpointBaseProps):
|
|
|
6292
6310
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
6293
6311
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6294
6312
|
|
|
6295
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
6313
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
6296
6314
|
'''
|
|
6297
6315
|
result = self._values.get("integration_pattern")
|
|
6298
6316
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -6514,7 +6532,7 @@ class CallAwsService(
|
|
|
6514
6532
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
6515
6533
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
6516
6534
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
6517
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6535
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6518
6536
|
: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 '$')
|
|
6519
6537
|
: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 '$')
|
|
6520
6538
|
: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
|
|
@@ -6614,7 +6632,7 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6614
6632
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
6615
6633
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
6616
6634
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
6617
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6635
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6618
6636
|
: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 '$')
|
|
6619
6637
|
: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 '$')
|
|
6620
6638
|
: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
|
|
@@ -6766,7 +6784,9 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6766
6784
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
6767
6785
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
6768
6786
|
|
|
6769
|
-
You can control these AWS services using service integration patterns
|
|
6787
|
+
You can control these AWS services using service integration patterns.
|
|
6788
|
+
|
|
6789
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
6770
6790
|
|
|
6771
6791
|
:default:
|
|
6772
6792
|
|
|
@@ -6774,7 +6794,7 @@ class CallAwsServiceProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
6774
6794
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
6775
6795
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
6776
6796
|
|
|
6777
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
6797
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
6778
6798
|
'''
|
|
6779
6799
|
result = self._values.get("integration_pattern")
|
|
6780
6800
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -7288,7 +7308,7 @@ class CodeBuildStartBuild(
|
|
|
7288
7308
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
7289
7309
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
7290
7310
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
7291
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
7311
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
7292
7312
|
: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 '$')
|
|
7293
7313
|
: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 '$')
|
|
7294
7314
|
: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
|
|
@@ -7376,7 +7396,7 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
7376
7396
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
7377
7397
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
7378
7398
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
7379
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
7399
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
7380
7400
|
: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 '$')
|
|
7381
7401
|
: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 '$')
|
|
7382
7402
|
: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
|
|
@@ -7528,7 +7548,9 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
7528
7548
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
7529
7549
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
7530
7550
|
|
|
7531
|
-
You can control these AWS services using service integration patterns
|
|
7551
|
+
You can control these AWS services using service integration patterns.
|
|
7552
|
+
|
|
7553
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
7532
7554
|
|
|
7533
7555
|
:default:
|
|
7534
7556
|
|
|
@@ -7536,7 +7558,7 @@ class CodeBuildStartBuildProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
7536
7558
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
7537
7559
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
7538
7560
|
|
|
7539
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
7561
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
7540
7562
|
'''
|
|
7541
7563
|
result = self._values.get("integration_pattern")
|
|
7542
7564
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -8954,7 +8976,7 @@ class DynamoDeleteItem(
|
|
|
8954
8976
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
8955
8977
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
8956
8978
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
8957
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
8979
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
8958
8980
|
: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 '$')
|
|
8959
8981
|
: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 '$')
|
|
8960
8982
|
: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
|
|
@@ -9060,7 +9082,7 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9060
9082
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
9061
9083
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
9062
9084
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
9063
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
9085
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
9064
9086
|
: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 '$')
|
|
9065
9087
|
: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 '$')
|
|
9066
9088
|
: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
|
|
@@ -9216,7 +9238,9 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9216
9238
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
9217
9239
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
9218
9240
|
|
|
9219
|
-
You can control these AWS services using service integration patterns
|
|
9241
|
+
You can control these AWS services using service integration patterns.
|
|
9242
|
+
|
|
9243
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
9220
9244
|
|
|
9221
9245
|
:default:
|
|
9222
9246
|
|
|
@@ -9224,7 +9248,7 @@ class DynamoDeleteItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9224
9248
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
9225
9249
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
9226
9250
|
|
|
9227
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
9251
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
9228
9252
|
'''
|
|
9229
9253
|
result = self._values.get("integration_pattern")
|
|
9230
9254
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -9470,7 +9494,7 @@ class DynamoGetItem(
|
|
|
9470
9494
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
9471
9495
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
9472
9496
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
9473
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
9497
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
9474
9498
|
: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 '$')
|
|
9475
9499
|
: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 '$')
|
|
9476
9500
|
: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
|
|
@@ -9570,7 +9594,7 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9570
9594
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
9571
9595
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
9572
9596
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
9573
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
9597
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
9574
9598
|
: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 '$')
|
|
9575
9599
|
: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 '$')
|
|
9576
9600
|
: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
|
|
@@ -9717,7 +9741,9 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9717
9741
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
9718
9742
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
9719
9743
|
|
|
9720
|
-
You can control these AWS services using service integration patterns
|
|
9744
|
+
You can control these AWS services using service integration patterns.
|
|
9745
|
+
|
|
9746
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
9721
9747
|
|
|
9722
9748
|
:default:
|
|
9723
9749
|
|
|
@@ -9725,7 +9751,7 @@ class DynamoGetItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
9725
9751
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
9726
9752
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
9727
9753
|
|
|
9728
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
9754
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
9729
9755
|
'''
|
|
9730
9756
|
result = self._values.get("integration_pattern")
|
|
9731
9757
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -10013,7 +10039,7 @@ class DynamoPutItem(
|
|
|
10013
10039
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
10014
10040
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
10015
10041
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
10016
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10042
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10017
10043
|
: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 '$')
|
|
10018
10044
|
: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 '$')
|
|
10019
10045
|
: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
|
|
@@ -10119,7 +10145,7 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10119
10145
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
10120
10146
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
10121
10147
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
10122
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10148
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10123
10149
|
: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 '$')
|
|
10124
10150
|
: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 '$')
|
|
10125
10151
|
: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
|
|
@@ -10278,7 +10304,9 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10278
10304
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
10279
10305
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
10280
10306
|
|
|
10281
|
-
You can control these AWS services using service integration patterns
|
|
10307
|
+
You can control these AWS services using service integration patterns.
|
|
10308
|
+
|
|
10309
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
10282
10310
|
|
|
10283
10311
|
:default:
|
|
10284
10312
|
|
|
@@ -10286,7 +10314,7 @@ class DynamoPutItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10286
10314
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
10287
10315
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10288
10316
|
|
|
10289
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
10317
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
10290
10318
|
'''
|
|
10291
10319
|
result = self._values.get("integration_pattern")
|
|
10292
10320
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -10558,7 +10586,7 @@ class DynamoUpdateItem(
|
|
|
10558
10586
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
10559
10587
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
10560
10588
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
10561
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10589
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10562
10590
|
: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 '$')
|
|
10563
10591
|
: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 '$')
|
|
10564
10592
|
: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
|
|
@@ -10667,7 +10695,7 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10667
10695
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
10668
10696
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
10669
10697
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
10670
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10698
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10671
10699
|
: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 '$')
|
|
10672
10700
|
: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 '$')
|
|
10673
10701
|
: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
|
|
@@ -10833,7 +10861,9 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10833
10861
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
10834
10862
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
10835
10863
|
|
|
10836
|
-
You can control these AWS services using service integration patterns
|
|
10864
|
+
You can control these AWS services using service integration patterns.
|
|
10865
|
+
|
|
10866
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
10837
10867
|
|
|
10838
10868
|
:default:
|
|
10839
10869
|
|
|
@@ -10841,7 +10871,7 @@ class DynamoUpdateItemProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
10841
10871
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
10842
10872
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
10843
10873
|
|
|
10844
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
10874
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
10845
10875
|
'''
|
|
10846
10876
|
result = self._values.get("integration_pattern")
|
|
10847
10877
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -11352,7 +11382,7 @@ class EcsRunTask(
|
|
|
11352
11382
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
11353
11383
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
11354
11384
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
11355
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
11385
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
11356
11386
|
: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 '$')
|
|
11357
11387
|
: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 '$')
|
|
11358
11388
|
: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
|
|
@@ -11467,7 +11497,7 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11467
11497
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
11468
11498
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
11469
11499
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
11470
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
11500
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
11471
11501
|
: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 '$')
|
|
11472
11502
|
: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 '$')
|
|
11473
11503
|
: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
|
|
@@ -11656,7 +11686,9 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11656
11686
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
11657
11687
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
11658
11688
|
|
|
11659
|
-
You can control these AWS services using service integration patterns
|
|
11689
|
+
You can control these AWS services using service integration patterns.
|
|
11690
|
+
|
|
11691
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
11660
11692
|
|
|
11661
11693
|
:default:
|
|
11662
11694
|
|
|
@@ -11664,7 +11696,7 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
11664
11696
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
11665
11697
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
11666
11698
|
|
|
11667
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
11699
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
11668
11700
|
'''
|
|
11669
11701
|
result = self._values.get("integration_pattern")
|
|
11670
11702
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -11911,7 +11943,7 @@ class EksCall(
|
|
|
11911
11943
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
11912
11944
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
11913
11945
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
11914
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
11946
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
11915
11947
|
: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 '$')
|
|
11916
11948
|
: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 '$')
|
|
11917
11949
|
: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
|
|
@@ -12012,7 +12044,7 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12012
12044
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
12013
12045
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12014
12046
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
12015
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12047
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12016
12048
|
: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 '$')
|
|
12017
12049
|
: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 '$')
|
|
12018
12050
|
: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
|
|
@@ -12161,7 +12193,9 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12161
12193
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
12162
12194
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
12163
12195
|
|
|
12164
|
-
You can control these AWS services using service integration patterns
|
|
12196
|
+
You can control these AWS services using service integration patterns.
|
|
12197
|
+
|
|
12198
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
12165
12199
|
|
|
12166
12200
|
:default:
|
|
12167
12201
|
|
|
@@ -12169,7 +12203,7 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12169
12203
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
12170
12204
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12171
12205
|
|
|
12172
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
12206
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
12173
12207
|
'''
|
|
12174
12208
|
result = self._values.get("integration_pattern")
|
|
12175
12209
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -12416,7 +12450,7 @@ class EmrAddStep(
|
|
|
12416
12450
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
12417
12451
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12418
12452
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
12419
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12453
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12420
12454
|
: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 '$')
|
|
12421
12455
|
: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 '$')
|
|
12422
12456
|
: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
|
|
@@ -12522,7 +12556,7 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12522
12556
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
12523
12557
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12524
12558
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
12525
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12559
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12526
12560
|
: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 '$')
|
|
12527
12561
|
: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 '$')
|
|
12528
12562
|
: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
|
|
@@ -12676,7 +12710,9 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12676
12710
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
12677
12711
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
12678
12712
|
|
|
12679
|
-
You can control these AWS services using service integration patterns
|
|
12713
|
+
You can control these AWS services using service integration patterns.
|
|
12714
|
+
|
|
12715
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
12680
12716
|
|
|
12681
12717
|
:default:
|
|
12682
12718
|
|
|
@@ -12684,7 +12720,7 @@ class EmrAddStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12684
12720
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
12685
12721
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12686
12722
|
|
|
12687
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
12723
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
12688
12724
|
'''
|
|
12689
12725
|
result = self._values.get("integration_pattern")
|
|
12690
12726
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -12911,7 +12947,7 @@ class EmrCancelStep(
|
|
|
12911
12947
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
12912
12948
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
12913
12949
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
12914
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12950
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
12915
12951
|
: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 '$')
|
|
12916
12952
|
: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 '$')
|
|
12917
12953
|
: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
|
|
@@ -12999,7 +13035,7 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12999
13035
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
13000
13036
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
13001
13037
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
13002
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13038
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13003
13039
|
: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 '$')
|
|
13004
13040
|
: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 '$')
|
|
13005
13041
|
: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
|
|
@@ -13128,7 +13164,9 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13128
13164
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
13129
13165
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
13130
13166
|
|
|
13131
|
-
You can control these AWS services using service integration patterns
|
|
13167
|
+
You can control these AWS services using service integration patterns.
|
|
13168
|
+
|
|
13169
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
13132
13170
|
|
|
13133
13171
|
:default:
|
|
13134
13172
|
|
|
@@ -13136,7 +13174,7 @@ class EmrCancelStepProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13136
13174
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
13137
13175
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13138
13176
|
|
|
13139
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
13177
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
13140
13178
|
'''
|
|
13141
13179
|
result = self._values.get("integration_pattern")
|
|
13142
13180
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -13296,7 +13334,7 @@ class EmrContainersCreateVirtualCluster(
|
|
|
13296
13334
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
13297
13335
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
13298
13336
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
13299
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13337
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13300
13338
|
: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 '$')
|
|
13301
13339
|
: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 '$')
|
|
13302
13340
|
: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
|
|
@@ -13390,7 +13428,7 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13390
13428
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
13391
13429
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
13392
13430
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
13393
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13431
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13394
13432
|
: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 '$')
|
|
13395
13433
|
: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 '$')
|
|
13396
13434
|
: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
|
|
@@ -13528,7 +13566,9 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13528
13566
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
13529
13567
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
13530
13568
|
|
|
13531
|
-
You can control these AWS services using service integration patterns
|
|
13569
|
+
You can control these AWS services using service integration patterns.
|
|
13570
|
+
|
|
13571
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
13532
13572
|
|
|
13533
13573
|
:default:
|
|
13534
13574
|
|
|
@@ -13536,7 +13576,7 @@ class EmrContainersCreateVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13536
13576
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
13537
13577
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13538
13578
|
|
|
13539
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
13579
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
13540
13580
|
'''
|
|
13541
13581
|
result = self._values.get("integration_pattern")
|
|
13542
13582
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -13709,7 +13749,7 @@ class EmrContainersDeleteVirtualCluster(
|
|
|
13709
13749
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
13710
13750
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
13711
13751
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
13712
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13752
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13713
13753
|
: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 '$')
|
|
13714
13754
|
: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 '$')
|
|
13715
13755
|
: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
|
|
@@ -13794,7 +13834,7 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13794
13834
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
13795
13835
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
13796
13836
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
13797
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13837
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13798
13838
|
: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 '$')
|
|
13799
13839
|
: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 '$')
|
|
13800
13840
|
: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
|
|
@@ -13919,7 +13959,9 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13919
13959
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
13920
13960
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
13921
13961
|
|
|
13922
|
-
You can control these AWS services using service integration patterns
|
|
13962
|
+
You can control these AWS services using service integration patterns.
|
|
13963
|
+
|
|
13964
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
13923
13965
|
|
|
13924
13966
|
:default:
|
|
13925
13967
|
|
|
@@ -13927,7 +13969,7 @@ class EmrContainersDeleteVirtualClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13927
13969
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
13928
13970
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
13929
13971
|
|
|
13930
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
13972
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
13931
13973
|
'''
|
|
13932
13974
|
result = self._values.get("integration_pattern")
|
|
13933
13975
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -14106,7 +14148,7 @@ class EmrContainersStartJobRun(
|
|
|
14106
14148
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
14107
14149
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
14108
14150
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
14109
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
14151
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
14110
14152
|
: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 '$')
|
|
14111
14153
|
: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 '$')
|
|
14112
14154
|
: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
|
|
@@ -14218,7 +14260,7 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
14218
14260
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
14219
14261
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
14220
14262
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
14221
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
14263
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
14222
14264
|
: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 '$')
|
|
14223
14265
|
: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 '$')
|
|
14224
14266
|
: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
|
|
@@ -14387,7 +14429,9 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
14387
14429
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
14388
14430
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
14389
14431
|
|
|
14390
|
-
You can control these AWS services using service integration patterns
|
|
14432
|
+
You can control these AWS services using service integration patterns.
|
|
14433
|
+
|
|
14434
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
14391
14435
|
|
|
14392
14436
|
:default:
|
|
14393
14437
|
|
|
@@ -14395,7 +14439,7 @@ class EmrContainersStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
14395
14439
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
14396
14440
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
14397
14441
|
|
|
14398
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
14442
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
14399
14443
|
'''
|
|
14400
14444
|
result = self._values.get("integration_pattern")
|
|
14401
14445
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -14681,7 +14725,7 @@ class EmrCreateCluster(
|
|
|
14681
14725
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
14682
14726
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
14683
14727
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
14684
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
14728
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
14685
14729
|
: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 '$')
|
|
14686
14730
|
: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 '$')
|
|
14687
14731
|
: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
|
|
@@ -18215,7 +18259,7 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18215
18259
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
18216
18260
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
18217
18261
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
18218
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
18262
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
18219
18263
|
: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 '$')
|
|
18220
18264
|
: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 '$')
|
|
18221
18265
|
: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
|
|
@@ -18442,7 +18486,9 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18442
18486
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
18443
18487
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
18444
18488
|
|
|
18445
|
-
You can control these AWS services using service integration patterns
|
|
18489
|
+
You can control these AWS services using service integration patterns.
|
|
18490
|
+
|
|
18491
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
18446
18492
|
|
|
18447
18493
|
:default:
|
|
18448
18494
|
|
|
@@ -18450,7 +18496,7 @@ class EmrCreateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18450
18496
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
18451
18497
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
18452
18498
|
|
|
18453
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
18499
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
18454
18500
|
'''
|
|
18455
18501
|
result = self._values.get("integration_pattern")
|
|
18456
18502
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -18784,7 +18830,7 @@ class EmrModifyInstanceFleetByName(
|
|
|
18784
18830
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
18785
18831
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
18786
18832
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
18787
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
18833
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
18788
18834
|
: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 '$')
|
|
18789
18835
|
: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 '$')
|
|
18790
18836
|
: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
|
|
@@ -18878,7 +18924,7 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
18878
18924
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
18879
18925
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
18880
18926
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
18881
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
18927
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
18882
18928
|
: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 '$')
|
|
18883
18929
|
: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 '$')
|
|
18884
18930
|
: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
|
|
@@ -19015,7 +19061,9 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19015
19061
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
19016
19062
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
19017
19063
|
|
|
19018
|
-
You can control these AWS services using service integration patterns
|
|
19064
|
+
You can control these AWS services using service integration patterns.
|
|
19065
|
+
|
|
19066
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
19019
19067
|
|
|
19020
19068
|
:default:
|
|
19021
19069
|
|
|
@@ -19023,7 +19071,7 @@ class EmrModifyInstanceFleetByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19023
19071
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
19024
19072
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19025
19073
|
|
|
19026
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
19074
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
19027
19075
|
'''
|
|
19028
19076
|
result = self._values.get("integration_pattern")
|
|
19029
19077
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -19207,7 +19255,7 @@ class EmrModifyInstanceGroupByName(
|
|
|
19207
19255
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
19208
19256
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
19209
19257
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
19210
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19258
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19211
19259
|
: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 '$')
|
|
19212
19260
|
: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 '$')
|
|
19213
19261
|
: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
|
|
@@ -19588,7 +19636,7 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19588
19636
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
19589
19637
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
19590
19638
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
19591
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19639
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19592
19640
|
: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 '$')
|
|
19593
19641
|
: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 '$')
|
|
19594
19642
|
: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
|
|
@@ -19725,7 +19773,9 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19725
19773
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
19726
19774
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
19727
19775
|
|
|
19728
|
-
You can control these AWS services using service integration patterns
|
|
19776
|
+
You can control these AWS services using service integration patterns.
|
|
19777
|
+
|
|
19778
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
19729
19779
|
|
|
19730
19780
|
:default:
|
|
19731
19781
|
|
|
@@ -19733,7 +19783,7 @@ class EmrModifyInstanceGroupByNameProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19733
19783
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
19734
19784
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19735
19785
|
|
|
19736
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
19786
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
19737
19787
|
'''
|
|
19738
19788
|
result = self._values.get("integration_pattern")
|
|
19739
19789
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -19902,7 +19952,7 @@ class EmrSetClusterTerminationProtection(
|
|
|
19902
19952
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
19903
19953
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
19904
19954
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
19905
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19955
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19906
19956
|
: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 '$')
|
|
19907
19957
|
: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 '$')
|
|
19908
19958
|
: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
|
|
@@ -19990,7 +20040,7 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
19990
20040
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
19991
20041
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
19992
20042
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
19993
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20043
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
19994
20044
|
: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 '$')
|
|
19995
20045
|
: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 '$')
|
|
19996
20046
|
: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
|
|
@@ -20119,7 +20169,9 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20119
20169
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
20120
20170
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
20121
20171
|
|
|
20122
|
-
You can control these AWS services using service integration patterns
|
|
20172
|
+
You can control these AWS services using service integration patterns.
|
|
20173
|
+
|
|
20174
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
20123
20175
|
|
|
20124
20176
|
:default:
|
|
20125
20177
|
|
|
@@ -20127,7 +20179,7 @@ class EmrSetClusterTerminationProtectionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20127
20179
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
20128
20180
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20129
20181
|
|
|
20130
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
20182
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
20131
20183
|
'''
|
|
20132
20184
|
result = self._values.get("integration_pattern")
|
|
20133
20185
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -20279,7 +20331,7 @@ class EmrTerminateCluster(
|
|
|
20279
20331
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
20280
20332
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
20281
20333
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
20282
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20334
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20283
20335
|
: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 '$')
|
|
20284
20336
|
: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 '$')
|
|
20285
20337
|
: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
|
|
@@ -20364,7 +20416,7 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20364
20416
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
20365
20417
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
20366
20418
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
20367
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20419
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20368
20420
|
: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 '$')
|
|
20369
20421
|
: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 '$')
|
|
20370
20422
|
: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
|
|
@@ -20489,7 +20541,9 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20489
20541
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
20490
20542
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
20491
20543
|
|
|
20492
|
-
You can control these AWS services using service integration patterns
|
|
20544
|
+
You can control these AWS services using service integration patterns.
|
|
20545
|
+
|
|
20546
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
20493
20547
|
|
|
20494
20548
|
:default:
|
|
20495
20549
|
|
|
@@ -20497,7 +20551,7 @@ class EmrTerminateClusterProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20497
20551
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
20498
20552
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20499
20553
|
|
|
20500
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
20554
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
20501
20555
|
'''
|
|
20502
20556
|
result = self._values.get("integration_pattern")
|
|
20503
20557
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -20795,7 +20849,7 @@ class EvaluateExpression(
|
|
|
20795
20849
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
20796
20850
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
20797
20851
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
20798
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20852
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20799
20853
|
: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 '$')
|
|
20800
20854
|
: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 '$')
|
|
20801
20855
|
: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
|
|
@@ -20883,7 +20937,7 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
20883
20937
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
20884
20938
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
20885
20939
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
20886
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20940
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
20887
20941
|
: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 '$')
|
|
20888
20942
|
: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 '$')
|
|
20889
20943
|
: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
|
|
@@ -21034,7 +21088,9 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21034
21088
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
21035
21089
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
21036
21090
|
|
|
21037
|
-
You can control these AWS services using service integration patterns
|
|
21091
|
+
You can control these AWS services using service integration patterns.
|
|
21092
|
+
|
|
21093
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
21038
21094
|
|
|
21039
21095
|
:default:
|
|
21040
21096
|
|
|
@@ -21042,7 +21098,7 @@ class EvaluateExpressionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21042
21098
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
21043
21099
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21044
21100
|
|
|
21045
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
21101
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
21046
21102
|
'''
|
|
21047
21103
|
result = self._values.get("integration_pattern")
|
|
21048
21104
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -21213,7 +21269,7 @@ class EventBridgePutEvents(
|
|
|
21213
21269
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
21214
21270
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
21215
21271
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
21216
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21272
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21217
21273
|
: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 '$')
|
|
21218
21274
|
: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 '$')
|
|
21219
21275
|
: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
|
|
@@ -21422,7 +21478,7 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21422
21478
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
21423
21479
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
21424
21480
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
21425
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21481
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21426
21482
|
: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 '$')
|
|
21427
21483
|
: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 '$')
|
|
21428
21484
|
: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
|
|
@@ -21561,7 +21617,9 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21561
21617
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
21562
21618
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
21563
21619
|
|
|
21564
|
-
You can control these AWS services using service integration patterns
|
|
21620
|
+
You can control these AWS services using service integration patterns.
|
|
21621
|
+
|
|
21622
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
21565
21623
|
|
|
21566
21624
|
:default:
|
|
21567
21625
|
|
|
@@ -21569,7 +21627,7 @@ class EventBridgePutEventsProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21569
21627
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
21570
21628
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21571
21629
|
|
|
21572
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
21630
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
21573
21631
|
'''
|
|
21574
21632
|
result = self._values.get("integration_pattern")
|
|
21575
21633
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -21719,7 +21777,7 @@ class GlueDataBrewStartJobRun(
|
|
|
21719
21777
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
21720
21778
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
21721
21779
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
21722
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21780
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21723
21781
|
: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 '$')
|
|
21724
21782
|
: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 '$')
|
|
21725
21783
|
: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
|
|
@@ -21804,7 +21862,7 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21804
21862
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
21805
21863
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
21806
21864
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
21807
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21865
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21808
21866
|
: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 '$')
|
|
21809
21867
|
: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 '$')
|
|
21810
21868
|
: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
|
|
@@ -21929,7 +21987,9 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21929
21987
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
21930
21988
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
21931
21989
|
|
|
21932
|
-
You can control these AWS services using service integration patterns
|
|
21990
|
+
You can control these AWS services using service integration patterns.
|
|
21991
|
+
|
|
21992
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
21933
21993
|
|
|
21934
21994
|
:default:
|
|
21935
21995
|
|
|
@@ -21937,7 +21997,7 @@ class GlueDataBrewStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
21937
21997
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
21938
21998
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
21939
21999
|
|
|
21940
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
22000
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
21941
22001
|
'''
|
|
21942
22002
|
result = self._values.get("integration_pattern")
|
|
21943
22003
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -22053,13 +22113,14 @@ class GlueStartJobRun(
|
|
|
22053
22113
|
|
|
22054
22114
|
Example::
|
|
22055
22115
|
|
|
22056
|
-
|
|
22057
|
-
|
|
22058
|
-
|
|
22059
|
-
|
|
22060
|
-
|
|
22061
|
-
|
|
22062
|
-
|
|
22116
|
+
import aws_cdk.aws_glue_alpha as glue
|
|
22117
|
+
|
|
22118
|
+
# submit_glue: glue.Job
|
|
22119
|
+
|
|
22120
|
+
|
|
22121
|
+
submit_job = tasks.GlueStartJobRun(self, "Submit Job",
|
|
22122
|
+
glue_job_name=submit_glue.job_name,
|
|
22123
|
+
integration_pattern=sfn.IntegrationPattern.RUN_JOB
|
|
22063
22124
|
)
|
|
22064
22125
|
'''
|
|
22065
22126
|
|
|
@@ -22097,7 +22158,7 @@ class GlueStartJobRun(
|
|
|
22097
22158
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
22098
22159
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
22099
22160
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
22100
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
22161
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
22101
22162
|
: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 '$')
|
|
22102
22163
|
: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 '$')
|
|
22103
22164
|
: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
|
|
@@ -22191,7 +22252,7 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
22191
22252
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
22192
22253
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
22193
22254
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
22194
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
22255
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
22195
22256
|
: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 '$')
|
|
22196
22257
|
: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 '$')
|
|
22197
22258
|
: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
|
|
@@ -22207,13 +22268,14 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
22207
22268
|
|
|
22208
22269
|
Example::
|
|
22209
22270
|
|
|
22210
|
-
|
|
22211
|
-
|
|
22212
|
-
|
|
22213
|
-
|
|
22214
|
-
|
|
22215
|
-
|
|
22216
|
-
|
|
22271
|
+
import aws_cdk.aws_glue_alpha as glue
|
|
22272
|
+
|
|
22273
|
+
# submit_glue: glue.Job
|
|
22274
|
+
|
|
22275
|
+
|
|
22276
|
+
submit_job = tasks.GlueStartJobRun(self, "Submit Job",
|
|
22277
|
+
glue_job_name=submit_glue.job_name,
|
|
22278
|
+
integration_pattern=sfn.IntegrationPattern.RUN_JOB
|
|
22217
22279
|
)
|
|
22218
22280
|
'''
|
|
22219
22281
|
if isinstance(credentials, dict):
|
|
@@ -22333,7 +22395,9 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
22333
22395
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
22334
22396
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
22335
22397
|
|
|
22336
|
-
You can control these AWS services using service integration patterns
|
|
22398
|
+
You can control these AWS services using service integration patterns.
|
|
22399
|
+
|
|
22400
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
22337
22401
|
|
|
22338
22402
|
:default:
|
|
22339
22403
|
|
|
@@ -22341,7 +22405,7 @@ class GlueStartJobRunProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
22341
22405
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
22342
22406
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
22343
22407
|
|
|
22344
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
22408
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
22345
22409
|
'''
|
|
22346
22410
|
result = self._values.get("integration_pattern")
|
|
22347
22411
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -22938,7 +23002,7 @@ class LambdaInvoke(
|
|
|
22938
23002
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
22939
23003
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
22940
23004
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
22941
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
23005
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
22942
23006
|
: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 '$')
|
|
22943
23007
|
: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 '$')
|
|
22944
23008
|
: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
|
|
@@ -23041,7 +23105,7 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23041
23105
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
23042
23106
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
23043
23107
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
23044
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
23108
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
23045
23109
|
: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 '$')
|
|
23046
23110
|
: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 '$')
|
|
23047
23111
|
: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
|
|
@@ -23199,7 +23263,9 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23199
23263
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
23200
23264
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
23201
23265
|
|
|
23202
|
-
You can control these AWS services using service integration patterns
|
|
23266
|
+
You can control these AWS services using service integration patterns.
|
|
23267
|
+
|
|
23268
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
23203
23269
|
|
|
23204
23270
|
:default:
|
|
23205
23271
|
|
|
@@ -23207,7 +23273,7 @@ class LambdaInvokeProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
23207
23273
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
23208
23274
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
23209
23275
|
|
|
23210
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
23276
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
23211
23277
|
'''
|
|
23212
23278
|
result = self._values.get("integration_pattern")
|
|
23213
23279
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -24997,7 +25063,7 @@ class SageMakerCreateEndpoint(
|
|
|
24997
25063
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
24998
25064
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
24999
25065
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
25000
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25066
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25001
25067
|
: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 '$')
|
|
25002
25068
|
: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 '$')
|
|
25003
25069
|
: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
|
|
@@ -25097,7 +25163,7 @@ class SageMakerCreateEndpointConfig(
|
|
|
25097
25163
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
25098
25164
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25099
25165
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
25100
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25166
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25101
25167
|
: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 '$')
|
|
25102
25168
|
: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 '$')
|
|
25103
25169
|
: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
|
|
@@ -25191,7 +25257,7 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25191
25257
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
25192
25258
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25193
25259
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
25194
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25260
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25195
25261
|
: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 '$')
|
|
25196
25262
|
: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 '$')
|
|
25197
25263
|
: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
|
|
@@ -25334,7 +25400,9 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25334
25400
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
25335
25401
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
25336
25402
|
|
|
25337
|
-
You can control these AWS services using service integration patterns
|
|
25403
|
+
You can control these AWS services using service integration patterns.
|
|
25404
|
+
|
|
25405
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
25338
25406
|
|
|
25339
25407
|
:default:
|
|
25340
25408
|
|
|
@@ -25342,7 +25410,7 @@ class SageMakerCreateEndpointConfigProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25342
25410
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
25343
25411
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25344
25412
|
|
|
25345
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
25413
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
25346
25414
|
'''
|
|
25347
25415
|
result = self._values.get("integration_pattern")
|
|
25348
25416
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -25520,7 +25588,7 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25520
25588
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
25521
25589
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25522
25590
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
25523
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25591
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25524
25592
|
: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 '$')
|
|
25525
25593
|
: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 '$')
|
|
25526
25594
|
: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
|
|
@@ -25654,7 +25722,9 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25654
25722
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
25655
25723
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
25656
25724
|
|
|
25657
|
-
You can control these AWS services using service integration patterns
|
|
25725
|
+
You can control these AWS services using service integration patterns.
|
|
25726
|
+
|
|
25727
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
25658
25728
|
|
|
25659
25729
|
:default:
|
|
25660
25730
|
|
|
@@ -25662,7 +25732,7 @@ class SageMakerCreateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25662
25732
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
25663
25733
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25664
25734
|
|
|
25665
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
25735
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
25666
25736
|
'''
|
|
25667
25737
|
result = self._values.get("integration_pattern")
|
|
25668
25738
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -25847,7 +25917,7 @@ class SageMakerCreateModel(
|
|
|
25847
25917
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
25848
25918
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25849
25919
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
25850
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25920
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25851
25921
|
: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 '$')
|
|
25852
25922
|
: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 '$')
|
|
25853
25923
|
: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
|
|
@@ -25982,7 +26052,7 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
25982
26052
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
25983
26053
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
25984
26054
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
25985
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
26055
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
25986
26056
|
: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 '$')
|
|
25987
26057
|
: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 '$')
|
|
25988
26058
|
: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
|
|
@@ -26142,7 +26212,9 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26142
26212
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
26143
26213
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
26144
26214
|
|
|
26145
|
-
You can control these AWS services using service integration patterns
|
|
26215
|
+
You can control these AWS services using service integration patterns.
|
|
26216
|
+
|
|
26217
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
26146
26218
|
|
|
26147
26219
|
:default:
|
|
26148
26220
|
|
|
@@ -26150,7 +26222,7 @@ class SageMakerCreateModelProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26150
26222
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
26151
26223
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
26152
26224
|
|
|
26153
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
26225
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
26154
26226
|
'''
|
|
26155
26227
|
result = self._values.get("integration_pattern")
|
|
26156
26228
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -26405,7 +26477,7 @@ class SageMakerCreateTrainingJob(
|
|
|
26405
26477
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
26406
26478
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
26407
26479
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
26408
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
26480
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
26409
26481
|
: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 '$')
|
|
26410
26482
|
: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 '$')
|
|
26411
26483
|
: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
|
|
@@ -26555,7 +26627,7 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26555
26627
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
26556
26628
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
26557
26629
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
26558
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
26630
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
26559
26631
|
: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 '$')
|
|
26560
26632
|
: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 '$')
|
|
26561
26633
|
: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
|
|
@@ -26755,7 +26827,9 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26755
26827
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
26756
26828
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
26757
26829
|
|
|
26758
|
-
You can control these AWS services using service integration patterns
|
|
26830
|
+
You can control these AWS services using service integration patterns.
|
|
26831
|
+
|
|
26832
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
26759
26833
|
|
|
26760
26834
|
:default:
|
|
26761
26835
|
|
|
@@ -26763,7 +26837,7 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
26763
26837
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
26764
26838
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
26765
26839
|
|
|
26766
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
26840
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
26767
26841
|
'''
|
|
26768
26842
|
result = self._values.get("integration_pattern")
|
|
26769
26843
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -27059,7 +27133,7 @@ class SageMakerCreateTransformJob(
|
|
|
27059
27133
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
27060
27134
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
27061
27135
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
27062
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27136
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27063
27137
|
: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 '$')
|
|
27064
27138
|
: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 '$')
|
|
27065
27139
|
: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
|
|
@@ -27186,7 +27260,7 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27186
27260
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
27187
27261
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
27188
27262
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
27189
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27263
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27190
27264
|
: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 '$')
|
|
27191
27265
|
: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 '$')
|
|
27192
27266
|
: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
|
|
@@ -27380,7 +27454,9 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27380
27454
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
27381
27455
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
27382
27456
|
|
|
27383
|
-
You can control these AWS services using service integration patterns
|
|
27457
|
+
You can control these AWS services using service integration patterns.
|
|
27458
|
+
|
|
27459
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
27384
27460
|
|
|
27385
27461
|
:default:
|
|
27386
27462
|
|
|
@@ -27388,7 +27464,7 @@ class SageMakerCreateTransformJobProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27388
27464
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
27389
27465
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27390
27466
|
|
|
27391
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
27467
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
27392
27468
|
'''
|
|
27393
27469
|
result = self._values.get("integration_pattern")
|
|
27394
27470
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -27635,7 +27711,7 @@ class SageMakerUpdateEndpoint(
|
|
|
27635
27711
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
27636
27712
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
27637
27713
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
27638
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27714
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27639
27715
|
: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 '$')
|
|
27640
27716
|
: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 '$')
|
|
27641
27717
|
: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
|
|
@@ -27723,7 +27799,7 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27723
27799
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
27724
27800
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
27725
27801
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
27726
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27802
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27727
27803
|
: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 '$')
|
|
27728
27804
|
: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 '$')
|
|
27729
27805
|
: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
|
|
@@ -27853,7 +27929,9 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27853
27929
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
27854
27930
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
27855
27931
|
|
|
27856
|
-
You can control these AWS services using service integration patterns
|
|
27932
|
+
You can control these AWS services using service integration patterns.
|
|
27933
|
+
|
|
27934
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
27857
27935
|
|
|
27858
27936
|
:default:
|
|
27859
27937
|
|
|
@@ -27861,7 +27939,7 @@ class SageMakerUpdateEndpointProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
27861
27939
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
27862
27940
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
27863
27941
|
|
|
27864
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
27942
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
27865
27943
|
'''
|
|
27866
27944
|
result = self._values.get("integration_pattern")
|
|
27867
27945
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -28096,7 +28174,7 @@ class SnsPublish(
|
|
|
28096
28174
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
28097
28175
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
28098
28176
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
28099
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28177
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28100
28178
|
: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 '$')
|
|
28101
28179
|
: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 '$')
|
|
28102
28180
|
: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
|
|
@@ -28199,7 +28277,7 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
28199
28277
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
28200
28278
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
28201
28279
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
28202
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28280
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28203
28281
|
: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 '$')
|
|
28204
28282
|
: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 '$')
|
|
28205
28283
|
: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
|
|
@@ -28369,7 +28447,9 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
28369
28447
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
28370
28448
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
28371
28449
|
|
|
28372
|
-
You can control these AWS services using service integration patterns
|
|
28450
|
+
You can control these AWS services using service integration patterns.
|
|
28451
|
+
|
|
28452
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
28373
28453
|
|
|
28374
28454
|
:default:
|
|
28375
28455
|
|
|
@@ -28377,7 +28457,7 @@ class SnsPublishProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
28377
28457
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
28378
28458
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28379
28459
|
|
|
28380
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
28460
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
28381
28461
|
'''
|
|
28382
28462
|
result = self._values.get("integration_pattern")
|
|
28383
28463
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -28751,7 +28831,7 @@ class SqsSendMessage(
|
|
|
28751
28831
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
28752
28832
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
28753
28833
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
28754
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28834
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28755
28835
|
: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 '$')
|
|
28756
28836
|
: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 '$')
|
|
28757
28837
|
: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
|
|
@@ -28848,7 +28928,7 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
28848
28928
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
28849
28929
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
28850
28930
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
28851
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28931
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
28852
28932
|
: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 '$')
|
|
28853
28933
|
: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 '$')
|
|
28854
28934
|
: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
|
|
@@ -29002,7 +29082,9 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29002
29082
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
29003
29083
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
29004
29084
|
|
|
29005
|
-
You can control these AWS services using service integration patterns
|
|
29085
|
+
You can control these AWS services using service integration patterns.
|
|
29086
|
+
|
|
29087
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
29006
29088
|
|
|
29007
29089
|
:default:
|
|
29008
29090
|
|
|
@@ -29010,7 +29092,7 @@ class SqsSendMessageProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29010
29092
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
29011
29093
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29012
29094
|
|
|
29013
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
29095
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
29014
29096
|
'''
|
|
29015
29097
|
result = self._values.get("integration_pattern")
|
|
29016
29098
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -29207,7 +29289,7 @@ class StepFunctionsInvokeActivity(
|
|
|
29207
29289
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
29208
29290
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
29209
29291
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
29210
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29292
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29211
29293
|
: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 '$')
|
|
29212
29294
|
: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 '$')
|
|
29213
29295
|
: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
|
|
@@ -29295,7 +29377,7 @@ class StepFunctionsInvokeActivityProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29295
29377
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
29296
29378
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
29297
29379
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
29298
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29380
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29299
29381
|
: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 '$')
|
|
29300
29382
|
: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 '$')
|
|
29301
29383
|
: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
|
|
@@ -29426,7 +29508,9 @@ class StepFunctionsInvokeActivityProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29426
29508
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
29427
29509
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
29428
29510
|
|
|
29429
|
-
You can control these AWS services using service integration patterns
|
|
29511
|
+
You can control these AWS services using service integration patterns.
|
|
29512
|
+
|
|
29513
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
29430
29514
|
|
|
29431
29515
|
:default:
|
|
29432
29516
|
|
|
@@ -29434,7 +29518,7 @@ class StepFunctionsInvokeActivityProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29434
29518
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
29435
29519
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29436
29520
|
|
|
29437
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
29521
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
29438
29522
|
'''
|
|
29439
29523
|
result = self._values.get("integration_pattern")
|
|
29440
29524
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|
|
@@ -29615,7 +29699,7 @@ class StepFunctionsStartExecution(
|
|
|
29615
29699
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
29616
29700
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
29617
29701
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
29618
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29702
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29619
29703
|
: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 '$')
|
|
29620
29704
|
: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 '$')
|
|
29621
29705
|
: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
|
|
@@ -29709,7 +29793,7 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29709
29793
|
:param heartbeat: (deprecated) Timeout for the heartbeat. Default: - None
|
|
29710
29794
|
:param heartbeat_timeout: Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
|
|
29711
29795
|
:param input_path: JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}. Default: - The entire task input (JSON path '$')
|
|
29712
|
-
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29796
|
+
:param integration_pattern: AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns. Depending on the AWS Service, the Service Integration Pattern availability will vary. Default: - ``IntegrationPattern.REQUEST_RESPONSE`` for most tasks. ``IntegrationPattern.RUN_JOB`` for the following exceptions: ``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29713
29797
|
: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 '$')
|
|
29714
29798
|
: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 '$')
|
|
29715
29799
|
: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
|
|
@@ -29863,7 +29947,9 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29863
29947
|
def integration_pattern(self) -> typing.Optional[_IntegrationPattern_949291bc]:
|
|
29864
29948
|
'''AWS Step Functions integrates with services directly in the Amazon States Language.
|
|
29865
29949
|
|
|
29866
|
-
You can control these AWS services using service integration patterns
|
|
29950
|
+
You can control these AWS services using service integration patterns.
|
|
29951
|
+
|
|
29952
|
+
Depending on the AWS Service, the Service Integration Pattern availability will vary.
|
|
29867
29953
|
|
|
29868
29954
|
:default:
|
|
29869
29955
|
|
|
@@ -29871,7 +29957,7 @@ class StepFunctionsStartExecutionProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
29871
29957
|
``IntegrationPattern.RUN_JOB`` for the following exceptions:
|
|
29872
29958
|
``BatchSubmitJob``, ``EmrAddStep``, ``EmrCreateCluster``, ``EmrTerminationCluster``, and ``EmrContainersStartJobRun``.
|
|
29873
29959
|
|
|
29874
|
-
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-
|
|
29960
|
+
:see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-supported-services.html
|
|
29875
29961
|
'''
|
|
29876
29962
|
result = self._values.get("integration_pattern")
|
|
29877
29963
|
return typing.cast(typing.Optional[_IntegrationPattern_949291bc], result)
|