Interface MapBaseJsonPathOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,JsonPathCommonOptions
- All Known Subinterfaces:
DistributedMapJsonPathProps,DistributedMapProps,MapBaseProps,MapJsonPathProps,MapProps
- All Known Implementing Classes:
DistributedMapJsonPathProps.Jsii$Proxy,DistributedMapProps.Jsii$Proxy,MapBaseJsonPathOptions.Jsii$Proxy,MapBaseProps.Jsii$Proxy,MapJsonPathProps.Jsii$Proxy,MapProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:47.847Z")
@Stability(Stable)
public interface MapBaseJsonPathOptions
extends software.amazon.jsii.JsiiSerializable, JsonPathCommonOptions
Base properties for defining a Map state that using JSONPath.
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 resultSelector;
MapBaseJsonPathOptions mapBaseJsonPathOptions = MapBaseJsonPathOptions.builder()
.inputPath("inputPath")
.itemsPath("itemsPath")
.maxConcurrencyPath("maxConcurrencyPath")
.outputPath("outputPath")
.resultPath("resultPath")
.resultSelector(Map.of(
"resultSelectorKey", resultSelector))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMapBaseJsonPathOptionsstatic final classAn implementation forMapBaseJsonPathOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringJSONPath expression to select the array to iterate over.default StringMaxConcurrencyPath.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.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.stepfunctions.JsonPathCommonOptions
getInputPath, getOutputPath
-
Method Details
-
getItemsPath
JSONPath expression to select the array to iterate over.Default: $
-
getMaxConcurrencyPath
MaxConcurrencyPath.A JsonPath that specifies the maximum concurrency dynamically from the state input.
Default: - full concurrency
- See Also:
-
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:
-
builder
- Returns:
- a
MapBaseJsonPathOptions.BuilderofMapBaseJsonPathOptions
-