async notify()

in anghammarad-client-node/src/main.ts [32:43]


  async notify(params: NotifyParams) {
    const sns = this.client;
    const request = await sns
      .publish({
        TopicArn: params.topicArn,
        Subject: params.subject,
        Message: this.messageJson(params),
      })
      .promise();

    return request.MessageId;
  }