From the course: AWS for Developers: CLI Tips

Unlock the full course today

Join today to access over 24,200 courses taught by industry experts.

Uploading, downloading, and managing files in S3 buckets

Uploading, downloading, and managing files in S3 buckets

From the course: AWS for Developers: CLI Tips

Uploading, downloading, and managing files in S3 buckets

- [Instructor] Let us now explore how to work with files in Amazon Simple Storage Service, also known as S3, using the AWS Command Line Interface. Specifically, we'll cover uploading, downloading, and managing files. By the end of this video, you'll have the skills to efficiently handle your files in S3 using CLI. What is Amazon S3? S3 is a highly scalable and durable object storage service offered by Amazon Web Services. Let's dive into how you can interact with S3 buckets and manage your files using AWS CLI. Before we proceed, let's briefly touch on creating an S3 bucket. You can create a bucket using the AWS Management Console, or using the AWS CLI. For CLI, you can create a bucket by using the following command, aws + Space + s3 + Space mb + Space + s3 and then the bucket name. Mb, here, stands for make bucket. Now, let's put this into action and head over to our terminal. I'm going to create a bucket with…

Contents