class ItemBatcher
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.StepFunctions.ItemBatcher |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions#ItemBatcher |
![]() | software.amazon.awscdk.services.stepfunctions.ItemBatcher |
![]() | aws_cdk.aws_stepfunctions.ItemBatcher |
![]() | aws-cdk-lib » aws_stepfunctions » ItemBatcher |
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 { aws_stepfunctions as stepfunctions } from 'aws-cdk-lib';
declare const batchInput: any;
const itemBatcher = new stepfunctions.ItemBatcher({
batchInput: batchInput,
maxInputBytesPerBatch: 123,
maxInputBytesPerBatchPath: 'maxInputBytesPerBatchPath',
maxItemsPerBatch: 123,
maxItemsPerBatchPath: 'maxItemsPerBatchPath',
});
Initializer
new ItemBatcher(props: ItemBatcherProps)
Parameters
- props
Item
Batcher Props
Methods
Name | Description |
---|---|
render() | Render ItemBatcher in ASL JSON format. |
validate | Validate this ItemBatcher. |
render()
public render(): any
Returns
any
Render ItemBatcher in ASL JSON format.
validateItemBatcher()
public validateItemBatcher(): string[]
Returns
string[]
Validate this ItemBatcher.