Interface IResultWriterProps
Interface for Result Writer configuration properties.
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IResultWriterProps
Syntax (vb)
Public Interface IResultWriterProps
Remarks
ExampleMetadata: infused
Examples
using Amazon.CDK.AWS.S3;
// create a bucket
var bucket = new Bucket(this, "Bucket");
var distributedMap = new DistributedMap(this, "Distributed Map State", new DistributedMapProps {
ResultWriter = new ResultWriter(new ResultWriterProps {
Bucket = bucket,
Prefix = "my-prefix"
})
});
distributedMap.ItemProcessor(new Pass(this, "Pass State"));
Synopsis
Properties
Bucket | S3 Bucket in which to save Map Run results. |
Prefix | S3 prefix in which to save Map Run results. |
Properties
Bucket
Prefix
S3 prefix in which to save Map Run results.
virtual string Prefix { get; }
Property Value
System.String
Remarks
Default: - No prefix