@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:01:38.433Z") @Stability(value=Experimental) public interface TaskStateBaseProps extends software.amazon.jsii.JsiiSerializable
Modifier and Type | Interface and Description |
---|---|
static class |
TaskStateBaseProps.Builder
A builder for
TaskStateBaseProps |
static class |
TaskStateBaseProps.Jsii$Proxy
An implementation for
TaskStateBaseProps |
Modifier and Type | Method and Description |
---|---|
static TaskStateBaseProps.Builder |
builder() |
default String |
getComment()
(experimental) An optional description for this state.
|
default Duration |
getHeartbeat()
(experimental) Timeout for the heartbeat.
|
default String |
getInputPath()
(experimental) JSONPath expression to select part of the state to be the input to this state.
|
default IntegrationPattern |
getIntegrationPattern()
(experimental) AWS Step Functions integrates with services directly in the Amazon States Language.
|
default String |
getOutputPath()
(experimental) JSONPath expression to select select a portion of the state output to pass to the next state.
|
default String |
getResultPath()
(experimental) JSONPath expression to indicate where to inject the state's output.
|
default Map<String,Object> |
getResultSelector()
(experimental) The JSON that will replace the state's raw result and become the effective result before ResultPath is applied.
|
default Duration |
getTimeout()
(experimental) Timeout for the state machine.
|
@Stability(value=Experimental) @Nullable default String getComment()
Default: - No comment
@Stability(value=Experimental) @Nullable default Duration getHeartbeat()
Default: - None
@Stability(value=Experimental) @Nullable default String getInputPath()
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 '$')
@Stability(value=Experimental) @Nullable default IntegrationPattern getIntegrationPattern()
You can control these AWS services using service integration patterns
Default: IntegrationPattern.REQUEST_RESPONSE
https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-wait-token
@Stability(value=Experimental) @Nullable default String getOutputPath()
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 '$')
@Stability(value=Experimental) @Nullable default String getResultPath()
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 '$')
@Stability(value=Experimental) @Nullable default Map<String,Object> getResultSelector()
You can use ResultSelector to create a payload with values that are static or selected from the state's raw result.
Default: - None
https://docs.aws.amazon.com/step-functions/latest/dg/input-output-inputpath-params.html#input-output-resultselector
@Stability(value=Experimental) @Nullable default Duration getTimeout()
Default: - None
@Stability(value=Experimental) static TaskStateBaseProps.Builder builder()
TaskStateBaseProps.Builder
of TaskStateBaseProps
Copyright © 2021. All rights reserved.