UNPKG

lemon-engine

Version:

Lemon Engine Module to Synchronize Node over DynamoDB + ElastiCache + Elasticsearch by [lemoncloud](https://lemoncloud.io)

22 lines (21 loc) 585 B
/** * SNS Proxy Service Exports * - proxy call to sns service. * * * * @author steve@lemoncloud.io * @date 2019-05-23 * @copyright (C) lemoncloud.io 2019 - All Rights Reserved. */ import { EnginePluggable, EnginePluginBuilder } from '../common/types'; export interface SNSProxy extends EnginePluggable { /** * get the current endpoint address. */ endpoint: () => string; do_publish: (snsId: any, subject: any, payload: any) => string; do_test_self: (options: any) => any; } declare const maker: EnginePluginBuilder<SNSProxy>; export default maker;