I am able to upload an object to bucket successfully but when I add custom metadata along with object I don't find metadata in minio browser.
S3Client = new aws.S3 //config
var metaData = {
'X-Amz-Meta-Test': "some-value"
};
S3Client.upload({
Bucket: bucket,
Key: key,
Body: object
Metadata: metaData
}