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 Risposta
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
ESPERTO
con risposta 2 anni fa
  • 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.

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande