Class ProvideItems
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.stepfunctions.ProvideItems
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:49.449Z")
@Stability(Stable)
public abstract class ProvideItems
extends software.amazon.jsii.JsiiObject
The array that the Map state will iterate over.
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 array; ProvideItems provideItems = ProvideItems.jsonArray(List.of(array));
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotectedProvideItems(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedProvideItems(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionabstract ObjectgetItems()The array that the Map state will iterate over.static ProvideItemsUse a JSON array as Map state items.static ProvideItemsUse a JSONata expression as Map state items.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
ProvideItems
protected ProvideItems(software.amazon.jsii.JsiiObjectRef objRef) -
ProvideItems
protected ProvideItems(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ProvideItems
@Stability(Stable) protected ProvideItems()
-
-
Method Details
-
jsonArray
@Stability(Stable) @NotNull public static ProvideItems jsonArray(@NotNull List<? extends Object> array) Use a JSON array as Map state items.Example value:
[1, "{% $two %}", 3]- Parameters:
array- This parameter is required.
-
jsonata
Use a JSONata expression as Map state items.Example value:
{% $states.input.items %}- Parameters:
jsonataExpression- This parameter is required.
-
getItems
The array that the Map state will iterate over.
-