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();