amazonka-s3-0.0.5: Amazon Simple Storage Service SDK.

Safe HaskellNone
LanguageHaskell2010

Network.AWS.S3.UploadPart

Contents

Description

Uploads a part in a multipart upload.

Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.

http://docs.aws.amazon.com/AmazonS3/latest/API/UploadPart.html

Synopsis

Request

Request constructor

Request lenses

upContentLength :: Lens' UploadPart (Maybe Int) Source

Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.

upPartNumber :: Lens' UploadPart Int Source

Part number of part being uploaded.

upSSECustomerAlgorithm :: Lens' UploadPart (Maybe Text) Source

Specifies the algorithm to use to when encrypting the object (e.g., AES256, aws:kms).

upSSECustomerKey :: Lens' UploadPart (Maybe Text) Source

Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request.

upSSECustomerKeyMD5 :: Lens' UploadPart (Maybe Text) Source

Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

upSSEKMSKeyId :: Lens' UploadPart (Maybe Text) Source

Specifies the AWS KMS key ID to use for object encryption.

upUploadId :: Lens' UploadPart Text Source

Upload ID identifying the multipart upload whose part is being uploaded.

Response

Response constructor

Response lenses

uprETag :: Lens' UploadPartResponse (Maybe Text) Source

Entity tag for the uploaded object.

uprSSECustomerAlgorithm :: Lens' UploadPartResponse (Maybe Text) Source

If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

uprSSECustomerKeyMD5 :: Lens' UploadPartResponse (Maybe Text) Source

If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

uprSSEKMSKeyId :: Lens' UploadPartResponse (Maybe Text) Source

If present, specifies the AWS KMS key used to encrypt the object.

uprServerSideEncryption :: Lens' UploadPartResponse (Maybe ServerSideEncryption) Source

The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).