amazonaws.com – dynamodb
Amazon DynamoDB is a fast, highly scalable, highly available, cost-effective non-relational database service.
Amazon DynamoDB removes traditional scalability limitations on data storage while maintaining low latency and predictable performance.
- Homepage
- https://api.apis.guru/v2/specs/amazonaws.com:dynamodb/2011-12-05.json
- Provider
- amazonaws.com:dynamodb / dynamodb
- OpenAPI version
- 3.0.0
- Spec (JSON)
- https://api.apis.guru/v2/specs/amazonaws.com/dynamodb/2011-12-05/openapi.json
- Spec (YAML)
- https://api.apis.guru/v2/specs/amazonaws.com/dynamodb/2011-12-05/openapi.yaml
Tools (15)
Extracted live via the executor SDK.
-
xAmzTargetDynamoDb20111205BatchGetItem.batchGetItemRetrieves the attributes for multiple items from multiple tables using their primary keys.
The maximum number of item attributes that can be retrieved for a single operation is 100. Also, the number of items retrieved is constrained by a 1 MB the size limit. If the response size limit is exceeded or a partial result is returned due to an internal processing failure, Amazon DynamoDB returns an
UnprocessedKeysvalue so you can retry the operation starting with the next item to get.Amazon DynamoDB automatically adjusts the number of items returned per page to enforce this limit. For example, even if you ask to retrieve 100 items, but each individual item is 50k in size, the system returns 20 items and an appropriate
UnprocessedKeysvalue so you can get the next page of results. If necessary, your application needs its own logic to assemble the pages of results into one set. -
xAmzTargetDynamoDb20111205BatchWriteItem.batchWriteItemAllows to execute a batch of Put and/or Delete Requests for many tables in a single call. A total of 25 requests are allowed.
There are no transaction guarantees provided by this API. It does not allow conditional puts nor does it support return values.
-
xAmzTargetDynamoDb20111205CreateTable.createTableAdds a new table to your account.
The table name must be unique among those associated with the AWS Account issuing the request, and the AWS Region that receives the request (e.g.
us-east-1).The
CreateTableoperation triggers an asynchronous workflow to begin creating the table. Amazon DynamoDB immediately returns the state of the table (CREATING) until the table is in theACTIVEstate. Once the table is in theACTIVEstate, you can perform data plane operations. -
xAmzTargetDynamoDb20111205DeleteItem.deleteItemDeletes a single item in a table by primary key.
You can perform a conditional delete operation that deletes the item if it exists, or if it has an expected attribute value.
-
xAmzTargetDynamoDb20111205DeleteTable.deleteTableDeletes a table and all of its items.
If the table is in the
ACTIVEstate, you can delete it. If a table is inCREATINGorUPDATINGstates then Amazon DynamoDB returns aResourceInUseException. If the specified table does not exist, Amazon DynamoDB returns aResourceNotFoundException. -
xAmzTargetDynamoDb20111205DescribeTable.describeTableRetrieves information about the table, including the current status of the table, the primary key schema and when the table was created.
If the table does not exist, Amazon DynamoDB returns a
ResourceNotFoundException. -
xAmzTargetDynamoDb20111205GetItem.getItemRetrieves a set of Attributes for an item that matches the primary key.
The
GetItemoperation provides an eventually-consistent read by default. If eventually-consistent reads are not acceptable for your application, useConsistentRead. Although this operation might take longer than a standard read, it always returns the last updated value. -
xAmzTargetDynamoDb20111205ListTables.listTablesRetrieves a paginated list of table names created by the AWS Account of the caller in the AWS Region (e.g.
us-east-1). -
xAmzTargetDynamoDb20111205PutItem.putItemCreates a new item, or replaces an old item with a new item (including all the attributes).
If an item already exists in the specified table with the same primary key, the new item completely replaces the existing item. You can perform a conditional put (insert a new item if one with the specified primary key doesn't exist), or replace an existing item if it has certain attribute values.
-
xAmzTargetDynamoDb20111205Query.queryGets the values of one or more items and its attributes by primary key (composite primary key, only).
Narrow the scope of the query using comparison operators on the
RangeKeyValueof the composite key. Use theScanIndexForwardparameter to get results in forward or reverse order by range key. -
xAmzTargetDynamoDb20111205Scan.scanRetrieves one or more items and its attributes by performing a full scan of a table.
Provide a
ScanFilterto get more specific results. -
xAmzTargetDynamoDb20111205UpdateItem.updateItemEdits an existing item's attributes.
You can perform a conditional update (insert a new attribute name-value pair if it doesn't exist, or replace an existing name-value pair if it has certain expected attribute values).
-
xAmzTargetDynamoDb20111205UpdateTable.updateTableUpdates the provisioned throughput for the given table.
Setting the throughput for a table helps you manage performance and is part of the Provisioned Throughput feature of Amazon DynamoDB.
-
openapi.previewSpecPreview an OpenAPI document before adding it as a source
-
openapi.addSourceAdd an OpenAPI source and register its operations as tools