aws-dynamodb
Verified for current stable LTS
Aws Dynamodb Command: Put Item
An engineer would use the 'aws dynamodb put-item' command to add a new item with specific attributes to the designated DynamoDB table when storing user profile data in an application. Exact CLI syntax to put item using Aws Dynamodb.
When to use this: An engineer would use the 'aws dynamodb put-item' command to add a new item with specific attributes to the designated DynamoDB table when storing user profile data in an application.
Command Syntax
aws dynamodb put-item --table-name <table_name> --item '{{{"AttributeName": {"S": "value"}}}}' aws dynamodb put-item --table-name <table_name> --item "{{{"AttributeName": `{"S": "value"`}}}}" Command Breakdown
--table-name- Command Option
- Tool-specific option used by this command invocation.
--item- Command Option
- Tool-specific option used by this command invocation.
FAQ
Purpose: Exact syntax to put item using Aws Dynamodb.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
Aws Dynamodb Command: List Tables
aws dynamodb list-tables Aws Dynamodb Command: Describe Table aws dynamodb describe-table --table-name <table_name> Aws Dynamodb Command: Get Item aws dynamodb get-item --table-name <table_name> --key '{{{"ID": {"N": "1"}}}}' Aws Dynamodb Command: Scan aws dynamodb scan --table-name <table_name> Aws Dynamodb Command: Create Table aws dynamodb create-table --table-name <table_name> --attribute-definitions <AttributeName=S,AttributeType=S> --key-schema <AttributeName=S,KeyType=HASH> --provisioned-throughput <ReadCapacityUnits=5,WriteCapacityUnits=5>