I'm using AmazonS3Client in c# and I can't see any method to rename an object any idea how to do that?
private AmazonS3Client _client;
public AWSBucketRepository(AmazonS3Client client)
{
_client = client;
}
public string RenameObject(string objectPath , string newObjectName)
{
}