Amazon.S3.AmazonS3Client.RestoreObjectAsync C# (CSharp) Method

RestoreObjectAsync() public method

Initiates the asynchronous execution of the RestoreObject operation.
public RestoreObjectAsync ( RestoreObjectRequest request, System cancellationToken = default(CancellationToken) ) : Task
request RestoreObjectRequest Container for the necessary parameters to execute the RestoreObject operation.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
return Task
        public Task<RestoreObjectResponse> RestoreObjectAsync(RestoreObjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new RestoreObjectRequestMarshaller();
            var unmarshaller = RestoreObjectResponseUnmarshaller.Instance;

            return InvokeAsync<RestoreObjectRequest,RestoreObjectResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }

Same methods

AmazonS3Client::RestoreObjectAsync ( string bucketName, string key, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::RestoreObjectAsync ( string bucketName, string key, int days, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::RestoreObjectAsync ( string bucketName, string key, string versionId, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::RestoreObjectAsync ( string bucketName, string key, string versionId, int days, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::RestoreObjectAsync ( RestoreObjectRequest request, RestoreObjectResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::RestoreObjectAsync ( string bucketName, string key, RestoreObjectResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::RestoreObjectAsync ( string bucketName, string key, int days, RestoreObjectResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::RestoreObjectAsync ( string bucketName, string key, string versionId, RestoreObjectResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::RestoreObjectAsync ( string bucketName, string key, string versionId, int days, RestoreObjectResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client