aws-sdk-js: NotImplemented - A header you provided implies functionality that is not implemented
I am consistently receiving a NotImplemented
error when trying to write a simple text file to S3 using the sdk.
var AWS = require( 'aws-sdk' );
AWS.config.update( {
accessKeyId : 'ACCESS_KEY_ID',
secretAccessKey : 'SECRET_ACCESS_KEY'
});
var s3 = new AWS.S3({ endpoint : 'https://s3.amazonaws.com' });
s3.client.putObject({
ACL : 'private',
Body : 'some string',
Bucket : 'my-bucket',
Key : 'some/path/here/stuff.txt',
ServerSideEncryption : 'AES256'
}, function ( error, response ) {
// error listed below
});
results in the following error:
{
"code":"NotImplemented",
"message":"A header you provided implies functionality that is not implemented",
"statusCode":501,
"retryable":true
}
which, in itself seems weird considering it is NotImplemented
but is retryable
.
About this issue
- Original URL
- State: closed
- Created 12 years ago
- Comments: 17 (16 by maintainers)
Commits related to this issue
- RestXMLClient should extract a valid body in resp References #15 — committed to aws/aws-sdk-js by lsegal 12 years ago
Confirmed,
Body = '' // empty string
will result in the errors I’ve reported.Some files were being uploaded empty.
Allowing uploading empty files is useful from the perspective of having a “log heartbeat” if you will. Say, I want to dump activity/log data into s3 at a set time interval. If I have no data, the presence of an empty file still lets me know that the reporting agent is still alive (i.e. heartbeat).