AWS SDK for .NET Documentation
Upload Method (filePath, bucketName, key)
AmazonAmazon.S3.TransferTransferUtilityUpload(String, String, String) Did this page help you?   Yes   No    Tell us about it...
Uploads the specified file. Multiple threads are used to read the file and perform multiple uploads in parallel. For large uploads, the file will be divided and uploaded in parts using Amazon S3's multipart API. The parts will be reassembled as one object in Amazon S3.
Declaration Syntax
C#
public void Upload(
	string filePath,
	string bucketName,
	string key
)
Parameters
filePath (String)
The file path of the file to upload.
bucketName (String)
The target Amazon S3 bucket, that is, the name of the bucket to upload the file to.
key (String)
The key under which the Amazon S3 object is stored.
Remarks

If you are uploading large files, TransferUtility will use multipart upload to fulfill the request. If a multipart upload is interrupted, TransferUtility will attempt to abort the multipart upload. Under certain circumstances (network outage, power failure, etc.), TransferUtility will not be able to abort the multipart upload. In this case, in order to stop getting charged for the storage of uploaded parts, you should manually invoke TransferUtility.AbortMultipartUploads() to abort the incomplete multipart uploads.

Assembly: AWSSDK (Module: AWSSDK) Version: 1.5.60.0 (1.5.60.0)