Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorage.MultipartUploadThreshold

TElAWSS3DataStorage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies the minimal object size for which a multipart upload method will be used.

Declaration

[C#]
    long MultipartUploadThreshold;

[VB.NET]
    Property MultipartUploadThreshold As Long

[Pascal]
    property MultipartUploadThreshold : Int64;

[C++]
    int64_t get_MultipartUploadThreshold();
    void set_MultipartUploadThreshold(int64_t Value);

[PHP]
    integer get_MultipartUploadThreshold()
    void set_MultipartUploadThreshold(integer $Value)

[Java]
    long getMultipartUploadThreshold();
    void setMultipartUploadThreshold(long Value);

Description

    Use this property to specify the minimal object size for which a multipart upload method will be used. AWS S3 specification requires that all objects larger than 5GB were uploaded in multipart mode. The default value is 5368709119 (5 GBytes - 1 Byte).

See also:     MultipartUploadPartSize    

Discuss this help topic in SecureBlackbox Forum