Description:
Need to handle chunk upload in amazon service provider.
Solution:
Handled chunk and default upload in amazon service provider. To achieve chunk upload uses the CompleteMultipartUploadAsync, UploadPartAsync and InitiateMultipartUploadAsync methods from the amazon.
Use for partETags: Each part uploaded to S3 gets an ETag. The partETags list keeps track of these ETags along with their corresponding part numbers. When all parts have been uploaded, the CompleteMultipartUploadRequest requires the list of part numbers and their ETags to assemble the final object correctly.
Description: Need to handle chunk upload in amazon service provider. Solution: