當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript SNS.createTopic方法代碼示例

本文整理匯總了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'
    },
開發者ID:instructure,項目名稱:ftl-engine,代碼行數:31,代碼來源:config.ts

示例2:

 var createTopicResponse = await this.executeAwsRequestAsync<AWS.SNS.CreateTopicResult>((callback) =>
     snsClient.createTopic(
         { Name: topicName },
         callback));
開發者ID:queueit,項目名稱:Queueit.AWSMessageBus,代碼行數:4,代碼來源:subscribe.ts


注:本文中的aws-sdk.SNS.createTopic方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。