Large objects should be uploaded to your bucket via multipart upload.Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Using AWS CLI
Assuming you have AWS CLI set up already:~/Projects/s3-test/testdata/10Gfileis the path to the raw bytes stored locallys3://target-bucket/10Gfileis the target bucket name and the object key (aka object name)
Using AWS API/SDK
The general procedure to use the API/SDK is as follows:CreateMultipartUpload
Initiate the upload session with CreateMultipartUpload.
UploadPart
Stream each chunk with UploadPart.
CompleteMultipartUpload
Finalize the transfer by calling CompleteMultipartUpload.