moto/tests/test_stepfunctions/parser/templates/map_item_reader.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
813 B
JSON
Raw Normal View History

2024-03-16 14:03:41 +00:00
{
"Comment": "MAP_ITEM_READER_BASE_CSV_HEADERS_DECL",
"StartAt": "MapState",
"States": {
"MapState": {
"Type": "Map",
"MaxConcurrency": 1,
"ItemReader": {
"ReaderConfig": {
"InputType": "CSV",
"CSVHeaderLocation": "GIVEN",
"CSVHeaders": ["H1", "H2", "H3"]
},
"Resource": "arn:aws:states:::s3:getObject",
"Parameters": {
"Bucket.$": "$.Bucket",
"Key.$": "$.Key"
}
},
"ItemProcessor": {
"ProcessorConfig": {
"Mode": "DISTRIBUTED",
"ExecutionType": "STANDARD"
},
"StartAt": "PassItem",
"States": {
"PassItem": {
"Type": "Pass",
"End": true
}
}
},
"End": true
}
}
}