What is the protocol for closing an aws s3 client connection?
@Override
public boolean connect() {
if (connected)
return false;
else
s3Client = new AmazonS3Client(credentials);
return true;
}
@Override
public boolean diconnect() {
// what should take place here?
return false;
}