| Modifier and Type | Method and Description |
|---|---|
Map |
build() |
Map.Builder |
comment(String comment)
(experimental) An optional description for this state.
|
static Map.Builder |
create(software.constructs.Construct scope,
String id) |
Map.Builder |
inputPath(String inputPath)
(experimental) JSONPath expression to select part of the state to be the input to this state.
|
Map.Builder |
itemsPath(String itemsPath)
(experimental) JSONPath expression to select the array to iterate over.
|
Map.Builder |
maxConcurrency(Number maxConcurrency)
(experimental) MaxConcurrency.
|
Map.Builder |
outputPath(String outputPath)
(experimental) JSONPath expression to select part of the state to be the output to this state.
|
Map.Builder |
parameters(Map<String,? extends Object> parameters)
(experimental) The JSON that you want to override your default iteration input.
|
Map.Builder |
resultPath(String resultPath)
(experimental) JSONPath expression to indicate where to inject the state's output.
|
Map.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 Map.Builder create(software.constructs.Construct scope, String id)
scope - This parameter is required.id - This parameter is required.Map.Builder.@Stability(value=Experimental) public Map.Builder comment(String comment)
Default: No comment
comment - An optional description for this state. This parameter is required.this@Stability(value=Experimental) public Map.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 Map.Builder itemsPath(String itemsPath)
Default: $
itemsPath - JSONPath expression to select the array to iterate over. This parameter is required.this@Stability(value=Experimental) public Map.Builder maxConcurrency(Number maxConcurrency)
An upper bound on the number of iterations you want running at once.
Default: - full concurrency
maxConcurrency - MaxConcurrency. This parameter is required.this@Stability(value=Experimental) public Map.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 Map.Builder parameters(Map<String,? extends Object> parameters)
Default: $
parameters - The JSON that you want to override your default iteration input. This parameter is required.this@Stability(value=Experimental) public Map.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 Map.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.