Skip to content

Commit 6aa55b3

Browse files
actions-userwangyb-A
authored andcommitted
chore: update SAM template
1 parent 666102b commit 6aa55b3

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

examples/template.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -941,6 +941,42 @@
941941
"ExecutionTimeout": 300
942942
}
943943
}
944+
},
945+
"MapWithItemNamer": {
946+
"Type": "AWS::Serverless::Function",
947+
"Properties": {
948+
"CodeUri": "build/",
949+
"Handler": "map_with_item_namer.handler",
950+
"Description": "Map operation with custom item_namer for iteration naming",
951+
"Role": {
952+
"Fn::GetAtt": [
953+
"DurableFunctionRole",
954+
"Arn"
955+
]
956+
},
957+
"DurableConfig": {
958+
"RetentionPeriodInDays": 7,
959+
"ExecutionTimeout": 300
960+
}
961+
}
962+
},
963+
"ParallelWithNamedBranches": {
964+
"Type": "AWS::Serverless::Function",
965+
"Properties": {
966+
"CodeUri": "build/",
967+
"Handler": "parallel_with_named_branches.handler",
968+
"Description": "Parallel operation with named branches using ParallelBranch",
969+
"Role": {
970+
"Fn::GetAtt": [
971+
"DurableFunctionRole",
972+
"Arn"
973+
]
974+
},
975+
"DurableConfig": {
976+
"RetentionPeriodInDays": 7,
977+
"ExecutionTimeout": 300
978+
}
979+
}
944980
}
945981
}
946982
}

0 commit comments

Comments
 (0)