Show / Hide Table of Contents

Enum ProcessorMode

Mode of the Map workflow.

Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum ProcessorMode
Syntax (vb)
Public Enum ProcessorMode
Remarks

ExampleMetadata: infused

Examples
var map = new Map(this, "Map State", new MapProps {
                MaxConcurrency = 1,
                ItemsPath = JsonPath.StringAt("$.inputForMap"),
                ItemSelector = new Dictionary<string, object> {
                    { "item", JsonPath.StringAt("$.Map.Item.Value") }
                },
                ResultPath = "$.mapOutput"
            });

            map.ItemProcessor(new Pass(this, "Pass State"), new ProcessorConfig {
                Mode = ProcessorMode.DISTRIBUTED,
                ExecutionType = ProcessorType.STANDARD
            });

Synopsis

Fields

DISTRIBUTED

Distributed Map mode.

INLINE

Inline Map mode.

Fields

Name Description
DISTRIBUTED

Distributed Map mode.

INLINE

Inline Map mode.

Back to top Generated by DocFX