(ctx)
| 6 | * @returns the request |
| 7 | */ |
| 8 | export function request(ctx) { |
| 9 | const TOPIC_ARN = '<your:topic:arn>'; |
| 10 | const { input: values } = ctx.args; |
| 11 | return publishToSNSRequest(TOPIC_ARN, values); |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Process the publish response |
nothing calls this directly
no test coverage detected