@Generated(value="jsii-pacmak/1.54.0 (build b1b977a)", date="2022-02-19T00:19:34.318Z") @Stability(value=Stable) public interface MapProps extends software.amazon.jsii.JsiiSerializable
Example:
Map map = Map.Builder.create(this, "Map State")
.maxConcurrency(1)
.itemsPath(JsonPath.stringAt("$.inputForMap"))
.build();
map.iterator(new Pass(this, "Pass State"));
| Modifier and Type | Interface and Description |
|---|---|
static class |
MapProps.Builder
A builder for
MapProps |
static class |
MapProps.Jsii$Proxy
An implementation for
MapProps |
| Modifier and Type | Method and Description |
|---|---|
static MapProps.Builder |
builder() |
default String |
getComment()
An optional description for this state.
|
default String |
getInputPath()
JSONPath expression to select part of the state to be the input to this state.
|
default String |
getItemsPath()
JSONPath expression to select the array to iterate over.
|
default Number |
getMaxConcurrency()
MaxConcurrency.
|
default String |
getOutputPath()
JSONPath expression to select part of the state to be the output to this state.
|
default Map<String,Object> |
getParameters()
The JSON that you want to override your default iteration input.
|
default String |
getResultPath()
JSONPath expression to indicate where to inject the state's output.
|
default Map<String,Object> |
getResultSelector()
The JSON that will replace the state's raw result and become the effective result before ResultPath is applied.
|
@Stability(value=Stable) @Nullable default String getComment()
Default: No comment
@Stability(value=Stable) @Nullable default String getInputPath()
May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
Default: $
@Stability(value=Stable) @Nullable default String getItemsPath()
Default: $
@Stability(value=Stable) @Nullable default Number getMaxConcurrency()
An upper bound on the number of iterations you want running at once.
Default: - full concurrency
@Stability(value=Stable) @Nullable default String getOutputPath()
May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
Default: $
@Stability(value=Stable) @Nullable default Map<String,Object> getParameters()
Default: $
@Stability(value=Stable) @Nullable default String getResultPath()
May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output.
Default: $
@Stability(value=Stable) @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=Stable) static MapProps.Builder builder()
MapProps.Builder of MapPropsCopyright © 2022. All rights reserved.