I am trying to create Folder at AMAZON S3 bucket iam using following code. its working fine..
my question is that, can i Give assign Password to my Object?

amazonClient = new AmazonS3Client(credentials);   
key = key+"/";
    InputStream input = new ByteArrayInputStream(new byte[0]);
    ObjectMetadata metadata = new ObjectMetadata();
    metadata.setContentLength(0);
    amazonClient.putObject(new PutObjectRequest(bucket, key , input, metadata));

Thanking You...

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.