Interface MapJsonPathProps
- All Superinterfaces:
AssignableStateOptions
,software.amazon.jsii.JsiiSerializable
,JsonPathCommonOptions
,MapBaseJsonPathOptions
,MapBaseOptions
,StateBaseProps
- All Known Implementing Classes:
MapJsonPathProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:25:06.066Z")
@Stability(Stable)
public interface MapJsonPathProps
extends software.amazon.jsii.JsiiSerializable, StateBaseProps, MapBaseOptions, MapBaseJsonPathOptions
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 assign; Object itemSelector; Object parameters; Object resultSelector; MapJsonPathProps mapJsonPathProps = MapJsonPathProps.builder() .assign(Map.of( "assignKey", assign)) .comment("comment") .inputPath("inputPath") .itemSelector(Map.of( "itemSelectorKey", itemSelector)) .itemsPath("itemsPath") .maxConcurrency(123) .maxConcurrencyPath("maxConcurrencyPath") .outputPath("outputPath") .parameters(Map.of( "parametersKey", parameters)) .queryLanguage(QueryLanguage.JSON_PATH) .resultPath("resultPath") .resultSelector(Map.of( "resultSelectorKey", resultSelector)) .stateName("stateName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forMapJsonPathProps
static final class
An implementation forMapJsonPathProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.AssignableStateOptions
getAssign
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.JsonPathCommonOptions
getInputPath, getOutputPath
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.MapBaseJsonPathOptions
getItemsPath, getMaxConcurrencyPath, getResultPath, getResultSelector
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.MapBaseOptions
getItemSelector, getMaxConcurrency
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.StateBaseProps
getComment, getQueryLanguage, getStateName
-
Method Details
-
getParameters
Deprecated.Step Functions has deprecated theparameters
field in favor of the newitemSelector
field(deprecated) The JSON that you want to override your default iteration input (mutually exclusive withitemSelector
).Default: $
- See Also:
-
builder
- Returns:
- a
MapJsonPathProps.Builder
ofMapJsonPathProps
-
parameters
field in favor of the newitemSelector
field