| Modifier and Type | Method and Description |
|---|---|
Parallel |
build() |
Parallel.Builder |
comment(String comment)
(experimental) An optional description for this state.
|
static Parallel.Builder |
create(software.constructs.Construct scope,
String id) |
Parallel.Builder |
inputPath(String inputPath)
(experimental) JSONPath expression to select part of the state to be the input to this state.
|
Parallel.Builder |
outputPath(String outputPath)
(experimental) JSONPath expression to select part of the state to be the output to this state.
|
Parallel.Builder |
resultPath(String resultPath)
(experimental) JSONPath expression to indicate where to inject the state's output.
|
Parallel.Builder |
resultSelector(Map<String,? extends Object> resultSelector)
(experimental) The JSON that will replace the state's raw result and become the effective result before ResultPath is applied.
|
@Stability(value=Experimental) public static Parallel.Builder create(software.constructs.Construct scope, String id)
scope - This parameter is required.id - This parameter is required.Parallel.Builder.@Stability(value=Experimental) public Parallel.Builder comment(String comment)
Default: No comment
comment - An optional description for this state. This parameter is required.this@Stability(value=Experimental) public Parallel.Builder inputPath(String inputPath)
May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
Default: $
inputPath - JSONPath expression to select part of the state to be the input to this state. This parameter is required.this@Stability(value=Experimental) public Parallel.Builder outputPath(String outputPath)
May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
Default: $
outputPath - JSONPath expression to select part of the state to be the output to this state. This parameter is required.this@Stability(value=Experimental) public Parallel.Builder resultPath(String resultPath)
May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output.
Default: $
resultPath - JSONPath expression to indicate where to inject the state's output. This parameter is required.this@Stability(value=Experimental) public Parallel.Builder resultSelector(Map<String,? extends Object> resultSelector)
You can use ResultSelector to create a payload with values that are static or selected from the state's raw result.
Default: - None
resultSelector - The JSON that will replace the state's raw result and become the effective result before ResultPath is applied. This parameter is required.thishttps://docs.aws.amazon.com/step-functions/latest/dg/input-output-inputpath-params.html#input-output-resultselectorCopyright © 2021. All rights reserved.