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-11-06T23:25:17.568Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forResultWriterPropsstatic final classAn 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.BuilderofResultWriterProps
-