{ "metadata":{ "apiVersion":"2012-08-10", "endpointPrefix":"dynamodb", "jsonVersion":"1.0", "serviceAbbreviation":"DynamoDB", "serviceFullName":"Amazon DynamoDB", "signatureVersion":"v4", "targetPrefix":"DynamoDB_20120810", "protocol":"json" }, "documentation":"Amazon DynamoDB Overview

This is the Amazon DynamoDB API Reference. This guide provides descriptions and samples of the low-level DynamoDB API. For information about DynamoDB application development, go to the Amazon DynamoDB Developer Guide.

Instead of making the requests to the low-level DynamoDB API directly from your application, we recommend that you use the AWS Software Development Kits (SDKs). The easy-to-use libraries in the AWS SDKs make it unnecessary to call the low-level DynamoDB API directly from your application. The libraries take care of request authentication, serialization, and connection management. For more information, go to Using the AWS SDKs with DynamoDB in the Amazon DynamoDB Developer Guide.

If you decide to code against the low-level DynamoDB API directly, you will need to write the necessary code to authenticate your requests. For more information on signing your requests, go to Using the DynamoDB API in the Amazon DynamoDB Developer Guide.

The following are short descriptions of each low-level API action, organized by function.

Managing Tables

For conceptual information about managing tables, go to Working with Tables in the Amazon DynamoDB Developer Guide.

Reading Data

For conceptual information about reading data, go to Working with Items and Query and Scan Operations in the Amazon DynamoDB Developer Guide.

Modifying Data

For conceptual information about modifying data, go to Working with Items and Query and Scan Operations in the Amazon DynamoDB Developer Guide.

", "operations":{ "BatchGetItem":{ "name":"BatchGetItem", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"BatchGetItemInput", "documentation":"

Represents the input of a BatchGetItem operation.

" }, "output":{ "shape":"BatchGetItemOutput", "documentation":"

Represents the output of a BatchGetItem operation.

" }, "errors":[ { "shape":"ProvisionedThroughputExceededException", "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

The BatchGetItem operation returns the attributes of one or more items from one or more tables. You identify requested items by primary key.

A single operation can retrieve up to 16 MB of data, which can contain as many as 100 items. BatchGetItem will return a partial result if the response size limit is exceeded, the table's provisioned throughput is exceeded, or an internal processing failure occurs. If a partial result is returned, the operation returns a value for UnprocessedKeys. You can use this value to retry the operation starting with the next item to get.

For example, if you ask to retrieve 100 items, but each individual item is 300 KB in size, the system returns 52 items (so as not to exceed the 16 MB limit). It also returns an appropriate UnprocessedKeys value so you can get the next page of results. If desired, your application can include its own logic to assemble the pages of results into one data set.

If none of the items can be processed due to insufficient provisioned throughput on all of the tables in the request, then BatchGetItem will return a ProvisionedThroughputExceededException. If at least one of the items is successfully processed, then BatchGetItem completes successfully, while returning the keys of the unread items in UnprocessedKeys.

If DynamoDB returns any unprocessed items, you should retry the batch operation on those items. However, we strongly recommend that you use an exponential backoff algorithm. If you retry the batch operation immediately, the underlying read or write requests can still fail due to throttling on the individual tables. If you delay the batch operation using exponential backoff, the individual requests in the batch are much more likely to succeed.

For more information, go to Batch Operations and Error Handling in the Amazon DynamoDB Developer Guide.

By default, BatchGetItem performs eventually consistent reads on every table in the request. If you want strongly consistent reads instead, you can set ConsistentRead to true for any or all tables.

In order to minimize response latency, BatchGetItem retrieves items in parallel.

When designing your application, keep in mind that DynamoDB does not return attributes in any particular order. To help parse the response by item, include the primary key values for the items in your request in the AttributesToGet parameter.

If a requested item does not exist, it is not returned in the result. Requests for nonexistent items consume the minimum read capacity units according to the type of read. For more information, see Capacity Units Calculations in the Amazon DynamoDB Developer Guide.

" }, "BatchWriteItem":{ "name":"BatchWriteItem", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"BatchWriteItemInput", "documentation":"

Represents the input of a BatchWriteItem operation.

" }, "output":{ "shape":"BatchWriteItemOutput", "documentation":"

Represents the output of a BatchWriteItem operation.

" }, "errors":[ { "shape":"ProvisionedThroughputExceededException", "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"ItemCollectionSizeLimitExceededException", "exception":true, "documentation":"

An item collection is too large. This exception is only returned for tables that have one or more local secondary indexes.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

The BatchWriteItem operation puts or deletes multiple items in one or more tables. A single call to BatchWriteItem can write up to 16 MB of data, which can comprise as many as 25 put or delete requests. Individual items to be written can be as large as 400 KB.

The individual PutItem and DeleteItem operations specified in BatchWriteItem are atomic; however BatchWriteItem as a whole is not. If any requested operations fail because the table's provisioned throughput is exceeded or an internal processing failure occurs, the failed operations are returned in the UnprocessedItems response parameter. You can investigate and optionally resend the requests. Typically, you would call BatchWriteItem in a loop. Each iteration would check for unprocessed items and submit a new BatchWriteItem request with those unprocessed items until all items have been processed.

Note that if none of the items can be processed due to insufficient provisioned throughput on all of the tables in the request, then BatchWriteItem will return a ProvisionedThroughputExceededException.

If DynamoDB returns any unprocessed items, you should retry the batch operation on those items. However, we strongly recommend that you use an exponential backoff algorithm. If you retry the batch operation immediately, the underlying read or write requests can still fail due to throttling on the individual tables. If you delay the batch operation using exponential backoff, the individual requests in the batch are much more likely to succeed.

For more information, go to Batch Operations and Error Handling in the Amazon DynamoDB Developer Guide.

With BatchWriteItem, you can efficiently write or delete large amounts of data, such as from Amazon Elastic MapReduce (EMR), or copy data from another database into DynamoDB. In order to improve performance with these large-scale operations, BatchWriteItem does not behave in the same way as individual PutItem and DeleteItem calls would For example, you cannot specify conditions on individual put and delete requests, and BatchWriteItem does not return deleted items in the response.

If you use a programming language that supports concurrency, such as Java, you can use threads to write items in parallel. Your application must include the necessary logic to manage the threads. With languages that don't support threading, such as PHP, you must update or delete the specified items one at a time. In both situations, BatchWriteItem provides an alternative where the API performs the specified put and delete operations in parallel, giving you the power of the thread pool approach without having to introduce complexity into your application.

Parallel processing reduces latency, but each specified put and delete request consumes the same number of write capacity units whether it is processed in parallel or not. Delete operations on nonexistent items consume one write capacity unit.

If one or more of the following is true, DynamoDB rejects the entire batch write operation:

" }, "CreateTable":{ "name":"CreateTable", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"CreateTableInput", "documentation":"

Represents the input of a CreateTable operation.

" }, "output":{ "shape":"CreateTableOutput", "documentation":"

Represents the output of a CreateTable operation.

" }, "errors":[ { "shape":"ResourceInUseException", "exception":true, "documentation":"

The operation conflicts with the resource's availability. For example, you attempted to recreate an existing table, or tried to delete a table currently in the CREATING state.

" }, { "shape":"LimitExceededException", "exception":true, "documentation":"

The number of concurrent table requests (cumulative number of tables in the CREATING, DELETING or UPDATING state) exceeds the maximum allowed of 10.

Also, for tables with secondary indexes, only one of those tables can be in the CREATING state at any point in time. Do not attempt to create more than one such table simultaneously.

The total limit of tables in the ACTIVE state is 250.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

The CreateTable operation adds a new table to your account. In an AWS account, table names must be unique within each region. That is, you can have two tables with same name if you create the tables in different regions.

CreateTable is an asynchronous operation. Upon receiving a CreateTable request, DynamoDB immediately returns a response with a TableStatus of CREATING. After the table is created, DynamoDB sets the TableStatus to ACTIVE. You can perform read and write operations only on an ACTIVE table.

If you want to create multiple tables with secondary indexes on them, you must create them sequentially. Only one table with secondary indexes can be in the CREATING state at any given time.

You can use the DescribeTable API to check the table status.

" }, "DeleteItem":{ "name":"DeleteItem", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"DeleteItemInput", "documentation":"

Represents the input of a DeleteItem operation.

" }, "output":{ "shape":"DeleteItemOutput", "documentation":"

Represents the output of a DeleteItem operation.

" }, "errors":[ { "shape":"ConditionalCheckFailedException", "exception":true, "documentation":"

A condition specified in the operation could not be evaluated.

" }, { "shape":"ProvisionedThroughputExceededException", "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"ItemCollectionSizeLimitExceededException", "exception":true, "documentation":"

An item collection is too large. This exception is only returned for tables that have one or more local secondary indexes.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

Deletes 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.

In addition to deleting an item, you can also return the item's attribute values in the same operation, using the ReturnValues parameter.

Unless you specify conditions, the DeleteItem is an idempotent operation; running it multiple times on the same item or attribute does not result in an error response.

Conditional deletes are useful for deleting items only if specific conditions are met. If those conditions are met, DynamoDB performs the delete. Otherwise, the item is not deleted.

" }, "DeleteTable":{ "name":"DeleteTable", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"DeleteTableInput", "documentation":"

Represents the input of a DeleteTable operation.

" }, "output":{ "shape":"DeleteTableOutput", "documentation":"

Represents the output of a DeleteTable operation.

" }, "errors":[ { "shape":"ResourceInUseException", "exception":true, "documentation":"

The operation conflicts with the resource's availability. For example, you attempted to recreate an existing table, or tried to delete a table currently in the CREATING state.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"LimitExceededException", "exception":true, "documentation":"

The number of concurrent table requests (cumulative number of tables in the CREATING, DELETING or UPDATING state) exceeds the maximum allowed of 10.

Also, for tables with secondary indexes, only one of those tables can be in the CREATING state at any point in time. Do not attempt to create more than one such table simultaneously.

The total limit of tables in the ACTIVE state is 250.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

The DeleteTable operation deletes a table and all of its items. After a DeleteTable request, the specified table is in the DELETING state until DynamoDB completes the deletion. If the table is in the ACTIVE state, you can delete it. If a table is in CREATING or UPDATING states, then DynamoDB returns a ResourceInUseException. If the specified table does not exist, DynamoDB returns a ResourceNotFoundException. If table is already in the DELETING state, no error is returned.

When you delete a table, any indexes on that table are also deleted.

Use the DescribeTable API to check the status of the table.

" }, "DescribeTable":{ "name":"DescribeTable", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"DescribeTableInput", "documentation":"

Represents the input of a DescribeTable operation.

" }, "output":{ "shape":"DescribeTableOutput", "documentation":"

Represents the output of a DescribeTable operation.

" }, "errors":[ { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

Returns information about the table, including the current status of the table, when it was created, the primary key schema, and any indexes on the table.

" }, "GetItem":{ "name":"GetItem", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"GetItemInput", "documentation":"

Represents the input of a GetItem operation.

" }, "output":{ "shape":"GetItemOutput", "documentation":"

Represents the output of a GetItem operation.

" }, "errors":[ { "shape":"ProvisionedThroughputExceededException", "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

The GetItem operation returns a set of attributes for the item with the given primary key. If there is no matching item, GetItem does not return any data.

GetItem provides an eventually consistent read by default. If your application requires a strongly consistent read, set ConsistentRead to true. Although a strongly consistent read might take more time than an eventually consistent read, it always returns the last updated value.

" }, "ListTables":{ "name":"ListTables", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"ListTablesInput", "documentation":"

Represents the input of a ListTables operation.

" }, "output":{ "shape":"ListTablesOutput", "documentation":"

Represents the output of a ListTables operation.

" }, "errors":[ { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

Returns an array of table names associated with the current account and endpoint. The output from ListTables is paginated, with each page returning a maximum of 100 table names.

" }, "PutItem":{ "name":"PutItem", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"PutItemInput", "documentation":"

Represents the input of a PutItem operation.

" }, "output":{ "shape":"PutItemOutput", "documentation":"

Represents the output of a PutItem operation.

" }, "errors":[ { "shape":"ConditionalCheckFailedException", "exception":true, "documentation":"

A condition specified in the operation could not be evaluated.

" }, { "shape":"ProvisionedThroughputExceededException", "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"ItemCollectionSizeLimitExceededException", "exception":true, "documentation":"

An item collection is too large. This exception is only returned for tables that have one or more local secondary indexes.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

Creates a new item, or replaces an old item with a new item. If an item that has the same primary key as the new item already exists in the specified table, the new item completely replaces the existing item. You can perform a conditional put operation (add a new item if one with the specified primary key doesn't exist), or replace an existing item if it has certain attribute values.

In addition to putting an item, you can also return the item's attribute values in the same operation, using the ReturnValues parameter.

When you add an item, the primary key attribute(s) are the only required attributes. Attribute values cannot be null. String and Binary type attributes must have lengths greater than zero. Set type attributes cannot be empty. Requests with empty values will be rejected with a ValidationException exception.

You can request that PutItem return either a copy of the original item (before the update) or a copy of the updated item (after the update). For more information, see the ReturnValues description below.

For more information about using this API, see Working with Items in the Amazon DynamoDB Developer Guide.

" }, "Query":{ "name":"Query", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"QueryInput", "documentation":"

Represents the input of a Query operation.

" }, "output":{ "shape":"QueryOutput", "documentation":"

Represents the output of a Query operation.

" }, "errors":[ { "shape":"ProvisionedThroughputExceededException", "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

A Query operation directly accesses items from a table using the table primary key, or from an index using the index key. You must provide a specific hash key value. You can narrow the scope of the query by using comparison operators on the range key value, or on the index key. You can use the ScanIndexForward parameter to get results in forward or reverse order, by range key or by index key.

Queries that do not return results consume the minimum number of read capacity units for that type of read operation.

If the total number of items meeting the query criteria exceeds the result set size limit of 1 MB, the query stops and results are returned to the user with LastEvaluatedKey to continue the query in a subsequent operation. Unlike a Scan operation, a Query operation never returns both an empty result set and a LastEvaluatedKey. The LastEvaluatedKey is only provided if the results exceed 1 MB, or if you have used Limit.

You can query a table, a local secondary index, or a global secondary index. For a query on a table or on a local secondary index, you can set ConsistentRead to true and obtain a strongly consistent result. Global secondary indexes support eventually consistent reads only, so do not specify ConsistentRead when querying a global secondary index.

" }, "Scan":{ "name":"Scan", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"ScanInput", "documentation":"

Represents the input of a Scan operation.

" }, "output":{ "shape":"ScanOutput", "documentation":"

Represents the output of a Scan operation.

" }, "errors":[ { "shape":"ProvisionedThroughputExceededException", "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

The Scan operation returns one or more items and item attributes by accessing every item in the table. To have DynamoDB return fewer items, you can provide a ScanFilter operation.

If the total number of scanned items exceeds the maximum data set size limit of 1 MB, the scan stops and results are returned to the user as a LastEvaluatedKey value to continue the scan in a subsequent operation. The results also include the number of items exceeding the limit. A scan can result in no table data meeting the filter criteria.

The result set is eventually consistent.

By default, Scan operations proceed sequentially; however, for faster performance on large tables, applications can request a parallel Scan operation by specifying the Segment and TotalSegments parameters. For more information, see Parallel Scan in the Amazon DynamoDB Developer Guide.

" }, "UpdateItem":{ "name":"UpdateItem", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"UpdateItemInput", "documentation":"

Represents the input of an UpdateItem operation.

" }, "output":{ "shape":"UpdateItemOutput", "documentation":"

Represents the output of an UpdateItem operation.

" }, "errors":[ { "shape":"ConditionalCheckFailedException", "exception":true, "documentation":"

A condition specified in the operation could not be evaluated.

" }, { "shape":"ProvisionedThroughputExceededException", "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"ItemCollectionSizeLimitExceededException", "exception":true, "documentation":"

An item collection is too large. This exception is only returned for tables that have one or more local secondary indexes.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

Edits an existing item's attributes, or adds a new item to the table if it does not already exist. You can put, delete, or add attribute values. You can also 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).

You can also return the item's attribute values in the same UpdateItem operation using the ReturnValues parameter.

" }, "UpdateTable":{ "name":"UpdateTable", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"UpdateTableInput", "documentation":"

Represents the input of an UpdateTable operation.

" }, "output":{ "shape":"UpdateTableOutput", "documentation":"

Represents the output of an UpdateTable operation.

" }, "errors":[ { "shape":"ResourceInUseException", "exception":true, "documentation":"

The operation conflicts with the resource's availability. For example, you attempted to recreate an existing table, or tried to delete a table currently in the CREATING state.

" }, { "shape":"ResourceNotFoundException", "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, { "shape":"LimitExceededException", "exception":true, "documentation":"

The number of concurrent table requests (cumulative number of tables in the CREATING, DELETING or UPDATING state) exceeds the maximum allowed of 10.

Also, for tables with secondary indexes, only one of those tables can be in the CREATING state at any point in time. Do not attempt to create more than one such table simultaneously.

The total limit of tables in the ACTIVE state is 250.

" }, { "shape":"InternalServerError", "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" } ], "documentation":"

Updates 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 DynamoDB.

The provisioned throughput values can be upgraded or downgraded based on the maximums and minimums listed in the Limits section in the Amazon DynamoDB Developer Guide.

The table must be in the ACTIVE state for this operation to succeed. UpdateTable is an asynchronous operation; while executing the operation, the table is in the UPDATING state. While the table is in the UPDATING state, the table still has the provisioned throughput from before the call. The new provisioned throughput setting is in effect only when the table returns to the ACTIVE state after the UpdateTable operation.

You cannot add, modify or delete indexes using UpdateTable. Indexes can only be defined at table creation time.

" } }, "shapes":{ "AttributeAction":{ "type":"string", "enum":[ "ADD", "PUT", "DELETE" ] }, "AttributeDefinition":{ "type":"structure", "required":[ "AttributeName", "AttributeType" ], "members":{ "AttributeName":{ "shape":"KeySchemaAttributeName", "documentation":"

A name for the attribute.

" }, "AttributeType":{ "shape":"ScalarAttributeType", "documentation":"

The data type for the attribute.

" } }, "documentation":"

Represents an attribute for describing the key schema for the table and indexes.

" }, "AttributeDefinitions":{ "type":"list", "member":{"shape":"AttributeDefinition"} }, "AttributeMap":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, "AttributeName":{ "type":"string", "max":65535 }, "AttributeNameList":{ "type":"list", "member":{"shape":"AttributeName"}, "min":1 }, "AttributeUpdates":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValueUpdate"} }, "AttributeValue":{ "type":"structure", "members":{ "S":{ "shape":"StringAttributeValue", "documentation":"

A String data type.

" }, "N":{ "shape":"NumberAttributeValue", "documentation":"

A Number data type.

" }, "B":{ "shape":"BinaryAttributeValue", "documentation":"

A Binary data type.

" }, "SS":{ "shape":"StringSetAttributeValue", "documentation":"

A String Set data type.

" }, "NS":{ "shape":"NumberSetAttributeValue", "documentation":"

A Number Set data type.

" }, "BS":{ "shape":"BinarySetAttributeValue", "documentation":"

A Binary Set data type.

" }, "M":{ "shape":"MapAttributeValue", "documentation":"

A Map of attribute values.

" }, "L":{ "shape":"ListAttributeValue", "documentation":"

A List of attribute values.

" }, "NULL":{ "shape":"NullAttributeValue", "documentation":"

A Null data type.

" }, "BOOL":{ "shape":"BooleanAttributeValue", "documentation":"

A Boolean data type.

" } }, "documentation":"

Represents the data for an attribute. You can set one, and only one, of the elements.

Each attribute in an item is a name-value pair. An attribute can be single-valued or multi-valued set. For example, a book item can have title and authors attributes. Each book has one title but can have many authors. The multi-valued attribute is a set; duplicate values are not allowed.

" }, "AttributeValueList":{ "type":"list", "member":{"shape":"AttributeValue"} }, "AttributeValueUpdate":{ "type":"structure", "members":{ "Value":{"shape":"AttributeValue"}, "Action":{ "shape":"AttributeAction", "documentation":"

Specifies how to perform the update. Valid values are PUT (default), DELETE, and ADD. The behavior depends on whether the specified primary key already exists in the table.

If an item with the specified Key is found in the table:

If no item with the specified Key is found:

" } }, "documentation":"

For the UpdateItem operation, represents the attributes to be modified, the action to perform on each, and the new value for each.

Attribute values cannot be null; string and binary type attributes must have lengths greater than zero; and set type attributes must not be empty. Requests with empty values will be rejected with a ValidationException exception.

" }, "BatchGetItemInput":{ "type":"structure", "required":["RequestItems"], "members":{ "RequestItems":{ "shape":"BatchGetRequestMap", "documentation":"

A map of one or more table names and, for each table, the corresponding primary keys for the items to retrieve. Each table name can be invoked only once.

Each element in the map consists of the following:

" }, "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"} }, "documentation":"

Represents the input of a BatchGetItem operation.

" }, "BatchGetItemOutput":{ "type":"structure", "members":{ "Responses":{ "shape":"BatchGetResponseMap", "documentation":"

A map of table name to a list of items. Each object in Responses consists of a table name, along with a map of attribute data consisting of the data type and attribute value.

" }, "UnprocessedKeys":{ "shape":"BatchGetRequestMap", "documentation":"

A map of tables and their respective keys that were not processed with the current response. The UnprocessedKeys value is in the same form as RequestItems, so the value can be provided directly to a subsequent BatchGetItem operation. For more information, see RequestItems in the Request Parameters section.

Each element consists of:

If there are no unprocessed keys remaining, the response contains an empty UnprocessedKeys map.

" }, "ConsumedCapacity":{ "shape":"ConsumedCapacityMultiple", "documentation":"

The write capacity units consumed by the operation.

Each element consists of:

" } }, "documentation":"

Represents the output of a BatchGetItem operation.

" }, "BatchGetRequestMap":{ "type":"map", "key":{"shape":"TableName"}, "value":{"shape":"KeysAndAttributes"}, "min":1, "max":100 }, "BatchGetResponseMap":{ "type":"map", "key":{"shape":"TableName"}, "value":{"shape":"ItemList"} }, "BatchWriteItemInput":{ "type":"structure", "required":["RequestItems"], "members":{ "RequestItems":{ "shape":"BatchWriteItemRequestMap", "documentation":"

A map of one or more table names and, for each table, a list of operations to be performed (DeleteRequest or PutRequest). Each element in the map consists of the following:

" }, "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}, "ReturnItemCollectionMetrics":{ "shape":"ReturnItemCollectionMetrics", "documentation":"

A value that if set to SIZE, the response includes statistics about item collections, if any, that were modified during the operation are returned in the response. If set to NONE (the default), no statistics are returned.

" } }, "documentation":"

Represents the input of a BatchWriteItem operation.

" }, "BatchWriteItemOutput":{ "type":"structure", "members":{ "UnprocessedItems":{ "shape":"BatchWriteItemRequestMap", "documentation":"

A map of tables and requests against those tables that were not processed. The UnprocessedItems value is in the same form as RequestItems, so you can provide this value directly to a subsequent BatchGetItem operation. For more information, see RequestItems in the Request Parameters section.

Each UnprocessedItems entry consists of a table name and, for that table, a list of operations to perform (DeleteRequest or PutRequest).

If there are no unprocessed items remaining, the response contains an empty UnprocessedItems map.

" }, "ItemCollectionMetrics":{ "shape":"ItemCollectionMetricsPerTable", "documentation":"

A list of tables that were processed by BatchWriteItem and, for each table, information about any item collections that were affected by individual DeleteItem or PutItem operations.

Each entry consists of the following subelements:

" }, "ConsumedCapacity":{ "shape":"ConsumedCapacityMultiple", "documentation":"

The capacity units consumed by the operation.

Each element consists of:

" } }, "documentation":"

Represents the output of a BatchWriteItem operation.

" }, "BatchWriteItemRequestMap":{ "type":"map", "key":{"shape":"TableName"}, "value":{"shape":"WriteRequests"}, "min":1, "max":25 }, "BinaryAttributeValue":{"type":"blob"}, "BinarySetAttributeValue":{ "type":"list", "member":{"shape":"BinaryAttributeValue"} }, "BooleanAttributeValue":{"type":"boolean"}, "BooleanObject":{"type":"boolean"}, "Capacity":{ "type":"structure", "members":{ "CapacityUnits":{ "shape":"ConsumedCapacityUnits", "documentation":"

The total number of capacity units consumed on a table or an index.

" } }, "documentation":"

Represents the amount of provisioned throughput capacity consumed on a table or an index.

" }, "ComparisonOperator":{ "type":"string", "enum":[ "EQ", "NE", "IN", "LE", "LT", "GE", "GT", "BETWEEN", "NOT_NULL", "NULL", "CONTAINS", "NOT_CONTAINS", "BEGINS_WITH" ] }, "Condition":{ "type":"structure", "required":["ComparisonOperator"], "members":{ "AttributeValueList":{ "shape":"AttributeValueList", "documentation":"

One or more values to evaluate against the supplied attribute. The number of values in the list depends on the ComparisonOperator being used.

For type Number, value comparisons are numeric.

String value comparisons for greater than, equals, or less than are based on ASCII character code values. For example, a is greater than A, and aa is greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.

For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values, for example when evaluating query expressions.

" }, "ComparisonOperator":{ "shape":"ComparisonOperator", "documentation":"

A comparator for evaluating attributes. For example, equals, greater than, less than, etc.

The following comparison operators are available:

EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN

The following are descriptions of each comparison operator.

For usage examples of AttributeValueList and ComparisonOperator, see Legacy Conditional Parameters in the Amazon DynamoDB Developer Guide.

" } }, "documentation":"

Represents the selection criteria for a Query or Scan operation:

" }, "ConditionExpression":{"type":"string"}, "ConditionalCheckFailedException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

The conditional request failed.

" } }, "exception":true, "documentation":"

A condition specified in the operation could not be evaluated.

" }, "ConditionalOperator":{ "type":"string", "enum":[ "AND", "OR" ] }, "ConsistentRead":{"type":"boolean"}, "ConsumedCapacity":{ "type":"structure", "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table that was affected by the operation.

" }, "CapacityUnits":{ "shape":"ConsumedCapacityUnits", "documentation":"

The total number of capacity units consumed by the operation.

" }, "Table":{ "shape":"Capacity", "documentation":"

The amount of throughput consumed on the table affected by the operation.

" }, "LocalSecondaryIndexes":{ "shape":"SecondaryIndexesCapacityMap", "documentation":"

The amount of throughput consumed on each local index affected by the operation.

" }, "GlobalSecondaryIndexes":{ "shape":"SecondaryIndexesCapacityMap", "documentation":"

The amount of throughput consumed on each global index affected by the operation.

" } }, "documentation":"

The capacity units consumed by an operation. The data returned includes the total provisioned throughput consumed, along with statistics for the table and any indexes involved in the operation. ConsumedCapacity is only returned if the request asked for it. For more information, see Provisioned Throughput in the Amazon DynamoDB Developer Guide.

" }, "ConsumedCapacityMultiple":{ "type":"list", "member":{"shape":"ConsumedCapacity"} }, "ConsumedCapacityUnits":{"type":"double"}, "CreateTableInput":{ "type":"structure", "required":[ "AttributeDefinitions", "TableName", "KeySchema", "ProvisionedThroughput" ], "members":{ "AttributeDefinitions":{ "shape":"AttributeDefinitions", "documentation":"

An array of attributes that describe the key schema for the table and indexes.

" }, "TableName":{ "shape":"TableName", "documentation":"

The name of the table to create.

" }, "KeySchema":{ "shape":"KeySchema", "documentation":"

Specifies the attributes that make up the primary key for a table or an index. The attributes in KeySchema must also be defined in the AttributeDefinitions array. For more information, see Data Model in the Amazon DynamoDB Developer Guide.

Each KeySchemaElement in the array is composed of:

For a primary key that consists of a hash attribute, you must specify exactly one element with a KeyType of HASH.

For a primary key that consists of hash and range attributes, you must specify exactly two elements, in this order: The first element must have a KeyType of HASH, and the second element must have a KeyType of RANGE.

For more information, see Specifying the Primary Key in the Amazon DynamoDB Developer Guide.

" }, "LocalSecondaryIndexes":{ "shape":"LocalSecondaryIndexList", "documentation":"

One or more local secondary indexes (the maximum is five) to be created on the table. Each index is scoped to a given hash key value. There is a 10 GB size limit per hash key; otherwise, the size of a local secondary index is unconstrained.

Each local secondary index in the array includes the following:

" }, "GlobalSecondaryIndexes":{ "shape":"GlobalSecondaryIndexList", "documentation":"

One or more global secondary indexes (the maximum is five) to be created on the table. Each global secondary index in the array includes the following:

" }, "ProvisionedThroughput":{"shape":"ProvisionedThroughput"} }, "documentation":"

Represents the input of a CreateTable operation.

" }, "CreateTableOutput":{ "type":"structure", "members":{ "TableDescription":{"shape":"TableDescription"} }, "documentation":"

Represents the output of a CreateTable operation.

" }, "Date":{"type":"timestamp"}, "DeleteItemInput":{ "type":"structure", "required":[ "TableName", "Key" ], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table from which to delete the item.

" }, "Key":{ "shape":"Key", "documentation":"

A map of attribute names to AttributeValue objects, representing the primary key of the item to delete.

For the primary key, you must provide all of the attributes. For example, with a hash type primary key, you only need to specify the hash attribute. For a hash-and-range type primary key, you must specify both the hash attribute and the range attribute.

" }, "Expected":{ "shape":"ExpectedAttributeMap", "documentation":"

There is a newer parameter available. Use ConditionExpression instead. Note that if you use Expected and ConditionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A map of attribute/condition pairs. Expected provides a conditional block for the DeleteItem operation.

Each element of Expected consists of an attribute name, a comparison operator, and one or more values. DynamoDB compares the attribute with the value(s) you supplied, using the comparison operator. For each Expected element, the result of the evaluation is either true or false.

If you specify more than one element in the Expected map, then by default all of the conditions must evaluate to true. In other words, the conditions are ANDed together. (You can use the ConditionalOperator parameter to OR the conditions instead. If you do this, then at least one of the conditions must evaluate to true, rather than all of them.)

If the Expected map evaluates to true, then the conditional operation succeeds; otherwise, it fails.

Expected contains the following:

For usage examples of AttributeValueList and ComparisonOperator, see Legacy Conditional Parameters in the Amazon DynamoDB Developer Guide.

For backward compatibility with previous DynamoDB releases, the following parameters can be used instead of AttributeValueList and ComparisonOperator:

The Value and Exists parameters are incompatible with AttributeValueList and ComparisonOperator. Note that if you use both sets of parameters at once, DynamoDB will return a ValidationException exception.

" }, "ConditionalOperator":{ "shape":"ConditionalOperator", "documentation":"

There is a newer parameter available. Use ConditionExpression instead. Note that if you use ConditionalOperator and ConditionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A logical operator to apply to the conditions in the Expected map:

If you omit ConditionalOperator, then AND is the default.

The operation will succeed only if the entire map evaluates to true.

" }, "ReturnValues":{ "shape":"ReturnValue", "documentation":"

Use ReturnValues if you want to get the item attributes as they appeared before they were deleted. For DeleteItem, the valid values are:

" }, "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}, "ReturnItemCollectionMetrics":{ "shape":"ReturnItemCollectionMetrics", "documentation":"

A value that if set to SIZE, the response includes statistics about item collections, if any, that were modified during the operation are returned in the response. If set to NONE (the default), no statistics are returned.

" }, "ConditionExpression":{ "shape":"ConditionExpression", "documentation":"

A condition that must be satisfied in order for a conditional DeleteItem to succeed.

An expression can contain any of the following:

" }, "ExpressionAttributeNames":{ "shape":"ExpressionAttributeNameMap", "documentation":"

One or more substitution tokens for simplifying complex expressions. The following are some use cases for an ExpressionAttributeNames value:

Use the # character in an expression to dereference an attribute name. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeNames:

The expression can now be simplified as follows:

" }, "ExpressionAttributeValues":{ "shape":"ExpressionAttributeValueMap", "documentation":"

One or more values that can be substituted in an expression.

Use the : character in an expression to dereference an attribute value. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeValues:

The expression can now be simplified as follows:

" } }, "documentation":"

Represents the input of a DeleteItem operation.

" }, "DeleteItemOutput":{ "type":"structure", "members":{ "Attributes":{ "shape":"AttributeMap", "documentation":"

A map of attribute names to AttributeValue objects, representing the item as it appeared before the DeleteItem operation. This map appears in the response only if ReturnValues was specified as ALL_OLD in the request.

" }, "ConsumedCapacity":{"shape":"ConsumedCapacity"}, "ItemCollectionMetrics":{ "shape":"ItemCollectionMetrics", "documentation":"

Information about item collections, if any, that were affected by the operation. ItemCollectionMetrics is only returned if the request asked for it. If the table does not have any local secondary indexes, this information is not returned in the response.

Each ItemCollectionMetrics element consists of:

" } }, "documentation":"

Represents the output of a DeleteItem operation.

" }, "DeleteRequest":{ "type":"structure", "required":["Key"], "members":{ "Key":{ "shape":"Key", "documentation":"

A map of attribute name to attribute values, representing the primary key of the item to delete. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema.

" } }, "documentation":"

Represents a request to perform a DeleteItem operation on an item.

" }, "DeleteTableInput":{ "type":"structure", "required":["TableName"], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table to delete.

" } }, "documentation":"

Represents the input of a DeleteTable operation.

" }, "DeleteTableOutput":{ "type":"structure", "members":{ "TableDescription":{"shape":"TableDescription"} }, "documentation":"

Represents the output of a DeleteTable operation.

" }, "DescribeTableInput":{ "type":"structure", "required":["TableName"], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table to describe.

" } }, "documentation":"

Represents the input of a DescribeTable operation.

" }, "DescribeTableOutput":{ "type":"structure", "members":{ "Table":{"shape":"TableDescription"} }, "documentation":"

Represents the output of a DescribeTable operation.

" }, "ErrorMessage":{"type":"string"}, "ExpectedAttributeMap":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"ExpectedAttributeValue"} }, "ExpectedAttributeValue":{ "type":"structure", "members":{ "Value":{"shape":"AttributeValue"}, "Exists":{ "shape":"BooleanObject", "documentation":"

Causes DynamoDB to evaluate the value before attempting a conditional operation:

The default setting for Exists is true. If you supply a Value all by itself, DynamoDB assumes the attribute exists: You don't have to set Exists to true, because it is implied.

DynamoDB returns a ValidationException if:

" }, "ComparisonOperator":{ "shape":"ComparisonOperator", "documentation":"

A comparator for evaluating attributes in the AttributeValueList. For example, equals, greater than, less than, etc.

The following comparison operators are available:

EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN

The following are descriptions of each comparison operator.

" }, "AttributeValueList":{ "shape":"AttributeValueList", "documentation":"

One or more values to evaluate against the supplied attribute. The number of values in the list depends on the ComparisonOperator being used.

For type Number, value comparisons are numeric.

String value comparisons for greater than, equals, or less than are based on ASCII character code values. For example, a is greater than A, and aa is greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.

For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values, for example when evaluating query expressions.

For information on specifying data types in JSON, see JSON Data Format in the Amazon DynamoDB Developer Guide.

" } }, "documentation":"

Represents a condition to be compared with an attribute value. This condition can be used with DeleteItem, PutItem or UpdateItem operations; if the comparison evaluates to true, the operation succeeds; if not, the operation fails. You can use ExpectedAttributeValue in one of two different ways:

Value and Exists are incompatible with AttributeValueList and ComparisonOperator. Note that if you use both sets of parameters at once, DynamoDB will return a ValidationException exception.

" }, "ExpressionAttributeNameMap":{ "type":"map", "key":{"shape":"ExpressionAttributeNameVariable"}, "value":{"shape":"AttributeName"} }, "ExpressionAttributeNameVariable":{"type":"string"}, "ExpressionAttributeValueMap":{ "type":"map", "key":{"shape":"ExpressionAttributeValueVariable"}, "value":{"shape":"AttributeValue"} }, "ExpressionAttributeValueVariable":{"type":"string"}, "FilterConditionMap":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"Condition"} }, "GetItemInput":{ "type":"structure", "required":[ "TableName", "Key" ], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table containing the requested item.

" }, "Key":{ "shape":"Key", "documentation":"

A map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve.

For the primary key, you must provide all of the attributes. For example, with a hash type primary key, you only need to specify the hash attribute. For a hash-and-range type primary key, you must specify both the hash attribute and the range attribute.

" }, "AttributesToGet":{ "shape":"AttributeNameList", "documentation":"

There is a newer parameter available. Use ProjectionExpression instead. Note that if you use AttributesToGet and ProjectionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter allows you to retrieve lists or maps; however, it cannot retrieve individual list or map elements.

The names of one or more attributes to retrieve. If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result.

Note that AttributesToGet has no effect on provisioned throughput consumption. DynamoDB determines capacity units consumed based on item size, not on the amount of data that is returned to an application.

" }, "ConsistentRead":{ "shape":"ConsistentRead", "documentation":"

A value that if set to true, then the operation uses strongly consistent reads; otherwise, eventually consistent reads are used.

" }, "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}, "ProjectionExpression":{ "shape":"ProjectionExpression", "documentation":"

One or more attributes to retrieve from the table. These attributes can include scalars, sets, or elements of a JSON document. The attributes in the expression must be separated by commas.

If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result.

" }, "ExpressionAttributeNames":{ "shape":"ExpressionAttributeNameMap", "documentation":"

One or more substitution tokens for simplifying complex expressions. The following are some use cases for an ExpressionAttributeNames value:

Use the # character in an expression to dereference an attribute name. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeNames:

The expression can now be simplified as follows:

" } }, "documentation":"

Represents the input of a GetItem operation.

" }, "GetItemOutput":{ "type":"structure", "members":{ "Item":{ "shape":"AttributeMap", "documentation":"

A map of attribute names to AttributeValue objects, as specified by AttributesToGet.

" }, "ConsumedCapacity":{"shape":"ConsumedCapacity"} }, "documentation":"

Represents the output of a GetItem operation.

" }, "GlobalSecondaryIndex":{ "type":"structure", "required":[ "IndexName", "KeySchema", "Projection", "ProvisionedThroughput" ], "members":{ "IndexName":{ "shape":"IndexName", "documentation":"

The name of the global secondary index. The name must be unique among all other indexes on this table.

" }, "KeySchema":{ "shape":"KeySchema", "documentation":"

The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types (HASH or RANGE).

" }, "Projection":{"shape":"Projection"}, "ProvisionedThroughput":{"shape":"ProvisionedThroughput"} }, "documentation":"

Represents a global secondary index.

" }, "GlobalSecondaryIndexDescription":{ "type":"structure", "members":{ "IndexName":{ "shape":"IndexName", "documentation":"

The name of the global secondary index.

" }, "KeySchema":{ "shape":"KeySchema", "documentation":"

The complete key schema for the global secondary index, consisting of one or more pairs of attribute names and key types (HASH or RANGE).

" }, "Projection":{"shape":"Projection"}, "IndexStatus":{ "shape":"IndexStatus", "documentation":"

The current state of the global secondary index:

" }, "ProvisionedThroughput":{"shape":"ProvisionedThroughputDescription"}, "IndexSizeBytes":{ "shape":"Long", "documentation":"

The total size of the specified index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.

" }, "ItemCount":{ "shape":"Long", "documentation":"

The number of items in the specified index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.

" } }, "documentation":"

Represents the properties of a global secondary index.

" }, "GlobalSecondaryIndexDescriptionList":{ "type":"list", "member":{"shape":"GlobalSecondaryIndexDescription"} }, "GlobalSecondaryIndexList":{ "type":"list", "member":{"shape":"GlobalSecondaryIndex"} }, "GlobalSecondaryIndexUpdate":{ "type":"structure", "members":{ "Update":{ "shape":"UpdateGlobalSecondaryIndexAction", "documentation":"

The name of a global secondary index, along with the updated provisioned throughput settings that are to be applied to that index.

" } }, "documentation":"

Represents the new provisioned throughput settings to apply to a global secondary index.

" }, "GlobalSecondaryIndexUpdateList":{ "type":"list", "member":{"shape":"GlobalSecondaryIndexUpdate"} }, "IndexName":{ "type":"string", "min":3, "max":255, "pattern":"[a-zA-Z0-9_.-]+" }, "IndexStatus":{ "type":"string", "enum":[ "CREATING", "UPDATING", "DELETING", "ACTIVE" ] }, "Integer":{"type":"integer"}, "InternalServerError":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

The server encountered an internal error trying to fulfill the request.

" } }, "exception":true, "fault":true, "documentation":"

An error occurred on the server side.

" }, "ItemCollectionKeyAttributeMap":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, "ItemCollectionMetrics":{ "type":"structure", "members":{ "ItemCollectionKey":{ "shape":"ItemCollectionKeyAttributeMap", "documentation":"

The hash key value of the item collection. This value is the same as the hash key of the item.

" }, "SizeEstimateRangeGB":{ "shape":"ItemCollectionSizeEstimateRange", "documentation":"

An estimate of item collection size, in gigabytes. This value is a two-element array containing a lower bound and an upper bound for the estimate. The estimate includes the size of all the items in the table, plus the size of all attributes projected into all of the local secondary indexes on that table. Use this estimate to measure whether a local secondary index is approaching its size limit.

The estimate is subject to change over time; therefore, do not rely on the precision or accuracy of the estimate.

" } }, "documentation":"

Information about item collections, if any, that were affected by the operation. ItemCollectionMetrics is only returned if the request asked for it. If the table does not have any local secondary indexes, this information is not returned in the response.

" }, "ItemCollectionMetricsMultiple":{ "type":"list", "member":{"shape":"ItemCollectionMetrics"} }, "ItemCollectionMetricsPerTable":{ "type":"map", "key":{"shape":"TableName"}, "value":{"shape":"ItemCollectionMetricsMultiple"} }, "ItemCollectionSizeEstimateBound":{"type":"double"}, "ItemCollectionSizeEstimateRange":{ "type":"list", "member":{"shape":"ItemCollectionSizeEstimateBound"} }, "ItemCollectionSizeLimitExceededException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

The total size of an item collection has exceeded the maximum limit of 10 gigabytes.

" } }, "exception":true, "documentation":"

An item collection is too large. This exception is only returned for tables that have one or more local secondary indexes.

" }, "ItemList":{ "type":"list", "member":{"shape":"AttributeMap"} }, "Key":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, "KeyConditions":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"Condition"} }, "KeyList":{ "type":"list", "member":{"shape":"Key"}, "min":1, "max":100 }, "KeySchema":{ "type":"list", "member":{"shape":"KeySchemaElement"}, "min":1, "max":2 }, "KeySchemaAttributeName":{ "type":"string", "min":1, "max":255 }, "KeySchemaElement":{ "type":"structure", "required":[ "AttributeName", "KeyType" ], "members":{ "AttributeName":{ "shape":"KeySchemaAttributeName", "documentation":"

The name of a key attribute.

" }, "KeyType":{ "shape":"KeyType", "documentation":"

The attribute data, consisting of the data type and the attribute value itself.

" } }, "documentation":"

Represents a single element of a key schema. A key schema specifies the attributes that make up the primary key of a table, or the key attributes of an index.

A KeySchemaElement represents exactly one attribute of the primary key. For example, a hash type primary key would be represented by one KeySchemaElement. A hash-and-range type primary key would require one KeySchemaElement for the hash attribute, and another KeySchemaElement for the range attribute.

" }, "KeyType":{ "type":"string", "enum":[ "HASH", "RANGE" ] }, "KeysAndAttributes":{ "type":"structure", "required":["Keys"], "members":{ "Keys":{ "shape":"KeyList", "documentation":"

The primary key attribute values that define the items and the attributes associated with the items.

" }, "AttributesToGet":{ "shape":"AttributeNameList", "documentation":"

One or more attributes to retrieve from the table or index. If no attribute names are specified then all attributes will be returned. If any of the specified attributes are not found, they will not appear in the result.

" }, "ConsistentRead":{ "shape":"ConsistentRead", "documentation":"

The consistency of a read operation. If set to true, then a strongly consistent read is used; otherwise, an eventually consistent read is used.

" }, "ProjectionExpression":{ "shape":"ProjectionExpression", "documentation":"

One or more attributes to retrieve from the table. These attributes can include scalars, sets, or elements of a JSON document. The attributes in the expression must be separated by commas.

If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result.

" }, "ExpressionAttributeNames":{ "shape":"ExpressionAttributeNameMap", "documentation":"

One or more substitution tokens for simplifying complex expressions. The following are some use cases for an ExpressionAttributeNames value:

Use the # character in an expression to dereference an attribute name. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeNames:

The expression can now be simplified as follows:

" } }, "documentation":"

Represents a set of primary keys and, for each key, the attributes to retrieve from the table.

For each primary key, you must provide all of the key attributes. For example, with a hash type primary key, you only need to specify the hash attribute. For a hash-and-range type primary key, you must specify both the hash attribute and the range attribute.

" }, "LimitExceededException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

Too many operations for a given subscriber.

" } }, "exception":true, "documentation":"

The number of concurrent table requests (cumulative number of tables in the CREATING, DELETING or UPDATING state) exceeds the maximum allowed of 10.

Also, for tables with secondary indexes, only one of those tables can be in the CREATING state at any point in time. Do not attempt to create more than one such table simultaneously.

The total limit of tables in the ACTIVE state is 250.

" }, "ListAttributeValue":{ "type":"list", "member":{"shape":"AttributeValue"} }, "ListTablesInput":{ "type":"structure", "members":{ "ExclusiveStartTableName":{ "shape":"TableName", "documentation":"

The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.

" }, "Limit":{ "shape":"ListTablesInputLimit", "documentation":"

A maximum number of table names to return. If this parameter is not specified, the limit is 100.

" } }, "documentation":"

Represents the input of a ListTables operation.

" }, "ListTablesInputLimit":{ "type":"integer", "min":1, "max":100 }, "ListTablesOutput":{ "type":"structure", "members":{ "TableNames":{ "shape":"TableNameList", "documentation":"

The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.

If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.

" }, "LastEvaluatedTableName":{ "shape":"TableName", "documentation":"

The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName in a new request to obtain the next page of results, until all the table names are returned.

If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.

" } }, "documentation":"

Represents the output of a ListTables operation.

" }, "LocalSecondaryIndex":{ "type":"structure", "required":[ "IndexName", "KeySchema", "Projection" ], "members":{ "IndexName":{ "shape":"IndexName", "documentation":"

The name of the local secondary index. The name must be unique among all other indexes on this table.

" }, "KeySchema":{ "shape":"KeySchema", "documentation":"

The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types (HASH or RANGE).

" }, "Projection":{"shape":"Projection"} }, "documentation":"

Represents a local secondary index.

" }, "LocalSecondaryIndexDescription":{ "type":"structure", "members":{ "IndexName":{ "shape":"IndexName", "documentation":"

Represents the name of the local secondary index.

" }, "KeySchema":{ "shape":"KeySchema", "documentation":"

The complete index key schema, which consists of one or more pairs of attribute names and key types (HASH or RANGE).

" }, "Projection":{"shape":"Projection"}, "IndexSizeBytes":{ "shape":"Long", "documentation":"

The total size of the specified index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.

" }, "ItemCount":{ "shape":"Long", "documentation":"

The number of items in the specified index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.

" } }, "documentation":"

Represents the properties of a local secondary index.

" }, "LocalSecondaryIndexDescriptionList":{ "type":"list", "member":{"shape":"LocalSecondaryIndexDescription"} }, "LocalSecondaryIndexList":{ "type":"list", "member":{"shape":"LocalSecondaryIndex"} }, "Long":{"type":"long"}, "MapAttributeValue":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, "NonKeyAttributeName":{ "type":"string", "min":1, "max":255 }, "NonKeyAttributeNameList":{ "type":"list", "member":{"shape":"NonKeyAttributeName"}, "min":1, "max":20 }, "NullAttributeValue":{"type":"boolean"}, "NumberAttributeValue":{"type":"string"}, "NumberSetAttributeValue":{ "type":"list", "member":{"shape":"NumberAttributeValue"} }, "PositiveIntegerObject":{ "type":"integer", "min":1 }, "PositiveLongObject":{ "type":"long", "min":1 }, "Projection":{ "type":"structure", "members":{ "ProjectionType":{ "shape":"ProjectionType", "documentation":"

The set of attributes that are projected into the index:

" }, "NonKeyAttributes":{ "shape":"NonKeyAttributeNameList", "documentation":"

Represents the non-key attribute names which will be projected into the index.

For local secondary indexes, the total count of NonKeyAttributes summed across all of the local secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.

" } }, "documentation":"

Represents attributes that are copied (projected) from the table into an index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.

" }, "ProjectionExpression":{"type":"string"}, "ProjectionType":{ "type":"string", "enum":[ "ALL", "KEYS_ONLY", "INCLUDE" ] }, "ProvisionedThroughput":{ "type":"structure", "required":[ "ReadCapacityUnits", "WriteCapacityUnits" ], "members":{ "ReadCapacityUnits":{ "shape":"PositiveLongObject", "documentation":"

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

" }, "WriteCapacityUnits":{ "shape":"PositiveLongObject", "documentation":"

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

" } }, "documentation":"

Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.

" }, "ProvisionedThroughputDescription":{ "type":"structure", "members":{ "LastIncreaseDateTime":{ "shape":"Date", "documentation":"

The date and time of the last provisioned throughput increase for this table.

" }, "LastDecreaseDateTime":{ "shape":"Date", "documentation":"

The date and time of the last provisioned throughput decrease for this table.

" }, "NumberOfDecreasesToday":{ "shape":"PositiveLongObject", "documentation":"

The number of provisioned throughput decreases for this table during this UTC calendar day. For current maximums on provisioned throughput decreases, see Limits in the Amazon DynamoDB Developer Guide.

" }, "ReadCapacityUnits":{ "shape":"PositiveLongObject", "documentation":"

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. Eventually consistent reads require less effort than strongly consistent reads, so a setting of 50 ReadCapacityUnits per second provides 100 eventually consistent ReadCapacityUnits per second.

" }, "WriteCapacityUnits":{ "shape":"PositiveLongObject", "documentation":"

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.

" } }, "documentation":"

Represents the provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.

" }, "ProvisionedThroughputExceededException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

You exceeded your maximum allowed provisioned throughput.

" } }, "exception":true, "documentation":"

The request rate is too high, or the request is too large, for the available throughput to accommodate. The AWS SDKs automatically retry requests that receive this exception; therefore, your request will eventually succeed, unless the request is too large or your retry queue is too large to finish. Reduce the frequency of requests by using the strategies listed in Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

" }, "PutItemInput":{ "type":"structure", "required":[ "TableName", "Item" ], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table to contain the item.

" }, "Item":{ "shape":"PutItemInputAttributeMap", "documentation":"

A map of attribute name/value pairs, one for each attribute. Only the primary key attributes are required; you can optionally provide other attribute name-value pairs for the item.

You must provide all of the attributes for the primary key. For example, with a hash type primary key, you only need to specify the hash attribute. For a hash-and-range type primary key, you must specify both the hash attribute and the range attribute.

If you specify any attributes that are part of an index key, then the data types for those attributes must match those of the schema in the table's attribute definition.

For more information about primary keys, see Primary Key in the Amazon DynamoDB Developer Guide.

Each element in the Item map is an AttributeValue object.

" }, "Expected":{ "shape":"ExpectedAttributeMap", "documentation":"

There is a newer parameter available. Use ConditionExpression instead. Note that if you use Expected and ConditionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A map of attribute/condition pairs. Expected provides a conditional block for the PutItem operation.

Each element of Expected consists of an attribute name, a comparison operator, and one or more values. DynamoDB compares the attribute with the value(s) you supplied, using the comparison operator. For each Expected element, the result of the evaluation is either true or false.

If you specify more than one element in the Expected map, then by default all of the conditions must evaluate to true. In other words, the conditions are ANDed together. (You can use the ConditionalOperator parameter to OR the conditions instead. If you do this, then at least one of the conditions must evaluate to true, rather than all of them.)

If the Expected map evaluates to true, then the conditional operation succeeds; otherwise, it fails.

Expected contains the following:

For usage examples of AttributeValueList and ComparisonOperator, see Legacy Conditional Parameters in the Amazon DynamoDB Developer Guide.

For backward compatibility with previous DynamoDB releases, the following parameters can be used instead of AttributeValueList and ComparisonOperator:

The Value and Exists parameters are incompatible with AttributeValueList and ComparisonOperator. Note that if you use both sets of parameters at once, DynamoDB will return a ValidationException exception.

" }, "ReturnValues":{ "shape":"ReturnValue", "documentation":"

Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request. For PutItem, the valid values are:

" }, "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}, "ReturnItemCollectionMetrics":{ "shape":"ReturnItemCollectionMetrics", "documentation":"

A value that if set to SIZE, the response includes statistics about item collections, if any, that were modified during the operation are returned in the response. If set to NONE (the default), no statistics are returned.

" }, "ConditionalOperator":{ "shape":"ConditionalOperator", "documentation":"

There is a newer parameter available. Use ConditionExpression instead. Note that if you use ConditionalOperator and ConditionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A logical operator to apply to the conditions in the Expected map:

If you omit ConditionalOperator, then AND is the default.

The operation will succeed only if the entire map evaluates to true.

" }, "ConditionExpression":{ "shape":"ConditionExpression", "documentation":"

A condition that must be satisfied in order for a conditional PutItem operation to succeed.

An expression can contain any of the following:

" }, "ExpressionAttributeNames":{ "shape":"ExpressionAttributeNameMap", "documentation":"

One or more substitution tokens for simplifying complex expressions. The following are some use cases for an ExpressionAttributeNames value:

Use the # character in an expression to dereference an attribute name. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeNames:

The expression can now be simplified as follows:

" }, "ExpressionAttributeValues":{ "shape":"ExpressionAttributeValueMap", "documentation":"

One or more values that can be substituted in an expression.

Use the : character in an expression to dereference an attribute value. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeValues:

The expression can now be simplified as follows:

" } }, "documentation":"

Represents the input of a PutItem operation.

" }, "PutItemInputAttributeMap":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, "PutItemOutput":{ "type":"structure", "members":{ "Attributes":{ "shape":"AttributeMap", "documentation":"

The attribute values as they appeared before the PutItem operation, but only if ReturnValues is specified as ALL_OLD in the request. Each element consists of an attribute name and an attribute value.

" }, "ConsumedCapacity":{"shape":"ConsumedCapacity"}, "ItemCollectionMetrics":{ "shape":"ItemCollectionMetrics", "documentation":"

Information about item collections, if any, that were affected by the operation. ItemCollectionMetrics is only returned if the request asked for it. If the table does not have any local secondary indexes, this information is not returned in the response.

Each ItemCollectionMetrics element consists of:

" } }, "documentation":"

Represents the output of a PutItem operation.

" }, "PutRequest":{ "type":"structure", "required":["Item"], "members":{ "Item":{ "shape":"PutItemInputAttributeMap", "documentation":"

A map of attribute name to attribute values, representing the primary key of an item to be processed by PutItem. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item which are part of an index key schema for the table, their types must match the index key schema.

" } }, "documentation":"

Represents a request to perform a PutItem operation on an item.

" }, "QueryInput":{ "type":"structure", "required":[ "TableName", "KeyConditions" ], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table containing the requested items.

" }, "IndexName":{ "shape":"IndexName", "documentation":"

The name of an index to query. This index can be any local secondary index or global secondary index on the table.

" }, "Select":{ "shape":"Select", "documentation":"

The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index.

If neither Select nor AttributesToGet are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and AttributesToGet together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying AttributesToGet without any value for Select.)

" }, "AttributesToGet":{ "shape":"AttributeNameList", "documentation":"

There is a newer parameter available. Use ProjectionExpression instead. Note that if you use AttributesToGet and ProjectionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter allows you to retrieve lists or maps; however, it cannot retrieve individual list or map elements.

The names of one or more attributes to retrieve. If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result.

Note that AttributesToGet has no effect on provisioned throughput consumption. DynamoDB determines capacity units consumed based on item size, not on the amount of data that is returned to an application.

You cannot use both AttributesToGet and Select together in a Query request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying AttributesToGet without any value for Select.)

If you query a local secondary index and request only attributes that are projected into that index, the operation will read only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB will fetch each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency.

If you query a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table.

" }, "Limit":{ "shape":"PositiveIntegerObject", "documentation":"

The maximum number of items to evaluate (not necessarily the number of matching items). If DynamoDB processes the number of items up to the limit while processing the results, it stops the operation and returns the matching values up to that point, and a key in LastEvaluatedKey to apply in a subsequent operation, so that you can pick up where you left off. Also, if the processed data set size exceeds 1 MB before DynamoDB reaches this limit, it stops the operation and returns the matching values up to the limit, and a key in LastEvaluatedKey to apply in a subsequent operation to continue the operation. For more information, see Query and Scan in the Amazon DynamoDB Developer Guide.

" }, "ConsistentRead":{ "shape":"ConsistentRead", "documentation":"

A value that if set to true, then the operation uses strongly consistent reads; otherwise, eventually consistent reads are used.

Strongly consistent reads are not supported on global secondary indexes. If you query a global secondary index with ConsistentRead set to true, you will receive an error message.

" }, "KeyConditions":{ "shape":"KeyConditions", "documentation":"

The selection criteria for the query. For a query on a table, you can have conditions only on the table primary key attributes. You must specify the hash key attribute name and value as an EQ condition. You can optionally specify a second condition, referring to the range key attribute.

For a query on an index, you can have conditions only on the index key attributes. You must specify the index hash attribute name and value as an EQ condition. You can optionally specify a second condition, referring to the index key range attribute.

Each KeyConditions element consists of an attribute name to compare, along with the following:

For usage examples of AttributeValueList and ComparisonOperator, see Legacy Conditional Parameters in the Amazon DynamoDB Developer Guide.

" }, "QueryFilter":{ "shape":"FilterConditionMap", "documentation":"

There is a newer parameter available. Use FilterExpression instead. Note that if you use QueryFilter and FilterExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A condition that evaluates the query results and returns only the desired values.

If you specify more than one condition in the QueryFilter map, then by default all of the conditions must evaluate to true. In other words, the conditions are ANDed together. (You can use the ConditionalOperator parameter to OR the conditions instead. If you do this, then at least one of the conditions must evaluate to true, rather than all of them.)

Each QueryFilter element consists of an attribute name to compare, along with the following:

" }, "ConditionalOperator":{ "shape":"ConditionalOperator", "documentation":"

There is a newer parameter available. Use ConditionExpression instead. Note that if you use ConditionalOperator and ConditionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A logical operator to apply to the conditions in the QueryFilter map:

If you omit ConditionalOperator, then AND is the default.

The operation will succeed only if the entire map evaluates to true.

" }, "ScanIndexForward":{ "shape":"BooleanObject", "documentation":"

A value that specifies ascending (true) or descending (false) traversal of the index. DynamoDB returns results reflecting the requested order determined by the range key. If the data type is Number, the results are returned in numeric order. For type String, the results are returned in order of ASCII character code values. For type Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values.

If ScanIndexForward is not specified, the results are returned in ascending order.

" }, "ExclusiveStartKey":{ "shape":"Key", "documentation":"

The primary key of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedKey in the previous operation.

The data type for ExclusiveStartKey must be String, Number or Binary. No set data types are allowed.

" }, "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}, "ProjectionExpression":{ "shape":"ProjectionExpression", "documentation":"

One or more attributes to retrieve from the table. These attributes can include scalars, sets, or elements of a JSON document. The attributes in the expression must be separated by commas.

If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result.

" }, "FilterExpression":{ "shape":"ConditionExpression", "documentation":"

A condition that evaluates the query results and returns only the desired values.

The condition you specify is applied to the items queried; any items that do not match the expression are not returned.

" }, "ExpressionAttributeNames":{ "shape":"ExpressionAttributeNameMap", "documentation":"

One or more substitution tokens for simplifying complex expressions. The following are some use cases for an ExpressionAttributeNames value:

Use the # character in an expression to dereference an attribute name. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeNames:

The expression can now be simplified as follows:

" }, "ExpressionAttributeValues":{ "shape":"ExpressionAttributeValueMap", "documentation":"

One or more values that can be substituted in an expression.

Use the : character in an expression to dereference an attribute value. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeValues:

The expression can now be simplified as follows:

" } }, "documentation":"

Represents the input of a Query operation.

" }, "QueryOutput":{ "type":"structure", "members":{ "Items":{ "shape":"ItemList", "documentation":"

An array of item attributes that match the query criteria. Each element in this array consists of an attribute name and the value for that attribute.

" }, "Count":{ "shape":"Integer", "documentation":"

The number of items in the response.

If you used a QueryFilter in the request, then Count is the number of items returned after the filter was applied, and ScannedCount is the number of matching items before> the filter was applied.

If you did not use a filter in the request, then Count and ScannedCount are the same.

" }, "ScannedCount":{ "shape":"Integer", "documentation":"

The number of items evaluated, before any QueryFilter is applied. A high ScannedCount value with few, or no, Count results indicates an inefficient Query operation. For more information, see Count and ScannedCount in the Amazon DynamoDB Developer Guide.

If you did not use a filter in the request, then ScannedCount is the same as Count.

" }, "LastEvaluatedKey":{ "shape":"Key", "documentation":"

The primary key of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.

If LastEvaluatedKey is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.

If LastEvaluatedKey is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedKey is empty.

" }, "ConsumedCapacity":{"shape":"ConsumedCapacity"} }, "documentation":"

Represents the output of a Query operation.

" }, "ResourceInUseException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

The resource which is being attempted to be changed is in use.

" } }, "exception":true, "documentation":"

The operation conflicts with the resource's availability. For example, you attempted to recreate an existing table, or tried to delete a table currently in the CREATING state.

" }, "ResourceNotFoundException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

The resource which is being requested does not exist.

" } }, "exception":true, "documentation":"

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

" }, "ReturnConsumedCapacity":{ "type":"string", "enum":[ "INDEXES", "TOTAL", "NONE" ], "documentation":"

A value that if set to TOTAL, the response includes ConsumedCapacity data for tables and indexes. If set to INDEXES, the response includes ConsumedCapacity for indexes. If set to NONE (the default), ConsumedCapacity is not included in the response.

" }, "ReturnItemCollectionMetrics":{ "type":"string", "enum":[ "SIZE", "NONE" ] }, "ReturnValue":{ "type":"string", "enum":[ "NONE", "ALL_OLD", "UPDATED_OLD", "ALL_NEW", "UPDATED_NEW" ] }, "ScalarAttributeType":{ "type":"string", "enum":[ "S", "N", "B" ] }, "ScanInput":{ "type":"structure", "required":["TableName"], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table containing the requested items.

" }, "AttributesToGet":{ "shape":"AttributeNameList", "documentation":"

There is a newer parameter available. Use ProjectionExpression instead. Note that if you use AttributesToGet and ProjectionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter allows you to retrieve lists or maps; however, it cannot retrieve individual list or map elements.

The names of one or more attributes to retrieve. If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result.

Note that AttributesToGet has no effect on provisioned throughput consumption. DynamoDB determines capacity units consumed based on item size, not on the amount of data that is returned to an application.

" }, "Limit":{ "shape":"PositiveIntegerObject", "documentation":"

The maximum number of items to evaluate (not necessarily the number of matching items). If DynamoDB processes the number of items up to the limit while processing the results, it stops the operation and returns the matching values up to that point, and a key in LastEvaluatedKey to apply in a subsequent operation, so that you can pick up where you left off. Also, if the processed data set size exceeds 1 MB before DynamoDB reaches this limit, it stops the operation and returns the matching values up to the limit, and a key in LastEvaluatedKey to apply in a subsequent operation to continue the operation. For more information, see Query and Scan in the Amazon DynamoDB Developer Guide.

" }, "Select":{ "shape":"Select", "documentation":"

The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, or the count of matching items.

If neither Select nor AttributesToGet are specified, DynamoDB defaults to ALL_ATTRIBUTES. You cannot use both AttributesToGet and Select together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying AttributesToGet without any value for Select.)

" }, "ScanFilter":{ "shape":"FilterConditionMap", "documentation":"

There is a newer parameter available. Use FilterExpression instead. Note that if you use ScanFilter and FilterExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A condition that evaluates the scan results and returns only the desired values.

If you specify more than one condition in the ScanFilter map, then by default all of the conditions must evaluate to true. In other words, the conditions are ANDed together. (You can use the ConditionalOperator parameter to OR the conditions instead. If you do this, then at least one of the conditions must evaluate to true, rather than all of them.)

Each ScanFilter element consists of an attribute name to compare, along with the following:

" }, "ConditionalOperator":{ "shape":"ConditionalOperator", "documentation":"

There is a newer parameter available. Use ConditionExpression instead. Note that if you use ConditionalOperator and ConditionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A logical operator to apply to the conditions in the ScanFilter map:

If you omit ConditionalOperator, then AND is the default.

The operation will succeed only if the entire map evaluates to true.

" }, "ExclusiveStartKey":{ "shape":"Key", "documentation":"

The primary key of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedKey in the previous operation.

The data type for ExclusiveStartKey must be String, Number or Binary. No set data types are allowed.

In a parallel scan, a Scan request that includes ExclusiveStartKey must specify the same segment whose previous Scan returned the corresponding value of LastEvaluatedKey.

" }, "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}, "TotalSegments":{ "shape":"ScanTotalSegments", "documentation":"

For a parallel Scan request, TotalSegments represents the total number of segments into which the Scan operation will be divided. The value of TotalSegments corresponds to the number of application workers that will perform the parallel scan. For example, if you want to scan a table using four application threads, specify a TotalSegments value of 4.

The value for TotalSegments must be greater than or equal to 1, and less than or equal to 1000000. If you specify a TotalSegments value of 1, the Scan operation will be sequential rather than parallel.

If you specify TotalSegments, you must also specify Segment.

" }, "Segment":{ "shape":"ScanSegment", "documentation":"

For a parallel Scan request, Segment identifies an individual segment to be scanned by an application worker.

Segment IDs are zero-based, so the first segment is always 0. For example, if you want to scan a table using four application threads, the first thread specifies a Segment value of 0, the second thread specifies 1, and so on.

The value of LastEvaluatedKey returned from a parallel Scan request must be used as ExclusiveStartKey with the same segment ID in a subsequent Scan operation.

The value for Segment must be greater than or equal to 0, and less than the value provided for TotalSegments.

If you specify Segment, you must also specify TotalSegments.

" }, "ProjectionExpression":{ "shape":"ProjectionExpression", "documentation":"

One or more attributes to retrieve from the table. These attributes can include scalars, sets, or elements of a JSON document. The attributes in the expression must be separated by commas.

If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result.

" }, "FilterExpression":{ "shape":"ConditionExpression", "documentation":"

A condition that evaluates the scan results and returns only the desired values.

The condition you specify is applied to the items scanned; any items that do not match the expression are not returned.

" }, "ExpressionAttributeNames":{ "shape":"ExpressionAttributeNameMap", "documentation":"

One or more substitution tokens for simplifying complex expressions. The following are some use cases for an ExpressionAttributeNames value:

Use the # character in an expression to dereference an attribute name. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeNames:

The expression can now be simplified as follows:

" }, "ExpressionAttributeValues":{ "shape":"ExpressionAttributeValueMap", "documentation":"

One or more values that can be substituted in an expression.

Use the : character in an expression to dereference an attribute value. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeValues:

The expression can now be simplified as follows:

" } }, "documentation":"

Represents the input of a Scan operation.

" }, "ScanOutput":{ "type":"structure", "members":{ "Items":{ "shape":"ItemList", "documentation":"

An array of item attributes that match the scan criteria. Each element in this array consists of an attribute name and the value for that attribute.

" }, "Count":{ "shape":"Integer", "documentation":"

The number of items in the response.

If you set ScanFilter in the request, then Count is the number of items returned after the filter was applied, and ScannedCount is the number of matching items before the filter was applied.

If you did not use a filter in the request, then Count is the same as ScannedCount.

" }, "ScannedCount":{ "shape":"Integer", "documentation":"

The number of items evaluated, before any ScanFilter is applied. A high ScannedCount value with few, or no, Count results indicates an inefficient Scan operation. For more information, see Count and ScannedCount in the Amazon DynamoDB Developer Guide.

If you did not use a filter in the request, then ScannedCount is the same as Count.

" }, "LastEvaluatedKey":{ "shape":"Key", "documentation":"

The primary key of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.

If LastEvaluatedKey is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.

If LastEvaluatedKey is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedKey is empty.

" }, "ConsumedCapacity":{"shape":"ConsumedCapacity"} }, "documentation":"

Represents the output of a Scan operation.

" }, "ScanSegment":{ "type":"integer", "min":0, "max":999999 }, "ScanTotalSegments":{ "type":"integer", "min":1, "max":1000000 }, "SecondaryIndexesCapacityMap":{ "type":"map", "key":{"shape":"IndexName"}, "value":{"shape":"Capacity"} }, "Select":{ "type":"string", "enum":[ "ALL_ATTRIBUTES", "ALL_PROJECTED_ATTRIBUTES", "SPECIFIC_ATTRIBUTES", "COUNT" ] }, "StringAttributeValue":{"type":"string"}, "StringSetAttributeValue":{ "type":"list", "member":{"shape":"StringAttributeValue"} }, "TableDescription":{ "type":"structure", "members":{ "AttributeDefinitions":{ "shape":"AttributeDefinitions", "documentation":"

An array of AttributeDefinition objects. Each of these objects describes one attribute in the table and index key schema.

Each AttributeDefinition object in this array is composed of:

" }, "TableName":{ "shape":"TableName", "documentation":"

The name of the table.

" }, "KeySchema":{ "shape":"KeySchema", "documentation":"

The primary key structure for the table. Each KeySchemaElement consists of:

For more information about primary keys, see Primary Key in the Amazon DynamoDB Developer Guide.

" }, "TableStatus":{ "shape":"TableStatus", "documentation":"

The current state of the table:

" }, "CreationDateTime":{ "shape":"Date", "documentation":"

The date and time when the table was created, in UNIX epoch time format.

" }, "ProvisionedThroughput":{ "shape":"ProvisionedThroughputDescription", "documentation":"

The provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.

" }, "TableSizeBytes":{ "shape":"Long", "documentation":"

The total size of the specified table, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.

" }, "ItemCount":{ "shape":"Long", "documentation":"

The number of items in the specified table. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.

" }, "LocalSecondaryIndexes":{ "shape":"LocalSecondaryIndexDescriptionList", "documentation":"

Represents one or more local secondary indexes on the table. Each index is scoped to a given hash key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of:

If the table is in the DELETING state, no information about indexes will be returned.

" }, "GlobalSecondaryIndexes":{ "shape":"GlobalSecondaryIndexDescriptionList", "documentation":"

The global secondary indexes, if any, on the table. Each index is scoped to a given hash key value. Each element is composed of:

If the table is in the DELETING state, no information about indexes will be returned.

" } }, "documentation":"

Represents the properties of a table.

" }, "TableName":{ "type":"string", "min":3, "max":255, "pattern":"[a-zA-Z0-9_.-]+" }, "TableNameList":{ "type":"list", "member":{"shape":"TableName"} }, "TableStatus":{ "type":"string", "enum":[ "CREATING", "UPDATING", "DELETING", "ACTIVE" ] }, "UpdateExpression":{"type":"string"}, "UpdateGlobalSecondaryIndexAction":{ "type":"structure", "required":[ "IndexName", "ProvisionedThroughput" ], "members":{ "IndexName":{ "shape":"IndexName", "documentation":"

The name of the global secondary index to be updated.

" }, "ProvisionedThroughput":{"shape":"ProvisionedThroughput"} }, "documentation":"

Represents the new provisioned throughput settings to be applied to a global secondary index.

" }, "UpdateItemInput":{ "type":"structure", "required":[ "TableName", "Key" ], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table containing the item to update.

" }, "Key":{ "shape":"Key", "documentation":"

The primary key of the item to be updated. Each element consists of an attribute name and a value for that attribute.

For the primary key, you must provide all of the attributes. For example, with a hash type primary key, you only need to specify the hash attribute. For a hash-and-range type primary key, you must specify both the hash attribute and the range attribute.

" }, "AttributeUpdates":{ "shape":"AttributeUpdates", "documentation":"

There is a newer parameter available. Use UpdateExpression instead. Note that if you use AttributeUpdates and UpdateExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter can be used for modifying top-level attributes; however, it does not support individual list or map elements.

The names of attributes to be modified, the action to perform on each, and the new value for each. If you are updating an attribute that is an index key attribute for any indexes on that table, the attribute type must match the index key type defined in the AttributesDefinition of the table description. You can use UpdateItem to update any nonkey attributes.

Attribute values cannot be null. String and Binary type attributes must have lengths greater than zero. Set type attributes must not be empty. Requests with empty values will be rejected with a ValidationException exception.

Each AttributeUpdates element consists of an attribute name to modify, along with the following:

If you specify any attributes that are part of an index key, then the data types for those attributes must match those of the schema in the table's attribute definition.

" }, "Expected":{ "shape":"ExpectedAttributeMap", "documentation":"

There is a newer parameter available. Use ConditionExpression instead. Note that if you use Expected and ConditionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A map of attribute/condition pairs. Expected provides a conditional block for the UpdateItem operation.

Each element of Expected consists of an attribute name, a comparison operator, and one or more values. DynamoDB compares the attribute with the value(s) you supplied, using the comparison operator. For each Expected element, the result of the evaluation is either true or false.

If you specify more than one element in the Expected map, then by default all of the conditions must evaluate to true. In other words, the conditions are ANDed together. (You can use the ConditionalOperator parameter to OR the conditions instead. If you do this, then at least one of the conditions must evaluate to true, rather than all of them.)

If the Expected map evaluates to true, then the conditional operation succeeds; otherwise, it fails.

Expected contains the following:

For usage examples of AttributeValueList and ComparisonOperator, see Legacy Conditional Parameters in the Amazon DynamoDB Developer Guide.

For backward compatibility with previous DynamoDB releases, the following parameters can be used instead of AttributeValueList and ComparisonOperator:

The Value and Exists parameters are incompatible with AttributeValueList and ComparisonOperator. Note that if you use both sets of parameters at once, DynamoDB will return a ValidationException exception.

" }, "ConditionalOperator":{ "shape":"ConditionalOperator", "documentation":"

There is a newer parameter available. Use ConditionExpression instead. Note that if you use ConditionalOperator and ConditionExpression at the same time, DynamoDB will return a ValidationException exception.

This parameter does not support lists or maps.

A logical operator to apply to the conditions in the Expected map:

If you omit ConditionalOperator, then AND is the default.

The operation will succeed only if the entire map evaluates to true.

" }, "ReturnValues":{ "shape":"ReturnValue", "documentation":"

Use ReturnValues if you want to get the item attributes as they appeared either before or after they were updated. For UpdateItem, the valid values are:

" }, "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}, "ReturnItemCollectionMetrics":{ "shape":"ReturnItemCollectionMetrics", "documentation":"

A value that if set to SIZE, the response includes statistics about item collections, if any, that were modified during the operation are returned in the response. If set to NONE (the default), no statistics are returned.

" }, "UpdateExpression":{ "shape":"UpdateExpression", "documentation":"

An expression that defines one or more attributes to be updated, the action to be performed on them, and new value(s) for them.

The following action values are available for UpdateExpression.

You can have many actions in a single expression, such as the following: SET a=:value1, b=:value2 DELETE :value3, :value4, :value5

An expression can contain any of the following:

" }, "ConditionExpression":{ "shape":"ConditionExpression", "documentation":"

A condition that must be satisfied in order for a conditional update to succeed.

An expression can contain any of the following:

" }, "ExpressionAttributeNames":{ "shape":"ExpressionAttributeNameMap", "documentation":"

One or more substitution tokens for simplifying complex expressions. The following are some use cases for an ExpressionAttributeNames value:

Use the # character in an expression to dereference an attribute name. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeNames:

The expression can now be simplified as follows:

" }, "ExpressionAttributeValues":{ "shape":"ExpressionAttributeValueMap", "documentation":"

One or more values that can be substituted in an expression.

Use the : character in an expression to dereference an attribute value. For example, consider the following expression:

Now suppose that you specified the following for ExpressionAttributeValues:

The expression can now be simplified as follows:

" } }, "documentation":"

Represents the input of an UpdateItem operation.

" }, "UpdateItemOutput":{ "type":"structure", "members":{ "Attributes":{ "shape":"AttributeMap", "documentation":"

A map of attribute values as they appeared before the UpdateItem operation. This map only appears if ReturnValues was specified as something other than NONE in the request. Each element represents one attribute.

" }, "ConsumedCapacity":{"shape":"ConsumedCapacity"}, "ItemCollectionMetrics":{"shape":"ItemCollectionMetrics"} }, "documentation":"

Represents the output of an UpdateItem operation.

" }, "UpdateTableInput":{ "type":"structure", "required":["TableName"], "members":{ "TableName":{ "shape":"TableName", "documentation":"

The name of the table to be updated.

" }, "ProvisionedThroughput":{"shape":"ProvisionedThroughput"}, "GlobalSecondaryIndexUpdates":{ "shape":"GlobalSecondaryIndexUpdateList", "documentation":"

An array of one or more global secondary indexes on the table, together with provisioned throughput settings for each index.

" } }, "documentation":"

Represents the input of an UpdateTable operation.

" }, "UpdateTableOutput":{ "type":"structure", "members":{ "TableDescription":{"shape":"TableDescription"} }, "documentation":"

Represents the output of an UpdateTable operation.

" }, "WriteRequest":{ "type":"structure", "members":{ "PutRequest":{ "shape":"PutRequest", "documentation":"

A request to perform a PutItem operation.

" }, "DeleteRequest":{ "shape":"DeleteRequest", "documentation":"

A request to perform a DeleteItem operation.

" } }, "documentation":"

Represents an operation to perform - either DeleteItem or PutItem. You can only specify one of these operations, not both, in a single WriteRequest. If you do need to perform both of these operations, you will need to specify two separate WriteRequest objects.

" }, "WriteRequests":{ "type":"list", "member":{"shape":"WriteRequest"}, "min":1, "max":25 } } }