Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ManagedUploadOptions

Index

Properties

Optional leavePartsOnError

leavePartsOnError: boolean

Default: false Whether to abort the multipart upload if an error occurs. Set to true if you want to handle failures manually.

Optional params

A map of parameters to pass to the upload requests. The "Body" parameter is required to be specified either on the service or in the params option.

Optional partSize

partSize: number

Default: 5 mb The size in bytes for each individual part to be uploaded. Adjust the part size to ensure the number of parts does not exceed maxTotalParts. See minPartSize for the minimum allowed part size.

Optional queueSize

queueSize: number

The size of the concurrent queue manager to upload parts in parallel. Set to 1 for synchronous uploading of parts. Note that the uploader will buffer at most queueSize * partSize bytes into memory at any given time. default: 4

Optional service

service: S3

An optional S3 service object to use for requests. This object might have bound parameters used by the uploader.

Optional tags

tags: Tag[]

The tags to apply to the object.

Generated using TypeDoc