UNPKG

396 BJavaScriptView Raw
1'use strict';
2
3module.exports = (callback) => {
4 setImmediate(callback, null, {
5 AWSTemplateFormatVersion: '2010-09-09',
6 Parameters: {
7 OutputThis: {
8 Type: 'String'
9 }
10 },
11 Resources: {
12 Topic: {
13 Type: 'AWS::SNS::Topic'
14 }
15 },
16 Outputs: {
17 ProvidedValue: {
18 Value: {
19 Ref: 'OutputThis'
20 }
21 }
22 }
23 });
24};