Class ResultWriterProps
(deprecated) Interface for Result Writer configuration props.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ResultWriterProps : IResultWriterProps
Syntax (vb)
Public Class ResultWriterProps Implements IResultWriterProps
Remarks
Stability: Deprecated
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3;
using Amazon.CDK.AWS.StepFunctions;
Bucket bucket;
var resultWriterProps = new ResultWriterProps {
Bucket = bucket,
// the properties below are optional
Prefix = "prefix"
};
Synopsis
Constructors
| ResultWriterProps() | (deprecated) Interface for Result Writer configuration props. |
Properties
| Bucket | (deprecated) S3 Bucket in which to save Map Run results. |
| Prefix | (deprecated) S3 prefix in which to save Map Run results. |
Constructors
ResultWriterProps()
(deprecated) Interface for Result Writer configuration props.
public ResultWriterProps()
Remarks
Stability: Deprecated
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3;
using Amazon.CDK.AWS.StepFunctions;
Bucket bucket;
var resultWriterProps = new ResultWriterProps {
Bucket = bucket,
// the properties below are optional
Prefix = "prefix"
};
Properties
Bucket
(deprecated) S3 Bucket in which to save Map Run results.
[Obsolete]
public IBucket Bucket { get; set; }
Property Value
Remarks
Stability: Deprecated
Prefix
(deprecated) S3 prefix in which to save Map Run results.
[Obsolete]
public string? Prefix { get; set; }
Property Value
Remarks
Default: - No prefix
Stability: Deprecated