Class ProcessorType
Execution type for the Map workflow.
Inheritance
System.Object
ProcessorType
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public sealed class ProcessorType : Enum
Syntax (vb)
Public NotInheritable Class ProcessorType
Inherits
Enum
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
EXPRESS | Express execution type. |
STANDARD | Standard execution type. |
value__ |
Fields
EXPRESS
Express execution type.
public const ProcessorType EXPRESS
Field Value
Type | Description |
---|---|
ProcessorType |
STANDARD
Standard execution type.
public const ProcessorType STANDARD
Field Value
Type | Description |
---|---|
ProcessorType |
value__
public int value__
Field Value
Type | Description |
---|---|
System.Int32 |