Example usage for com.amazonaws.services.s3 AmazonS3 restoreObject

List of usage examples for com.amazonaws.services.s3 AmazonS3 restoreObject

Introduction

In this page you can find the example usage for com.amazonaws.services.s3 AmazonS3 restoreObject.

Prototype

@Deprecated
public void restoreObject(RestoreObjectRequest request) throws AmazonServiceException;

Source Link

Document

Restore an object, which was transitioned to Amazon Glacier from Amazon S3 when it was expired, into Amazon S3 again.

Usage

From source file:org.finra.herd.dao.impl.S3OperationsImpl.java

License:Apache License

@Override
public void restoreObject(RestoreObjectRequest requestRestore, AmazonS3 s3Client) {
    s3Client.restoreObject(requestRestore);
}