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.104.0 (build e79254c)",
date="2024-11-21T06:34:16.711Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forItemReaderProps
static final class
An implementation forItemReaderProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic ItemReaderProps.Builder
builder()
default IBucket
S3 Bucket containing objects to iterate over or a file with a list to iterate over.default String
S3 bucket name containing objects to iterate over or a file with a list to iterate over, as JsonPath.default Number
Limits 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.Builder
ofItemReaderProps
-