Interface ResultWriterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ResultWriterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-11T23:26:41.919Z")
@Stability(Stable)
public interface ResultWriterProps
extends software.amazon.jsii.JsiiSerializable
Interface for Result Writer configuration properties.
Example:
import software.amazon.awscdk.services.s3.*; // create a bucket Bucket bucket = new Bucket(this, "Bucket"); DistributedMap distributedMap = DistributedMap.Builder.create(this, "Distributed Map State") .resultWriter(ResultWriter.Builder.create() .bucket(bucket) .prefix("my-prefix") .build()) .build(); distributedMap.itemProcessor(new Pass(this, "Pass State"));
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forResultWriterProps
static final class
An implementation forResultWriterProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
S3 Bucket in which to save Map Run results. -
getPrefix
S3 prefix in which to save Map Run results.Default: - No prefix
-
builder
- Returns:
- a
ResultWriterProps.Builder
ofResultWriterProps
-