put_item
Inserts or replaces an item in a DynamoDB table using the specified table name and item details, ensuring data management without delete functionality.
Instructions
Inserts or replaces an item in a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item | Yes | Item to put into the table | |
tableName | Yes | Name of the table |
Input Schema (JSON Schema)
{
"properties": {
"item": {
"description": "Item to put into the table",
"type": "object"
},
"tableName": {
"description": "Name of the table",
"type": "string"
}
},
"required": [
"tableName",
"item"
],
"type": "object"
}