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

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

15 lines
286 B
JSON
Raw Normal View History

2024-03-16 14:03:41 +00:00
{
"Comment": "SNS_PUBLISH",
"StartAt": "Publish",
"States": {
"Publish": {
"Type": "Task",
"Resource": "arn:aws:states:::sns:publish",
"Parameters": {
"TopicArn.$": "$.TopicArn",
"Message.$": "$.Message"
},
"End": true
}
}
}