Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS ApiGateway VPC Link vs HTTP Proxy integration

Well, I'm creating a AWS ApiGateway and I can't understand when I should use integration type HTTP_PROXY or VPC_LINK, both ask me URL to proxy.

I searched about it but can't found any concrect and simple example, when use one or other ?

like image 505
Ronaldo Lanhellas Avatar asked Apr 15 '26 00:04

Ronaldo Lanhellas


1 Answers

API Gateway REST API allows proxy integrations to other endpoints via two methods.

  • HTTP_PROXY is for Public API endpoints only.

  • VPC_LINK allows us to integrate API Gateway with Private Endpoints exposed via NLB (not ALB)

API Gateway HTTP API also supports both public and private integrations

  • HTTP URI: For public endpoints.
  • Private Resource: For NLB, ALB or CloudMap
like image 72
Balu Vyamajala Avatar answered Apr 16 '26 15:04

Balu Vyamajala