Class ItemBatcher
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.stepfunctions.ItemBatcher
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:17.556Z")
@Stability(Stable)
public class ItemBatcher
extends software.amazon.jsii.JsiiObject
Configuration for processing a group of items in a single child workflow execution.
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 batchInput; ItemBatcher itemBatcher = ItemBatcher.Builder.create() .batchInput(batchInput) .maxInputBytesPerBatch(123) .maxInputBytesPerBatchPath("maxInputBytesPerBatchPath") .maxItemsPerBatch(123) .maxItemsPerBatchPath("maxItemsPerBatchPath") .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Constructor Summary
ModifierConstructorDescriptionItemBatcher
(ItemBatcherProps props) protected
ItemBatcher
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
ItemBatcher
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionrender()
Render ItemBatcher in ASL JSON format.Validate this ItemBatcher.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
ItemBatcher
protected ItemBatcher(software.amazon.jsii.JsiiObjectRef objRef) -
ItemBatcher
protected ItemBatcher(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ItemBatcher
- Parameters:
props
- This parameter is required.
-
-
Method Details
-
render
Render ItemBatcher in ASL JSON format. -
validateItemBatcher
Validate this ItemBatcher.
-