create-multipart-upload
The aws s3api create-multipart-upload
command is used to initiate a multipart upload to an Astran S3 bucket. This is useful for uploading large files in smaller parts.
aws s3api create-multipart-upload --bucket BUCKET_NAME --key OBJECT_KEY
This command initiates a multipart upload for the specified object in the specified S3 bucket.
Syntax
aws s3api create-multipart-upload \
--bucket BUCKET_NAME \
--key OBJECT_KEY
Options
--bucket
: Specifies the Astran S3 bucket name where the multipart upload will be initiated.--key
: Identifies the object key under which the file will be uploaded.
See also the original AWS documentation.