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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forMapBaseProps
static final class
An implementation forMapBaseProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic MapBaseProps.Builder
builder()
default String
An optional description for this state.default String
JSONPath 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 String
JSONPath expression to select the array to iterate over.default Number
MaxConcurrency.default String
MaxConcurrencyPath.default String
JSONPath expression to select part of the state to be the output to this state.default String
JSONPath 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 String
Optional 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.Builder
ofMapBaseProps
-