| Modifier and Type | Method and Description |
|---|---|
Pass |
build() |
Pass.Builder |
comment(String comment)
(experimental) An optional description for this state.
|
static Pass.Builder |
create(software.constructs.Construct scope,
String id) |
Pass.Builder |
inputPath(String inputPath)
(experimental) JSONPath expression to select part of the state to be the input to this state.
|
Pass.Builder |
outputPath(String outputPath)
(experimental) JSONPath expression to select part of the state to be the output to this state.
|
Pass.Builder |
parameters(Map<String,? extends Object> parameters)
(experimental) Parameters pass a collection of key-value pairs, either static values or JSONPath expressions that select from the input.
|
Pass.Builder |
result(Result result)
(experimental) If given, treat as the result of this operation.
|
Pass.Builder |
resultPath(String resultPath)
(experimental) JSONPath expression to indicate where to inject the state's output.
|
@Stability(value=Experimental) public static Pass.Builder create(software.constructs.Construct scope, String id)
scope - This parameter is required.id - This parameter is required.Pass.Builder.@Stability(value=Experimental) public Pass.Builder comment(String comment)
Default: No comment
comment - An optional description for this state. This parameter is required.this@Stability(value=Experimental) public Pass.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 Pass.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 Pass.Builder parameters(Map<String,? extends Object> parameters)
Default: No parameters
parameters - Parameters pass a collection of key-value pairs, either static values or JSONPath expressions that select from the input. This parameter is required.thishttps://docs.aws.amazon.com/step-functions/latest/dg/input-output-inputpath-params.html#input-output-parameters@Stability(value=Experimental) public Pass.Builder result(Result result)
Can be used to inject or replace the current execution state.
Default: No injected result
result - If given, treat as the result of this operation. This parameter is required.this@Stability(value=Experimental) public Pass.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.thisCopyright © 2021. All rights reserved.