Interface ItemReaderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
S3CsvItemReaderProps,S3FileItemReaderProps,S3ObjectsItemReaderProps
- All Known Implementing Classes:
ItemReaderProps.Jsii$Proxy,S3CsvItemReaderProps.Jsii$Proxy,S3FileItemReaderProps.Jsii$Proxy,S3ObjectsItemReaderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:49.415Z")
@Stability(Stable)
public interface ItemReaderProps
extends software.amazon.jsii.JsiiSerializable
Base interface for Item Reader configuration properties.
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.s3.*;
import software.amazon.awscdk.services.stepfunctions.*;
Bucket bucket;
ItemReaderProps itemReaderProps = ItemReaderProps.builder()
.bucket(bucket)
.bucketNamePath("bucketNamePath")
.maxItems(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forItemReaderPropsstatic final classAn implementation forItemReaderProps -
Method Summary
Modifier and TypeMethodDescriptionstatic ItemReaderProps.Builderbuilder()default IBucketS3 Bucket containing objects to iterate over or a file with a list to iterate over.default StringS3 bucket name containing objects to iterate over or a file with a list to iterate over, as JsonPath.default NumberLimits the number of items passed to the Distributed Map state.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
S3 Bucket containing objects to iterate over or a file with a list to iterate over.Default: - S3 bucket will be determined from
- See Also:
-
getBucketNamePath
S3 bucket name containing objects to iterate over or a file with a list to iterate over, as JsonPath.Default: - S3 bucket will be determined from
- See Also:
-
getMaxItems
Limits the number of items passed to the Distributed Map state.Default: - Distributed Map state will iterate over all items provided by the ItemReader
-
builder
- Returns:
- a
ItemReaderProps.BuilderofItemReaderProps
-