Interface MapBaseProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
DistributedMapProps,MapProps
- All Known Implementing Classes:
DistributedMapProps.Jsii$Proxy,MapBaseProps.Jsii$Proxy,MapProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.stepfunctions.*;
Object itemSelector;
Object resultSelector;
MapBaseProps mapBaseProps = MapBaseProps.builder()
.comment("comment")
.inputPath("inputPath")
.itemSelector(Map.of(
"itemSelectorKey", itemSelector))
.itemsPath("itemsPath")
.maxConcurrency(123)
.maxConcurrencyPath("maxConcurrencyPath")
.outputPath("outputPath")
.resultPath("resultPath")
.resultSelector(Map.of(
"resultSelectorKey", resultSelector))
.stateName("stateName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMapBasePropsstatic final classAn implementation forMapBaseProps -
Method Summary
Modifier and TypeMethodDescriptionstatic MapBaseProps.Builderbuilder()default StringAn optional description for this state.default StringJSONPath expression to select part of the state to be the input to this state.The JSON that you want to override your default iteration input (mutually exclusive withparameters).default StringJSONPath expression to select the array to iterate over.default NumberMaxConcurrency.default StringMaxConcurrencyPath.default StringJSONPath expression to select part of the state to be the output to this state.default StringJSONPath expression to indicate where to inject the state's output.The JSON that will replace the state's raw result and become the effective result before ResultPath is applied.default StringOptional name for this state.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComment
An optional description for this state.Default: No comment
-
getInputPath
JSONPath expression to select part of the state to be the input to this state.May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
Default: $
-
getItemSelector
The JSON that you want to override your default iteration input (mutually exclusive withparameters).Default: $
- See Also:
-
getItemsPath
JSONPath expression to select the array to iterate over.Default: $
-
getMaxConcurrency
MaxConcurrency.An upper bound on the number of iterations you want running at once.
Default: - full concurrency
- See Also:
-
getMaxConcurrencyPath
MaxConcurrencyPath.A JsonPath that specifies the maximum concurrency dynamically from the state input.
Default: - full concurrency
- See Also:
-
getOutputPath
JSONPath expression to select part of the state to be the output to this state.May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
Default: $
-
getResultPath
JSONPath expression to indicate where to inject the state's output.May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output.
Default: $
-
getResultSelector
The JSON that will replace the state's raw result and become the effective result before ResultPath is applied.You can use ResultSelector to create a payload with values that are static or selected from the state's raw result.
Default: - None
- See Also:
-
getStateName
Optional name for this state.Default: - The construct ID will be used as state name
-
builder
- Returns:
- a
MapBaseProps.BuilderofMapBaseProps
-