AWS CLI for S3
AWS CLI (AWS Command Line Interface) is a command-line interface for working with AWS services.
Configure AWS CLI
1. Configure access to S3
Access can be configured by the Account Owner or a user with the iam.admin role.
- Create a service user with a role with S3 access. If you use a service user with the
s3.user,object_storage_user, ors3.bucket.userrole, an access policy must be configured for the bucket, and its rules must allow access to this user. - Issue an S3 key to the user.
2. Install the client
Use the Install or update to the latest version of the AWS CLI section of the Amazon documentation.
3. Create an AWS CLI configuration
-
Open the terminal.
-
Open configuration mode:
aws configure -
Enter
AWS Access Key ID— the value of the Access key field from the S3 key. -
Enter
AWS Secret Access Key— the value of the Secret key field from the S3 key. -
Enter
Default region name— the pool where S3 is located (for example,ru-1). -
Enter
Default output formator leave it blank. -
Settings will be saved in the configuration files:
-
credentials in
.aws/credentials:[default]aws_access_key_id = <access_key>aws_secret_access_key = <secret_key> -
the default pool in
.aws/config:[default]region = <pool>
-
-
In the
.aws/configconfiguration file, add theendpoint_url:parameter:[default]region = <pool>endpoint_url = https://<s3_domain>Specify
<s3_domain>— the S3 API domain for the required pool.
4. Install a certificate
Linux/macOS
Windows
-
Создайте папку
~/.selectels3/:mkdir -p ~/.selectels3/ -
Скачайте сертификат and поместите его in папку
~/.selectels3/:wget https://secure.globalsign.net/cacert/root-r6.crt -O ~/.selectels3/root.crtopenssl x509 -inform der -in ~/.selectels3/root.crt -out ~/.selectels3/root.crtchmod 600 ~/.selectels3/root.crt -
In the
.aws/configconfiguration file, add the parameter:ca_bundle = ~/.selectels3/root.crt
Working with AWS CLI
For command syntax, see the AWS section of the Amazon documentation.
To work with S3 via AWS CLI, use:
- s3api — commands that correspond to REST API operations;
- s3 — additional commands that simplify working with a large number of objects.
List buckets
-
Open the CLI.
-
List the buckets:
aws s3 ls
Create a bucket
-
Open the CLI.
-
Create a bucket:
aws s3 mb s3://<bucket_name>Specify
<bucket_name>— the name of the new bucket.
List objects
-
Open the CLI.
-
List the objects:
aws s3 ls --recursive s3://<bucket_name>Specify
<bucket_name>— the name of the bucket to list objects in.
Upload an object
Simple upload
Upload with a condition
Upload with Object Lock
-
Open the CLI.
-
Upload an object to the bucket:
aws s3 cp <path_to_object> s3://<bucket_name>/Specify:
<path_to_object>— the path in the bucket where the object will be stored;<bucket_name>— the name of the bucket where the object will be stored.
Get a link to an object
Вы можете получить ссылку on объект in публичном or приватном бакете через подписанный URL (Presigned URL). Подробнее о Presigned URLs in инструкции Sharing objects with presigned URLs документации AWS.
-
Open the CLI.
-
Get a link:
aws s3 presign s3://<bucket_name>/<path_to_object> --expires-in <time>Specify:
<bucket_name>— имя бакета, in котором хранится объект;<path_to_object>— путь к объекту in бакете;- optional:
--expires-in <time>— срок действия ссылки, где<time>— время in секундах, через которое ссылка перестанет работать. Если не добавить параметр--expires-in <time>, ссылка будет работать один час.
Copy an object
Simple copy
Copy with a condition
-
Open the CLI.
-
Copy the object:
aws s3 cp s3://<bucket_name_1>/<path_to_object_1> s3://<bucket_name_2>/<path_to_object_2>Specify:
<bucket_name_1>— имя бакета, in котором хранится объект для копирования;<path_to_object_1>— путь к объекту для копирования in бакете;<bucket_name_2>— имя бакета, in который будет скопирован объект;<path_to_object_2>— путь in бакете, по которому будет храниться объект.
Delete an object
Simple deletion
Delete with a condition
-
Open the CLI.
-
Delete the object:
aws s3 rm s3://<bucket_name>/<object_name>Specify:
<bucket_name>— имя бакета;<object_name>— имя объекта.