Show / Hide Table of Contents

Interface IResultWriterProps

(deprecated) Interface for Result Writer configuration props.

Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
[Obsolete("use {@link ResultWriterV2Props } instead")]
public interface IResultWriterProps
Syntax (vb)
<Obsolete("use {@link ResultWriterV2Props } instead")>
Public Interface 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

Properties

Bucket

(deprecated) S3 Bucket in which to save Map Run results.

Prefix

(deprecated) S3 prefix in which to save Map Run results.

Properties

Bucket

(deprecated) S3 Bucket in which to save Map Run results.

[Obsolete]
IBucket Bucket { get; }
Property Value

IBucket

Remarks

Stability: Deprecated

Prefix

(deprecated) S3 prefix in which to save Map Run results.

[Obsolete]
string? Prefix { get; }
Property Value

string

Remarks

Default: - No prefix

Stability: Deprecated

Back to top Generated by DocFX