SQS VPC interface endpoint and it's usage via AWS SDK v1

0

I have an AWS SQS VPC Interface endpoint with private DNS enabled. However, while using the SQS via AWS SDK v1 (java), I am providing the SQS url like below e.g https://sqs.us-east-1.amazonaws.com/<account_id>/<my_queue_name>

so, will my AWS SDK v1 will use the VPC endpoint provided I haven't configured the SQS client with any endpoint and my SQS doesn't have any policy other than the default one ?

1 Answer
1

In order to use Interface Endpoints you must specify the endpoint name in your code. If you don't specify it then the connection will be made to the default endpoint (for the region you've configured), not the private endpoint you've created.

profile pictureAWS
EXPERT
answered 2 years ago
  • okay, does the endpoint can be deduced from the SQS URL? If I use for e.g https://sqs.us-east-1.amazonaws.com/<account_id>/<my_queue_name> in SDK v1 and sqs.us-east-1.amazonaws.com is my Private DNS name for the VPC endpoint. Does that mean I don't have to set the endpoint in the SQS client of SDK and it can be deduced from the SQS URL itself? and it will not use the default service endpoint although it's same as the private DNS name

  • I can't say how individual libraries will determine the endpoint even if it can be determined from the service URL (other services don't work that way). In general private endpoints have to be explicitly specified to the library.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions