Show / Hide Table of Contents

Class ResultWriterProps

(deprecated) Interface for Result Writer configuration props.

Inheritance
object
ResultWriterProps
Implements
IResultWriterProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

IBucket

Remarks

Stability: Deprecated

Prefix

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

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

string

Remarks

Default: - No prefix

Stability: Deprecated

Implements

IResultWriterProps
Back to top Generated by DocFX