我正在尝试通过俄亥俄州(us-east-2)上的lambda函数(Node.js 8.10)使用位于圣保罗(sa-east-1)的SNS。这是我第一次尝试使用另一个地区的AWS服务。到目前为止,这是我正在做的:

//init aws resources
const AWS = require('aws-sdk');
const sns = new AWS.SNS({apiVersion: '2010-03-31', region: 'sa-east-1'});

//promisefy AWS.SNS.createPlatformEndpoint method
snsCreatePlatformEndpoint = params => new Promise(
  (resolve, reject)=>{
    sns.createPlatformEndpoint(params, function(error, data){
      if (error) { reject(error); }
      else { resolve(data); }
    });
  }
);

exports.handler = (awsEvent, context, callback) => {
  //parse stuff in here
  ...

  HandleToken(token, callback);
};

async function HandleToken(token, callback){
  try{
    let params = {
      PlatformApplicationArn: process.env.PlatAppArn,
      Token: token,
    };
    console.log('params:', params); // this prints as expected
    let {EndpointArn} = await snsCreatePlatformEndpoint(params);
    console.log('It should pass through here'); // it is not printed
    //returns a success response
    ...
  } catch (error) {
    //returns an error response
    ...
  }
}


我为lambda函数设置了一个非常高的超时时间:5分钟。

我还在位于圣保罗(sa-east-1)的lambda函数上测试了相同的代码,并且可以正常工作。

我的客户端收到以下错误:
“请求失败,状态码为504”
“端点请求超时”

问:如何在另一个AWS区域中正确使用SNS?

最佳答案

除了设置区域之外,您不需要进行任何特殊的设置。

例如,我使用以下模式将通知从us-east-1发送到东京(ap-northeast-1):

// this lambda runs in us-east-1

let AWS = require("aws-sdk");
AWS.config.update({ region: "ap-northeast-1" }); // asia-pacific region

exports.handler = async (event, context) => {
    var params = {
      Message: 'my payload',
      TopicArn: 'arn:aws:sns:ap-northeast-1:xxxxxx:tokyoSNS'
    };

    let SNS = new AWS.SNS({apiVersion: '2010-03-31'});
    var data = await SNS.publish(params).promise();

    // check if successful then return
}


没有设置端点等。您是否需要在VPC中运行Lambda?这是我目前能想到的唯一并发症。

10-04 22:20