Class WriterConfig
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.stepfunctions.WriterConfig
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:15.029Z")
@Stability(Stable)
public class WriterConfig
extends software.amazon.jsii.JsiiObject
Configuration to format the output.
Example:
import software.amazon.awscdk.services.s3.*;
// create a bucket
Bucket bucket = new Bucket(this, "Bucket");
// create a WriterConfig
DistributedMap distributedMap = DistributedMap.Builder.create(this, "Distributed Map State")
.resultWriterV2(ResultWriterV2.Builder.create()
.bucket(bucket)
.prefix("my-prefix")
.writerConfig(Map.of(
"outputType", OutputType.JSONL,
"transformation", Transformation.NONE))
.build())
.build();
distributedMap.itemProcessor(new Pass(this, "Pass State"));
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode -
Constructor Summary
ConstructorsModifierConstructorDescriptionWriterConfig(WriterConfigProps props) protectedWriterConfig(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedWriterConfig(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe format of the Output of the child workflow executions.The transformation to be applied to the Output of the Child Workflow executions.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
WriterConfig
protected WriterConfig(software.amazon.jsii.JsiiObjectRef objRef) -
WriterConfig
protected WriterConfig(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
WriterConfig
- Parameters:
props- This parameter is required.
-
-
Method Details
-
getOutputType
The format of the Output of the child workflow executions. -
getTransformation
The transformation to be applied to the Output of the Child Workflow executions.
-