Добавление данных в таблицу
Статья создана
Обновлена 10 января 2024 г.
Чтобы добавить две записи в таблицу series
:
AWS CLI
Выполните команды, заменив https://your-database-endpoint
подготовленным ранее Document API эндпоинтом вашей БД:
Важно
Для работы с AWS CLI из Windows рекомендуется использовать WSL
endpoint="https://your-database-endpoint"
aws dynamodb put-item \
--table-name series \
--item '{"series_id": {"N": "1"}, "title": {"S": "IT Crowd"}, "series_info": {"S": "The IT Crowd is a British sitcom produced by Channel 4, written by Graham Linehan, produced by Ash Atalla and starring Chris ODowd, Richard Ayoade, Katherine Parkinson, and Matt Berry."}, "release_date": {"S": "2006-02-03"}}' \
--endpoint $endpoint
и
endpoint="https://your-database-endpoint"
aws dynamodb put-item \
--table-name series \
--item '{"series_id": {"N": "2"}, "title": {"S": "Silicon Valley"}, "series_info": {"S": "Silicon Valley is an American comedy television series created by Mike Judge, John Altschuler and Dave Krinsky."}, "release_date": {"S": "2014-04-06"}}' \
--endpoint $endpoint