Interface MapJsonataProps
- All Superinterfaces:
AssignableStateOptions
,software.amazon.jsii.JsiiSerializable
,JsonataCommonOptions
,MapBaseJsonataOptions
,MapBaseOptions
,StateBaseProps
- All Known Implementing Classes:
MapJsonataProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-19T18:01:43.156Z")
@Stability(Stable)
public interface MapJsonataProps
extends software.amazon.jsii.JsiiSerializable, StateBaseProps, MapBaseOptions, MapBaseJsonataOptions
Properties for defining a Map state that using JSONata.
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 outputs; Object parameters; ProvideItems provideItems; MapJsonataProps mapJsonataProps = MapJsonataProps.builder() .assign(Map.of( "assignKey", assign)) .comment("comment") .items(provideItems) .itemSelector(Map.of( "itemSelectorKey", itemSelector)) .maxConcurrency(123) .outputs(outputs) .parameters(Map.of( "parametersKey", parameters)) .queryLanguage(QueryLanguage.JSON_PATH) .stateName("stateName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forMapJsonataProps
static final class
An implementation forMapJsonataProps
-
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.JsonataCommonOptions
getOutputs
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.MapBaseJsonataOptions
getItems
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
MapJsonataProps.Builder
ofMapJsonataProps
-
parameters
field in favor of the newitemSelector
field