| Modifier and Type | Method and Description |
|---|---|
Parallel |
build() |
Parallel.Builder |
comment(String comment)
An optional description for this state.
|
static Parallel.Builder |
create(Construct scope,
String id)
EXPERIMENTAL
|
Parallel.Builder |
inputPath(String inputPath)
JSONPath expression to select part of the state to be the input to this state.
|
Parallel.Builder |
outputPath(String outputPath)
JSONPath expression to select part of the state to be the output to this state.
|
Parallel.Builder |
resultPath(String resultPath)
JSONPath expression to indicate where to inject the state's output.
|
@Stability(value=Experimental) public static Parallel.Builder create(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
EXPERIMENTAL
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 DISCARD, which will cause the effective input to be the empty object {}.
Default: $
EXPERIMENTAL
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 DISCARD, which will cause the effective output to be the empty object {}.
Default: $
EXPERIMENTAL
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 DISCARD, which will cause the state's input to become its output.
Default: $
EXPERIMENTAL
resultPath - JSONPath expression to indicate where to inject the state's output. This parameter is required.this@Stability(value=Experimental) public Parallel build()
Copyright © 2020. All rights reserved.