moto/tests/test_stepfunctions/parser/templates/services/dynamodb_put_item.json

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

16 lines
348 B
JSON
Raw Normal View History

2024-03-16 14:03:41 +00:00
{
"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
}
}
}