Copyright | (c) 2013-2016 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Uploads a part by copying data from an existing object as data source.
- uploadPartCopy :: BucketName -> Text -> ObjectKey -> Int -> Text -> UploadPartCopy
- data UploadPartCopy
- upcCopySourceIfModifiedSince :: Lens' UploadPartCopy (Maybe UTCTime)
- upcCopySourceIfUnmodifiedSince :: Lens' UploadPartCopy (Maybe UTCTime)
- upcCopySourceRange :: Lens' UploadPartCopy (Maybe Text)
- upcCopySourceSSECustomerKeyMD5 :: Lens' UploadPartCopy (Maybe Text)
- upcCopySourceIfNoneMatch :: Lens' UploadPartCopy (Maybe Text)
- upcSSECustomerAlgorithm :: Lens' UploadPartCopy (Maybe Text)
- upcSSECustomerKey :: Lens' UploadPartCopy (Maybe Text)
- upcRequestPayer :: Lens' UploadPartCopy (Maybe RequestPayer)
- upcCopySourceIfMatch :: Lens' UploadPartCopy (Maybe Text)
- upcSSECustomerKeyMD5 :: Lens' UploadPartCopy (Maybe Text)
- upcCopySourceSSECustomerKey :: Lens' UploadPartCopy (Maybe Text)
- upcCopySourceSSECustomerAlgorithm :: Lens' UploadPartCopy (Maybe Text)
- upcBucket :: Lens' UploadPartCopy BucketName
- upcCopySource :: Lens' UploadPartCopy Text
- upcKey :: Lens' UploadPartCopy ObjectKey
- upcPartNumber :: Lens' UploadPartCopy Int
- upcUploadId :: Lens' UploadPartCopy Text
- uploadPartCopyResponse :: Int -> UploadPartCopyResponse
- data UploadPartCopyResponse
- upcrsRequestCharged :: Lens' UploadPartCopyResponse (Maybe RequestCharged)
- upcrsCopyPartResult :: Lens' UploadPartCopyResponse (Maybe CopyPartResult)
- upcrsSSECustomerAlgorithm :: Lens' UploadPartCopyResponse (Maybe Text)
- upcrsCopySourceVersionId :: Lens' UploadPartCopyResponse (Maybe Text)
- upcrsSSECustomerKeyMD5 :: Lens' UploadPartCopyResponse (Maybe Text)
- upcrsSSEKMSKeyId :: Lens' UploadPartCopyResponse (Maybe Text)
- upcrsServerSideEncryption :: Lens' UploadPartCopyResponse (Maybe ServerSideEncryption)
- upcrsResponseStatus :: Lens' UploadPartCopyResponse Int
Creating a Request
:: BucketName | |
-> Text | |
-> ObjectKey | |
-> Int | |
-> Text | |
-> UploadPartCopy |
Creates a value of UploadPartCopy
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
upcCopySourceIfModifiedSince
upcCopySourceIfUnmodifiedSince
upcCopySourceRange
upcCopySourceSSECustomerKeyMD5
upcCopySourceIfNoneMatch
upcSSECustomerAlgorithm
upcSSECustomerKey
upcRequestPayer
upcCopySourceIfMatch
upcSSECustomerKeyMD5
upcCopySourceSSECustomerKey
upcCopySourceSSECustomerAlgorithm
upcBucket
upcCopySource
upcKey
upcPartNumber
upcUploadId
data UploadPartCopy Source #
See: uploadPartCopy
smart constructor.
Request Lenses
upcCopySourceIfModifiedSince :: Lens' UploadPartCopy (Maybe UTCTime) Source #
Copies the object if it has been modified since the specified time.
upcCopySourceIfUnmodifiedSince :: Lens' UploadPartCopy (Maybe UTCTime) Source #
Copies the object if it hasn't been modified since the specified time.
upcCopySourceRange :: Lens' UploadPartCopy (Maybe Text) Source #
The range of bytes to copy from the source object. The range value must use the form bytes=first-last, where the first and last are the zero-based byte offsets to copy. For example, bytes=0-9 indicates that you want to copy the first ten bytes of the source. You can copy a range only if the source object is greater than 5 GB.
upcCopySourceSSECustomerKeyMD5 :: Lens' UploadPartCopy (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.
upcCopySourceIfNoneMatch :: Lens' UploadPartCopy (Maybe Text) Source #
Copies the object if its entity tag (ETag) is different than the specified ETag.
upcSSECustomerAlgorithm :: Lens' UploadPartCopy (Maybe Text) Source #
Specifies the algorithm to use to when encrypting the object (e.g., AES256).
upcSSECustomerKey :: Lens' UploadPartCopy (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.
upcRequestPayer :: Lens' UploadPartCopy (Maybe RequestPayer) Source #
Undocumented member.
upcCopySourceIfMatch :: Lens' UploadPartCopy (Maybe Text) Source #
Copies the object if its entity tag (ETag) matches the specified tag.
upcSSECustomerKeyMD5 :: Lens' UploadPartCopy (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.
upcCopySourceSSECustomerKey :: Lens' UploadPartCopy (Maybe Text) Source #
Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
upcCopySourceSSECustomerAlgorithm :: Lens' UploadPartCopy (Maybe Text) Source #
Specifies the algorithm to use when decrypting the source object (e.g., AES256).
upcBucket :: Lens' UploadPartCopy BucketName Source #
Undocumented member.
upcCopySource :: Lens' UploadPartCopy Text Source #
The name of the source bucket and key name of the source object, separated by a slash (/). Must be URL-encoded.
upcPartNumber :: Lens' UploadPartCopy Int Source #
Part number of part being copied. This is a positive integer between 1 and 10,000.
upcUploadId :: Lens' UploadPartCopy Text Source #
Upload ID identifying the multipart upload whose part is being copied.
Destructuring the Response
uploadPartCopyResponse Source #
Creates a value of UploadPartCopyResponse
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data UploadPartCopyResponse Source #
See: uploadPartCopyResponse
smart constructor.
Response Lenses
upcrsRequestCharged :: Lens' UploadPartCopyResponse (Maybe RequestCharged) Source #
Undocumented member.
upcrsCopyPartResult :: Lens' UploadPartCopyResponse (Maybe CopyPartResult) Source #
Undocumented member.
upcrsSSECustomerAlgorithm :: Lens' UploadPartCopyResponse (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.
upcrsCopySourceVersionId :: Lens' UploadPartCopyResponse (Maybe Text) Source #
The version of the source object that was copied, if you have enabled versioning on the source bucket.
upcrsSSECustomerKeyMD5 :: Lens' UploadPartCopyResponse (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.
upcrsSSEKMSKeyId :: Lens' UploadPartCopyResponse (Maybe Text) Source #
If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
upcrsServerSideEncryption :: Lens' UploadPartCopyResponse (Maybe ServerSideEncryption) Source #
The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
upcrsResponseStatus :: Lens' UploadPartCopyResponse Int Source #
The response status code.