Class MapProps.Builder
java.lang.Object
software.amazon.awscdk.services.stepfunctions.MapProps.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<MapProps>
- Enclosing interface:
MapProps
@Stability(Stable)
public static final class MapProps.Builder
extends Object
implements software.amazon.jsii.Builder<MapProps>
A builder for
MapProps
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Builds the configured instance.Sets the value ofMapBaseProps.getComment()
Sets the value ofMapBaseProps.getInputPath()
itemSelector
(Map<String, ? extends Object> itemSelector) Sets the value ofMapBaseProps.getItemSelector()
Sets the value ofMapBaseProps.getItemsPath()
maxConcurrency
(Number maxConcurrency) Sets the value ofMapBaseProps.getMaxConcurrency()
maxConcurrencyPath
(String maxConcurrencyPath) Sets the value ofMapBaseProps.getMaxConcurrencyPath()
outputPath
(String outputPath) Sets the value ofMapBaseProps.getOutputPath()
parameters
(Map<String, ? extends Object> parameters) Deprecated.Step Functions has deprecated the `parameters` field in favor of the new `itemSelector` fieldresultPath
(String resultPath) Sets the value ofMapBaseProps.getResultPath()
resultSelector
(Map<String, ? extends Object> resultSelector) Sets the value ofMapBaseProps.getResultSelector()
Sets the value ofMapBaseProps.getStateName()
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
parameters
@Stability(Deprecated) @Deprecated public MapProps.Builder parameters(Map<String, ? extends Object> parameters) Deprecated.Step Functions has deprecated the `parameters` field in favor of the new `itemSelector` fieldSets the value ofMapProps.getParameters()
- Parameters:
parameters
- The JSON that you want to override your default iteration input (mutually exclusive withitemSelector
).- Returns:
this
-
comment
Sets the value ofMapBaseProps.getComment()
- Parameters:
comment
- An optional description for this state.- Returns:
this
-
inputPath
Sets the value ofMapBaseProps.getInputPath()
- Parameters:
inputPath
- 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 {}.- Returns:
this
-
itemSelector
Sets the value ofMapBaseProps.getItemSelector()
- Parameters:
itemSelector
- The JSON that you want to override your default iteration input (mutually exclusive withparameters
).- Returns:
this
-
itemsPath
Sets the value ofMapBaseProps.getItemsPath()
- Parameters:
itemsPath
- JSONPath expression to select the array to iterate over.- Returns:
this
-
maxConcurrency
Sets the value ofMapBaseProps.getMaxConcurrency()
- Parameters:
maxConcurrency
- MaxConcurrency. An upper bound on the number of iterations you want running at once.- Returns:
this
-
maxConcurrencyPath
Sets the value ofMapBaseProps.getMaxConcurrencyPath()
- Parameters:
maxConcurrencyPath
- MaxConcurrencyPath. A JsonPath that specifies the maximum concurrency dynamically from the state input.- Returns:
this
-
outputPath
Sets the value ofMapBaseProps.getOutputPath()
- Parameters:
outputPath
- 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 {}.- Returns:
this
-
resultPath
Sets the value ofMapBaseProps.getResultPath()
- Parameters:
resultPath
- 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.- Returns:
this
-
resultSelector
@Stability(Stable) public MapProps.Builder resultSelector(Map<String, ? extends Object> resultSelector) Sets the value ofMapBaseProps.getResultSelector()
- Parameters:
resultSelector
- 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.- Returns:
this
-
stateName
Sets the value ofMapBaseProps.getStateName()
- Parameters:
stateName
- Optional name for this state.- Returns:
this
-
build
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<MapProps>
- Returns:
- a new instance of
MapProps
- Throws:
NullPointerException
- if any required attribute was not provided
-