API Gateway to ALB

graph TB client[Client] --> apigw[API Gateway] subgraph "VPC" subgraph "Private Subnet" alb[Application Load Balancer] vpce[VPC Endpoint] subgraph "ECS Cluster" service1[ECS Service 1] service2[ECS Service 2] end end apigw --> |PrivateLink| vpce vpce --> alb alb --> service1 alb --> service2 end classDef aws fill:#2496ED,stroke:#232F3E,stroke-width:2px,color:white; class apigw,alb,vpce,service1,service2 aws; classDef subnet fill:#f9f9f9,stroke:#666,stroke-width:1px; class subnet subnet;