Mothupally
Mothupally

Reputation: 780

Does AWS has anything similar to Azure Service Bus Relay?

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

Answers (1)

BryceH
BryceH

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

Related Questions