...

/

Download, Move, and Delete Objects

Download, Move, and Delete Objects

Learn about some basic and useful operations applicable to S3 objects.

Download an object with the AWS CLI

Using AWS CLI

  • We can use the cp command to download objects.

    Example 1:

    aws s3 cp s3://my-pets/dingo.jpg ./
    

    The command above copies the object dingo.jpg to the current working

    Example 2:

    Using ...