HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //lib/python3/dist-packages/awscli/examples/s3api/upload-part-copy.rst
**To upload part of an object by copying data from an existing object as the data source**

The following ``upload-part-copy`` example uploads a part by copying data from an existing object as a data source. ::

    aws s3api upload-part-copy \
        --bucket my-bucket \
        --key "Map_Data_June.mp4" \
        --copy-source "my-bucket/copy_of_Map_Data_June.mp4" \
        --part-number 1 \
        --upload-id "bq0tdE1CDpWQYRPLHuNG50xAT6pA5D.m_RiBy0ggOH6b13pVRY7QjvLlf75iFdJqp_2wztk5hvpUM2SesXgrzbehG5hViyktrfANpAD0NO.Nk3XREBqvGeZF6U3ipiSm"

Output::

    {
        "CopyPartResult": {
            "LastModified": "2019-12-13T23:16:03.000Z",
            "ETag": "\"711470fc377698c393d94aed6305e245\""
        }
    }