ProcessorMode
- class aws_cdk.aws_stepfunctions.ProcessorMode(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
Bases:
Enum
Mode of 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
- DISTRIBUTED
Distributed Map mode.
- INLINE
Inline Map mode.