Interface MapBaseJsonataOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,JsonataCommonOptions
- All Known Subinterfaces:
DistributedMapJsonataProps,DistributedMapProps,MapBaseProps,MapJsonataProps,MapProps
- All Known Implementing Classes:
DistributedMapJsonataProps.Jsii$Proxy,DistributedMapProps.Jsii$Proxy,MapBaseJsonataOptions.Jsii$Proxy,MapBaseProps.Jsii$Proxy,MapJsonataProps.Jsii$Proxy,MapProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:18.574Z")
@Stability(Stable)
public interface MapBaseJsonataOptions
extends software.amazon.jsii.JsiiSerializable, JsonataCommonOptions
Base 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 outputs;
ProvideItems provideItems;
MapBaseJsonataOptions mapBaseJsonataOptions = MapBaseJsonataOptions.builder()
.items(provideItems)
.outputs(outputs)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMapBaseJsonataOptionsstatic final classAn implementation forMapBaseJsonataOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ProvideItemsgetItems()The array that the Map state will iterate over.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.stepfunctions.JsonataCommonOptions
getOutputs
-
Method Details
-
getItems
The array that the Map state will iterate over.Default: - The state input as is.
-
builder
- Returns:
- a
MapBaseJsonataOptions.BuilderofMapBaseJsonataOptions
-