Reputation: 780
I have a service running on my on-premises (data center) and would like to expose it through an endpoint on AWS. Azure Provides Service Bus relay service to achieve this(https://learn.microsoft.com/en-us/azure/service-bus-relay/relay-what-is-it). Does AWS support anything like it?
Upvotes: 2
Views: 2807
Reputation: 2798
There is not a direct equivalent service from AWS. Some of the messaging solutions such as SNS and SQS can help enable a solution that is similar but would require code be written utilizing one of the SDKs or API. For the network and connectivity piece, a fairly common practice is to use SSH forwarding for this purpose.
Upvotes: 1