本文整理匯總了TypeScript中aws-sdk.SNS.createTopic方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript SNS.createTopic方法的具體用法?TypeScript SNS.createTopic怎麽用?TypeScript SNS.createTopic使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類aws-sdk.SNS
的用法示例。
在下文中一共展示了SNS.createTopic方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: require
const path = require('path')
const aws = require('aws-sdk')
const { SNSNotifier } = require('../src')
const snsClient = new aws.SNS({region: 'us-east-1', endpoint: process.env.SNS_ENDPOINT || `http://sns.docker`})
const notifier = new SNSNotifier({snsClient, region: 'us-east-1', awsAccountId: 'fake'}, {domainName: 'ftl-engine-test'})
const topicName = 'ftl-engine-alerts'
const s3Client = new aws.S3({region: 'us-east-1', endpoint: process.env.S3_ENDPOINT || `http://s3.docker`})
// just try to slip this in before anything happens, not awesome, but should work almost always
snsClient.createTopic({Name: 'ftl-engine-alerts'}, (err, resp) => {
if (err) console.log('failed to create sns topic', err)
notifier.getArn = () => resp.TopicArn
})
module.exports = function() {
return {
defaultVersion: '1.0.0',
activities: [
path.join(__dirname, 'activities')
],
notifier: {
instance: notifier
},
logger: {
name: 'ftl-engine',
devMode: true
},
swf: {
domainName: 'ftl-engine-test',
workflowName: 'ftl-engine'
},
示例2:
var createTopicResponse = await this.executeAwsRequestAsync<AWS.SNS.CreateTopicResult>((callback) =>
snsClient.createTopic(
{ Name: topicName },
callback));