This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.AWS.S3.
Summary
Uploads a collection of files to S3. 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.
Syntax
public Task Upload(IList<SyncPath> paths, SyncSettings settings, CancellationToken cancellationToken = null)
Attributes
Type |
Description |
AsyncStateMachineAttribute |
|
Parameters
Name |
Type |
Description |
paths |
IList<SyncPath> |
The paths to upload. |
settings |
SyncSettings |
The SyncSettings required to upload to Amazon S3. |
cancellationToken |
CancellationToken |
A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
Return Value