0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

DynamoDB 入門

Posted at

テーブルをリスト

$ aws dynamodb list-tables --endpoint-url http://localhost:8000
{
    "TableNames": [
        "hoge",
        "piyo"
    ]
}

テーブル詳細を確認

$ aws dynamodb describe-table --table-name hoge --endpoint-url http://localhost:8000

クエリ

$ aws dynamodb query \
--table-name hoge \
--endpoint-url http://localhost:8000 \
--key-condition-expression "uid = :uid" --expression-attribute-values '{":uid":{"N":"202103251454504773"}}'
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?