ProcessorType

class aws_cdk.aws_stepfunctions.ProcessorType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)

Bases: Enum

Execution type for the Map workflow.

ExampleMetadata:

infused

Example:

map = sfn.Map(self, "Map State",
    max_concurrency=1,
    items_path=sfn.JsonPath.string_at("$.inputForMap"),
    item_selector={
        "item": sfn.JsonPath.string_at("$.Map.Item.Value")
    },
    result_path="$.mapOutput"
)

map.item_processor(sfn.Pass(self, "Pass State"),
    mode=sfn.ProcessorMode.DISTRIBUTED,
    execution_type=sfn.ProcessorType.STANDARD
)

Attributes

EXPRESS

Express execution type.

STANDARD

Standard execution type.