LoginSignup
0
0

More than 5 years have passed since last update.

AWS CLI Tips

Last updated at Posted at 2018-01-11

よく使うCLIコマンドをサービス毎にまとめ

S3

Bucket一覧

$ aws s3 ls

Sync Local to Bucket

$ aws s3 sync path_on_local s3://[bucket_name]/path_on_bucket

Lambda

Lambda Function一覧

$ aws lambda list-functions

Lambda Functionをアップロード

$ aws lambda update-function-code \
  --function-name arn_of_lambda_function \
  --zip-file fileb://path_to_zip

外部サイト

[公式]AWS CLI Command Reference

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0