nerdexam
Amazon

SOA-C02 · Question #303

A SysOps administrator wants to upload a file that is 1 TB in size from on-premises to an Amazon S3 bucket using multipart uploads. What should the SysOps administrator do to meet this requirement?

The correct answer is D. Use the s3 cp command. It's a best practice to use aws s3 commands (such as aws s3 cp) for multipart uploads and downloads, because these aws s3 commands automatically perform multipart uploading and downloading based on the file size. By comparison, aws s3api commands, such as aws s3api…

Submitted by haruto_sh· Mar 30, 2026Deployment, Provisioning, and Automation

Question

A SysOps administrator wants to upload a file that is 1 TB in size from on-premises to an Amazon S3 bucket using multipart uploads. What should the SysOps administrator do to meet this requirement?

Options

  • AUpload the file using the S3 console.
  • BUse the s3 api copy-object command.
  • CUse the s3 api put-object command.
  • DUse the s3 cp command.

How the community answered

(27 responses)
  • A
    15% (4)
  • B
    7% (2)
  • C
    4% (1)
  • D
    74% (20)

Explanation

It's a best practice to use aws s3 commands (such as aws s3 cp) for multipart uploads and downloads, because these aws s3 commands automatically perform multipart uploading and downloading based on the file size. By comparison, aws s3api commands, such as aws s3api create-multipart-upload, should be used only when aws s3 commands don't support a specific upload need, such as when the multipart upload involves multiple servers, a multipart upload is manually stopped and resumed later, or when the aws s3 command doesn't support a required request parameter. https://aws.amazon.com/premiumsupport/knowledge-center/s3-multipart-upload-cli/

Topics

#S3 multipart upload#AWS CLI s3 cp#large file transfer#S3 operations

Community Discussion

No community discussion yet for this question.

Full SOA-C02 Practice