Home > Net >  Does AWS VPC endpoint has limit of connections to the target AWS resource?
Does AWS VPC endpoint has limit of connections to the target AWS resource?

Time:09-27

Does AWS VPC interface endpoint (PrivateLink) has a limit of ongoing or new connections to the target AWS resource?

For example if I have a AWS service (Lambda) connecting to SQS through VPC interface endpoint.

No information about limits on the following docs:

CodePudding user response:

A VPC Endpoint is a logical construct for defining networking connections. It is not a physical device.

A VPC Endpoint does not limit the number of connections, but the destination resource might limit the number of incoming connections, or might have a limit on the available incoming bandwidth.

  • Related