Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

205
Visualizações
How to getObject from S3 protocol url using AWS SDK JS v3?

I have a URL that looks like: s3://mybucket/data.txt. I'm trying to retrieve that item using the AWS SDK JS v3 library (@aws-sdk/client-s3).

When using the getObject command, it requires a Bucket and Key.

How can I pass in the S3 protocol URL into the S3 client to get the object based on that URL?

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You can parse the URI to get the bucket name and key name out of it:

import url from 'url';
var s3uri = new URL('s3://some-bucket-name/path/to/object.dat');
var bucket = s3uri.hostname;
// Ignore the first slash, it's not part of the key name
var key = s3uri.pathname.substr(1);

console.log("Bucket: " + bucket + " / Key: " + key);
// Bucket: some-bucket-name / Key: path/to/object.dat
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda