Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

246
Views
¿Dónde puedo ver el código de la función SDK de AWS?

Por ejemplo, cuando uso esta función así

 // snippet-start:[s3.JavaScript.buckets.createBucket] // Load the AWS SDK for Node.js var AWS = require('aws-sdk'); // Set the region AWS.config.update({region: 'REGION'}); // Create S3 service object s3 = new AWS.S3({apiVersion: '2006-03-01'}); // Create the parameters for calling createBucket var bucketParams = { Bucket : process.argv[2] }; // call S3 to create the bucket s3.createBucket(bucketParams, function(err, data) { if (err) { console.log("Error", err); } else { console.log("Success", data.Location); } });

Quiero ver el código que implementa la función. Cuando miré el código SDK de AWS, no pude profundizar más que esto .

¿Dónde puedo ver el código de la función SDK de AWS?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Los archivos .d.ts no son código, son solo definiciones de tipos .

Si observa el archivo s3.js que está junto al archivo s3.d.ts que ya encontró, verá que llama a require('../lib/services/s3') .

Busque en ese archivo para encontrar el código.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!