using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace InventoryService.Interface { public interface ISNSService { /// /// Utilizes AWS SNS API to send publish messages. /// /// message in Json format. Task PublishMessageToSNSAsync(string message); } }