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

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-05T03:43:51.942Z") @Stability(Stable) public interface MapBaseProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a Map state.

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