moto/tests/test_stepfunctions/parser/templates/services/dynamodb_put_item.json
2024-03-16 13:03:41 -01:00

16 lines
348 B
JSON

{
"Comment": "AWS_SDK_DYNAMODB_PUT_ITEM",
"StartAt": "PutItem",
"States": {
"PutItem": {
"Type": "Task",
"Resource": "arn:aws:states:::aws-sdk:dynamodb:putItem",
"Parameters": {
"TableName.$": "$.TableName",
"Item.$": "$.Item"
},
"ResultPath": "$.putItemOutput",
"End": true
}
}
}