Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

We have taken a general strategy at using S3 Bucket as a file storage in our solutions. The reasons are:

  • Reliability
  • Security
  • Accessibility
  • Speed
  • Easy of use
  • Meta-data (tags)

In order to use S3 for your solution you'd need these:

This document contains examples in JavaScript and C# as the most commonly used languages here at Chemwatch.

To ffectively use S3 in MS Dev Studio, you'd need to install AWS-SDK from Nuget library.

Creating an object in Bucket


const AWS = require('aws-sdk');

AWS.config.update({region: 'us-east-1'});
var s3 = new AWS.S3({httpOptions: { timeout: 2000 }});

/* The following example retrieves an object for an S3 bucket. */

var params = {
	Bucket: "mybucket", 
	Key: "myfile.jpg"
};

s3.getObject(params, function(err, data) {
	if (err) console.log(err, err.stack); // an error occurred
	else     console.log(data);           // successful response
	/*
	data = {
		AcceptRanges: "bytes", 
		ContentLength: 3191, 
		ContentType: "image/jpeg", 
		ETag: "\"6805f2cfc46c0f04559748bb039d69ae\"", 
		LastModified: <Date Representation>, 
		Metadata: {
		}, 
		TagCount: 2, 
		VersionId: "null"
	}
	*/
});

Retrieving an object from Bucket


const AWS = require('aws-sdk');

AWS.config.update({region: 'us-east-1'});
var s3 = new AWS.S3({httpOptions: { timeout: 2000 }});

/* The following example retrieves an object for an S3 bucket. */

var params = {
	Bucket: "mybucket", 
	Key: "myfile.jpg"
};

s3.getObject(params, function(err, data) {
	if (err) console.log(err, err.stack); // an error occurred
	else     console.log(data);           // successful response
	/*
	data = {
		AcceptRanges: "bytes", 
		ContentLength: 3191, 
		ContentType: "image/jpeg", 
		ETag: "\"6805f2cfc46c0f04559748bb039d69ae\"", 
		LastModified: <Date Representation>, 
		Metadata: {
		}, 
		TagCount: 2, 
		VersionId: "null"
	}
	*/
});

Deleting an object from Bucket


Edit object Tags


List all objects in Bucket


const AWS = require('aws-sdk');
const listAllObjects = require('s3-list-all-objects');

AWS.config.update({region: 'us-east-1'});
var s3 = new AWS.S3({httpOptions: { timeout: 2000 }});

var files = [];

listAllObjects({ bucket: 'molecules2d', progress: function(err, data) {
	
	data.data.forEach((item) => {
		console.log(item.Key);
		files.push(item.Key);
	});
	
	if(data.isFinalBatch == true) {
		console.log(JSON.stringify(files));
	}
}});


CLI (Command Line)

Command line allows you to quiuckly upload and download big amounts of files to/from S3. Below are requirements and annotated examples.

Requirements: AWS CLI tools (https://aws.amazon.com/cli/).



Filter by label

There are no items with the selected labels at this time.



  • No labels