-1

Can I trigger on premises batch from AWS without migrating batch code. is it possible through rest call or queue?

I don't want to move batch code to AWS instead just call batch code from AWS

James Z
  • 12,209
  • 10
  • 24
  • 44
Hari
  • 1

1 Answers1

0

There is no reason why a service running in AWS would not be able to call your on-premise service provided one of these things are true:

  1. Your service is accessible the entire internet
  2. Your on-premises firewalls allow inbound connections from the the AWS IP address ranges of interest
  3. You have set up VPN routing between your on-premise network and your AWS resources

For all of these your service should use authentication for the requests.

Angel Pizarro
  • 258
  • 3
  • 9