Class ResultWriterProps
Interface for Result Writer configuration properties.
Inheritance
System.Object
ResultWriterProps
Implements
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ResultWriterProps : Object, IResultWriterProps
Syntax (vb)
Public Class ResultWriterProps
Inherits Object
Implements 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
Constructors
ResultWriterProps() |
Properties
Bucket | S3 Bucket in which to save Map Run results. |
Prefix | S3 prefix in which to save Map Run results. |
Constructors
ResultWriterProps()
public ResultWriterProps()
Properties
Bucket
S3 Bucket in which to save Map Run results.
public IBucket Bucket { get; set; }
Property Value
Prefix
S3 prefix in which to save Map Run results.
public string Prefix { get; set; }
Property Value
System.String
Remarks
Default: - No prefix