AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

This operation uploads a part of an archive. You can upload archive parts in any order. You can also upload them in parallel. You can upload up to 10,000 parts for a multipart upload.

Amazon Glacier rejects your upload part request if any of the following conditions is true:

This operation is idempotent. If you upload the same part multiple times, the data included in the most recent request overwrites the previously uploaded data.

An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see Access Control Using AWS Identity and Access Management (IAM).

For conceptual information and underlying REST API, see Uploading Large Archives in Parts (Multipart Upload) and Upload Part in the Amazon Glacier Developer Guide.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to UploadMultipartPartAsync.

Namespace: Amazon.Glacier
Assembly: AWSSDK.Glacier.dll
Version: 3.x.y.z

Syntax

C#
public virtual UploadMultipartPartResponse UploadMultipartPart(
         UploadMultipartPartRequest request
)

Parameters

request
Type: Amazon.Glacier.Model.UploadMultipartPartRequest

Container for the necessary parameters to execute the UploadMultipartPart service method.

Return Value


The response from the UploadMultipartPart service method, as returned by Glacier.

Exceptions

ExceptionCondition
InvalidParameterValueException Returned if a parameter of the request is incorrectly specified.
MissingParameterValueException Returned if a required header or parameter is missing from the request.
RequestTimeoutException Returned if, when uploading an archive, Amazon S3 Glacier times out while receiving the upload.
ResourceNotFoundException Returned if the specified resource (such as a vault, upload ID, or job ID) doesn't exist.
ServiceUnavailableException Returned if the service cannot complete the request.

Examples

The example uploads the first 1 MiB (1024 x 1024 bytes) part of an archive.

To upload the first part of an archive


var client = new AmazonGlacierClient();
var response = client.UploadMultipartPart(new UploadMultipartPartRequest 
{
    AccountId = "-",
    Body = new MemoryStream(part1),
    Checksum = "c06f7cd4baacb087002a99a5f48bf953",
    Range = "bytes 0-1048575/*",
    UploadId = "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ",
    VaultName = "examplevault"
});

string checksum = response.Checksum;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also