aws-sdk-core 2.0.40 → 2.0.41

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,606 @@
1
+ {
2
+ "version": "2.0",
3
+ "operations": {
4
+ "BatchGetItem": "<p>Retrieves the attributes for multiple items from multiple tables using their primary keys.</p> <p>The maximum number of item attributes that can be retrieved for a single operation is 100. Also, the number of items retrieved is constrained by a 1 MB the size limit. If the response size limit is exceeded or a partial result is returned due to an internal processing failure, Amazon DynamoDB returns an <code>UnprocessedKeys</code> value so you can retry the operation starting with the next item to get.</p> <p>Amazon DynamoDB automatically adjusts the number of items returned per page to enforce this limit. For example, even if you ask to retrieve 100 items, but each individual item is 50k in size, the system returns 20 items and an appropriate <code>UnprocessedKeys</code> value so you can get the next page of results. If necessary, your application needs its own logic to assemble the pages of results into one set.</p>",
5
+ "BatchWriteItem": "<p>Allows to execute a batch of Put and/or Delete Requests for many tables in a single call. A total of 25 requests are allowed.</p> <p>There are no transaction guarantees provided by this API. It does not allow conditional puts nor does it support return values.</p>",
6
+ "CreateTable": "<p>Adds a new table to your account.</p> <p>The table name must be unique among those associated with the AWS Account issuing the request, and the AWS Region that receives the request (e.g. <code>us-east-1</code>).</p> <p>The <code>CreateTable</code> operation triggers an asynchronous workflow to begin creating the table. Amazon DynamoDB immediately returns the state of the table (<code>CREATING</code>) until the table is in the <code>ACTIVE</code> state. Once the table is in the <code>ACTIVE</code> state, you can perform data plane operations.</p>",
7
+ "DeleteItem": "<p>Deletes a single item in a table by primary key.</p> <p>You can perform a conditional delete operation that deletes the item if it exists, or if it has an expected attribute value.</p>",
8
+ "DeleteTable": "<p>Deletes a table and all of its items.</p> <p>If the table is in the <code>ACTIVE</code> state, you can delete it. If a table is in <code>CREATING</code> or <code>UPDATING</code> states then Amazon DynamoDB returns a <code>ResourceInUseException</code>. If the specified table does not exist, Amazon DynamoDB returns a <code>ResourceNotFoundException</code>.</p>",
9
+ "DescribeTable": "<p>Retrieves information about the table, including the current status of the table, the primary key schema and when the table was created.</p> <p>If the table does not exist, Amazon DynamoDB returns a <code>ResourceNotFoundException</code>.</p>",
10
+ "GetItem": "<p>Retrieves a set of Attributes for an item that matches the primary key.</p> <p>The <code>GetItem</code> operation provides an eventually-consistent read by default. If eventually-consistent reads are not acceptable for your application, use <code>ConsistentRead</code>. Although this operation might take longer than a standard read, it always returns the last updated value.</p>",
11
+ "ListTables": "<p>Retrieves a paginated list of table names created by the AWS Account of the caller in the AWS Region (e.g. <code>us-east-1</code>).</p>",
12
+ "PutItem": "<p>Creates a new item, or replaces an old item with a new item (including all the attributes).</p> <p>If an item already exists in the specified table with the same primary key, the new item completely replaces the existing item. You can perform a conditional put (insert a new item if one with the specified primary key doesn't exist), or replace an existing item if it has certain attribute values.</p>",
13
+ "Query": "<p>Gets the values of one or more items and its attributes by primary key (composite primary key, only).</p> <p>Narrow the scope of the query using comparison operators on the <code>RangeKeyValue</code> of the composite key. Use the <code>ScanIndexForward</code> parameter to get results in forward or reverse order by range key.</p>",
14
+ "Scan": "<p>Retrieves one or more items and its attributes by performing a full scan of a table.</p> <p>Provide a <code>ScanFilter</code> to get more specific results.</p>",
15
+ "UpdateItem": "<p>Edits an existing item's attributes.</p> <p>You can perform a conditional update (insert a new attribute name-value pair if it doesn't exist, or replace an existing name-value pair if it has certain expected attribute values).</p>",
16
+ "UpdateTable": "<p>Updates the provisioned throughput for the given table.</p> <p>Setting the throughput for a table helps you manage performance and is part of the Provisioned Throughput feature of Amazon DynamoDB.</p>"
17
+ },
18
+ "service": "<p>Amazon DynamoDB is a fast, highly scalable, highly available, cost-effective non-relational database service.</p> <p>Amazon DynamoDB removes traditional scalability limitations on data storage while maintaining low latency and predictable performance.</p>",
19
+ "shapes": {
20
+ "AttributeAction": {
21
+ "base": "<p>The type of action for an item update operation. Only use the add action for numbers or sets; the specified value is added to the existing value. If a set of values is specified, the values are added to the existing set. Adds the specified attribute. If the attribute exists, it is replaced by the new value. If no value is specified, this removes the attribute and its value. If a set of values is specified, then the values in the specified set are removed from the old set.</p>",
22
+ "refs": {
23
+ "AttributeValueUpdate$Action": null
24
+ }
25
+ },
26
+ "AttributeMap": {
27
+ "base": null,
28
+ "refs": {
29
+ "DeleteItemOutput$Attributes": "<p>If the <code>ReturnValues</code> parameter is provided as <code>ALL_OLD</code> in the request, Amazon DynamoDB returns an array of attribute name-value pairs (essentially, the deleted item). Otherwise, the response contains an empty set.</p>",
30
+ "GetItemOutput$Item": "<p>Contains the requested attributes.</p>",
31
+ "ItemList$member": null,
32
+ "PutItemOutput$Attributes": "<p>Attribute values before the put operation, but only if the <code>ReturnValues</code> parameter is specified as <code>ALL_OLD</code> in the request.</p>",
33
+ "UpdateItemOutput$Attributes": "<p>A map of attribute name-value pairs, but only if the <code>ReturnValues</code> parameter is specified as something other than <code>NONE</code> in the request.</p>"
34
+ }
35
+ },
36
+ "AttributeName": {
37
+ "base": null,
38
+ "refs": {
39
+ "AttributeMap$key": null,
40
+ "AttributeNameList$member": null,
41
+ "AttributeUpdates$key": null,
42
+ "ExpectedAttributeMap$key": null,
43
+ "PutItemInputAttributeMap$key": null
44
+ }
45
+ },
46
+ "AttributeNameList": {
47
+ "base": "<p>List of <code>Attribute</code> names. If attribute names are not specified then all attributes will be returned. If some attributes are not found, they will not appear in the result.</p>",
48
+ "refs": {
49
+ "GetItemInput$AttributesToGet": null,
50
+ "KeysAndAttributes$AttributesToGet": null,
51
+ "QueryInput$AttributesToGet": null,
52
+ "ScanInput$AttributesToGet": null
53
+ }
54
+ },
55
+ "AttributeUpdates": {
56
+ "base": "<p>Map of attribute name to the new value and action for the update. The attribute names specify the attributes to modify, and cannot contain any primary key attributes.</p>",
57
+ "refs": {
58
+ "UpdateItemInput$AttributeUpdates": null
59
+ }
60
+ },
61
+ "AttributeValue": {
62
+ "base": "<p>AttributeValue can be <code>String</code>, <code>Number</code>, <code>Binary</code>, <code>StringSet</code>, <code>NumberSet</code>, <code>BinarySet</code>.</p>",
63
+ "refs": {
64
+ "AttributeMap$value": null,
65
+ "AttributeValueList$member": null,
66
+ "AttributeValueUpdate$Value": null,
67
+ "ExpectedAttributeValue$Value": "<p>Specify whether or not a value already exists and has a specific content for the attribute name-value pair.</p>",
68
+ "Key$HashKeyElement": "<p>A hash key element is treated as the primary key, and can be a string or a number. Single attribute primary keys have one index value. The value can be <code>String</code>, <code>Number</code>, <code>StringSet</code>, <code>NumberSet</code>.</p>",
69
+ "Key$RangeKeyElement": "<p>A range key element is treated as a secondary key (used in conjunction with the primary key), and can be a string or a number, and is only used for hash-and-range primary keys. The value can be <code>String</code>, <code>Number</code>, <code>StringSet</code>, <code>NumberSet</code>.</p>",
70
+ "PutItemInputAttributeMap$value": null,
71
+ "QueryInput$HashKeyValue": "<p>Attribute value of the hash component of the composite primary key.</p>"
72
+ }
73
+ },
74
+ "AttributeValueList": {
75
+ "base": "<p>A list of attribute values to be used with a comparison operator for a scan or query operation. For comparisons that require more than one value, such as a <code>BETWEEN</code> comparison, the AttributeValueList contains two attribute values and the comparison operator.</p>",
76
+ "refs": {
77
+ "Condition$AttributeValueList": null
78
+ }
79
+ },
80
+ "AttributeValueUpdate": {
81
+ "base": "<p>Specifies the attribute to update and how to perform the update. Possible values: <code>PUT</code> (default), <code>ADD</code> or <code>DELETE</code>.</p>",
82
+ "refs": {
83
+ "AttributeUpdates$value": null
84
+ }
85
+ },
86
+ "BatchGetItemInput": {
87
+ "base": null,
88
+ "refs": {
89
+ }
90
+ },
91
+ "BatchGetItemOutput": {
92
+ "base": null,
93
+ "refs": {
94
+ }
95
+ },
96
+ "BatchGetRequestMap": {
97
+ "base": "<p>A map of the table name and corresponding items to get by primary key. While requesting items, each table name can be invoked only once per operation.</p>",
98
+ "refs": {
99
+ "BatchGetItemInput$RequestItems": null,
100
+ "BatchGetItemOutput$UnprocessedKeys": "<p>Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size. The <code>UnprocessedKeys</code> value is in the same form as a <code>RequestItems</code> parameter (so the value can be provided directly to a subsequent <code>BatchGetItem</code> operation). For more information, see the above <code>RequestItems</code> parameter.</p>"
101
+ }
102
+ },
103
+ "BatchGetResponseMap": {
104
+ "base": "<p>Table names and the respective item attributes from the tables.</p>",
105
+ "refs": {
106
+ "BatchGetItemOutput$Responses": null
107
+ }
108
+ },
109
+ "BatchResponse": {
110
+ "base": "<p>The item attributes from a response in a specific table, along with the read resources consumed on the table during the request.</p>",
111
+ "refs": {
112
+ "BatchGetResponseMap$value": null
113
+ }
114
+ },
115
+ "BatchWriteItemInput": {
116
+ "base": null,
117
+ "refs": {
118
+ }
119
+ },
120
+ "BatchWriteItemOutput": {
121
+ "base": "<p>A container for <code>BatchWriteItem</code> response</p>",
122
+ "refs": {
123
+ }
124
+ },
125
+ "BatchWriteItemRequestMap": {
126
+ "base": "<p>A map of table name to list-of-write-requests.</p> <p>Key: The table name corresponding to the list of requests</p> <p>Value: Essentially a list of request items. Each request item could contain either a <code>PutRequest</code> or <code>DeleteRequest</code>. Never both.</p>",
127
+ "refs": {
128
+ "BatchWriteItemInput$RequestItems": "<p>A map of table name to list-of-write-requests. Used as input to the <code>BatchWriteItem</code> API call</p>",
129
+ "BatchWriteItemOutput$UnprocessedItems": "<p>The Items which we could not successfully process in a <code>BatchWriteItem</code> call is returned as <code>UnprocessedItems</code></p>"
130
+ }
131
+ },
132
+ "BatchWriteResponse": {
133
+ "base": null,
134
+ "refs": {
135
+ "BatchWriteResponseMap$value": null
136
+ }
137
+ },
138
+ "BatchWriteResponseMap": {
139
+ "base": null,
140
+ "refs": {
141
+ "BatchWriteItemOutput$Responses": "<p>The response object as a result of <code>BatchWriteItem</code> call. This is essentially a map of table name to <code>ConsumedCapacityUnits</code>.</p>"
142
+ }
143
+ },
144
+ "BinaryAttributeValue": {
145
+ "base": null,
146
+ "refs": {
147
+ "AttributeValue$B": "<p>Binary attributes are sequences of unsigned bytes.</p>",
148
+ "BinarySetAttributeValue$member": null
149
+ }
150
+ },
151
+ "BinarySetAttributeValue": {
152
+ "base": null,
153
+ "refs": {
154
+ "AttributeValue$BS": "<p>A set of binary attributes.</p>"
155
+ }
156
+ },
157
+ "BooleanObject": {
158
+ "base": null,
159
+ "refs": {
160
+ "ExpectedAttributeValue$Exists": "<p>Specify whether or not a value already exists for the attribute name-value pair.</p>",
161
+ "QueryInput$Count": "<p>If set to <code>true</code>, Amazon DynamoDB returns a total number of items that match the query parameters, instead of a list of the matching items and their attributes. Do not set <code>Count</code> to <code>true</code> while providing a list of <code>AttributesToGet</code>, otherwise Amazon DynamoDB returns a validation error.</p>",
162
+ "QueryInput$ScanIndexForward": "<p>Specifies forward or backward traversal of the index. Amazon DynamoDB returns results reflecting the requested order, determined by the range key. The default value is <code>true</code> (forward).</p>",
163
+ "ScanInput$Count": "<p>If set to <code>true</code>, Amazon DynamoDB returns a total number of items for the <code>Scan</code> operation, even if the operation has no matching items for the assigned filter. Do not set <code>Count</code> to <code>true</code> while providing a list of <code>AttributesToGet</code>, otherwise Amazon DynamoDB returns a validation error.</p>"
164
+ }
165
+ },
166
+ "ComparisonOperator": {
167
+ "base": "<p>A comparison operator is an enumeration of several operations:</p> <ul> <li> <code>EQ</code> for <em>equal</em>.</li> <li> <code>NE</code> for <em>not equal</em>.</li> <li> <code>IN</code> checks for exact matches.</li> <li> <code>LE</code> for <em>less than or equal to</em>.</li> <li> <code>LT</code> for <em>less than</em>.</li> <li> <code>GE</code> for <em>greater than or equal to</em>.</li> <li> <code>GT</code> for <em>greater than</em>.</li> <li> <code>BETWEEN</code> for <em>between</em>.</li> <li> <code>NOT_NULL</code> for <em>exists</em>.</li> <li> <code>NULL</code> for <em>not exists</em>.</li> <li> <code>CONTAINS</code> for substring or value in a set.</li> <li> <code>NOT_CONTAINS</code> for absence of a substring or absence of a value in a set.</li> <li> <code>BEGINS_WITH</code> for a substring prefix.</li> </ul> <p>Scan operations support all available comparison operators.</p> <p>Query operations support a subset of the available comparison operators: EQ, LE, LT, GE, GT, BETWEEN, and BEGINS_WITH.</p>",
168
+ "refs": {
169
+ "Condition$ComparisonOperator": null
170
+ }
171
+ },
172
+ "Condition": {
173
+ "base": null,
174
+ "refs": {
175
+ "FilterConditionMap$value": null,
176
+ "QueryInput$RangeKeyCondition": "<p>A container for the attribute values and comparison operators to use for the query.</p>"
177
+ }
178
+ },
179
+ "ConditionalCheckFailedException": {
180
+ "base": "<p>This exception is thrown when an expected value does not match what was found in the system.</p>",
181
+ "refs": {
182
+ }
183
+ },
184
+ "ConsistentRead": {
185
+ "base": "<p>If set to <code>true</code>, then a consistent read is issued. Otherwise eventually-consistent is used.</p>",
186
+ "refs": {
187
+ "GetItemInput$ConsistentRead": null,
188
+ "KeysAndAttributes$ConsistentRead": null,
189
+ "QueryInput$ConsistentRead": null
190
+ }
191
+ },
192
+ "ConsumedCapacityUnits": {
193
+ "base": "<p>The number of Capacity Units of the provisioned throughput of the table consumed during the operation. <code>GetItem</code>, <code>BatchGetItem</code>, <code>BatchWriteItem</code>, <code>Query</code>, and <code>Scan</code> operations consume <code>ReadCapacityUnits</code>, while <code>PutItem</code>, <code>UpdateItem</code>, and <code>DeleteItem</code> operations consume <code>WriteCapacityUnits</code>.</p>",
194
+ "refs": {
195
+ "BatchResponse$ConsumedCapacityUnits": null,
196
+ "BatchWriteResponse$ConsumedCapacityUnits": null,
197
+ "DeleteItemOutput$ConsumedCapacityUnits": null,
198
+ "GetItemOutput$ConsumedCapacityUnits": null,
199
+ "PutItemOutput$ConsumedCapacityUnits": null,
200
+ "QueryOutput$ConsumedCapacityUnits": null,
201
+ "ScanOutput$ConsumedCapacityUnits": null,
202
+ "UpdateItemOutput$ConsumedCapacityUnits": null
203
+ }
204
+ },
205
+ "CreateTableInput": {
206
+ "base": null,
207
+ "refs": {
208
+ }
209
+ },
210
+ "CreateTableOutput": {
211
+ "base": null,
212
+ "refs": {
213
+ }
214
+ },
215
+ "Date": {
216
+ "base": null,
217
+ "refs": {
218
+ "ProvisionedThroughputDescription$LastIncreaseDateTime": null,
219
+ "ProvisionedThroughputDescription$LastDecreaseDateTime": null,
220
+ "TableDescription$CreationDateTime": null
221
+ }
222
+ },
223
+ "DeleteItemInput": {
224
+ "base": null,
225
+ "refs": {
226
+ }
227
+ },
228
+ "DeleteItemOutput": {
229
+ "base": null,
230
+ "refs": {
231
+ }
232
+ },
233
+ "DeleteRequest": {
234
+ "base": "<p>A container for a Delete BatchWrite request</p>",
235
+ "refs": {
236
+ "WriteRequest$DeleteRequest": null
237
+ }
238
+ },
239
+ "DeleteTableInput": {
240
+ "base": null,
241
+ "refs": {
242
+ }
243
+ },
244
+ "DeleteTableOutput": {
245
+ "base": null,
246
+ "refs": {
247
+ }
248
+ },
249
+ "DescribeTableInput": {
250
+ "base": null,
251
+ "refs": {
252
+ }
253
+ },
254
+ "DescribeTableOutput": {
255
+ "base": null,
256
+ "refs": {
257
+ }
258
+ },
259
+ "ErrorMessage": {
260
+ "base": null,
261
+ "refs": {
262
+ "ConditionalCheckFailedException$message": null,
263
+ "InternalServerError$message": null,
264
+ "LimitExceededException$message": null,
265
+ "ProvisionedThroughputExceededException$message": null,
266
+ "ResourceInUseException$message": null,
267
+ "ResourceNotFoundException$message": null
268
+ }
269
+ },
270
+ "ExpectedAttributeMap": {
271
+ "base": "<p>Designates an attribute for a conditional modification. The <code>Expected</code> parameter allows you to provide an attribute name, and whether or not Amazon DynamoDB should check to see if the attribute has a particular value before modifying it.</p>",
272
+ "refs": {
273
+ "DeleteItemInput$Expected": null,
274
+ "PutItemInput$Expected": null,
275
+ "UpdateItemInput$Expected": null
276
+ }
277
+ },
278
+ "ExpectedAttributeValue": {
279
+ "base": "<p>Allows you to provide an attribute name, and whether or not Amazon DynamoDB should check to see if the attribute value already exists; or if the attribute value exists and has a particular value before changing it.</p>",
280
+ "refs": {
281
+ "ExpectedAttributeMap$value": null
282
+ }
283
+ },
284
+ "FilterConditionMap": {
285
+ "base": null,
286
+ "refs": {
287
+ "ScanInput$ScanFilter": "<p>Evaluates the scan results and returns only the desired values.</p>"
288
+ }
289
+ },
290
+ "GetItemInput": {
291
+ "base": null,
292
+ "refs": {
293
+ }
294
+ },
295
+ "GetItemOutput": {
296
+ "base": null,
297
+ "refs": {
298
+ }
299
+ },
300
+ "Integer": {
301
+ "base": null,
302
+ "refs": {
303
+ "QueryOutput$Count": "<p>Number of items in the response.</p>",
304
+ "ScanOutput$Count": "<p>Number of items in the response.</p>",
305
+ "ScanOutput$ScannedCount": "<p>Number of items in the complete scan before any filters are applied. A high <code>ScannedCount</code> value with few, or no, <code>Count</code> results indicates an inefficient <code>Scan</code> operation.</p>"
306
+ }
307
+ },
308
+ "InternalServerError": {
309
+ "base": "<p>This exception is thrown when the service has a problem when trying to process the request.</p>",
310
+ "refs": {
311
+ }
312
+ },
313
+ "ItemList": {
314
+ "base": null,
315
+ "refs": {
316
+ "BatchResponse$Items": null,
317
+ "QueryOutput$Items": null,
318
+ "ScanOutput$Items": null
319
+ }
320
+ },
321
+ "Key": {
322
+ "base": "<p>The primary key that uniquely identifies each item in a table. A primary key can be a one attribute (hash) primary key or a two attribute (hash-and-range) primary key.</p>",
323
+ "refs": {
324
+ "DeleteItemInput$Key": null,
325
+ "DeleteRequest$Key": "<p>The item's key to be delete</p>",
326
+ "GetItemInput$Key": null,
327
+ "KeyList$member": null,
328
+ "QueryInput$ExclusiveStartKey": "<p>Primary key of the item from which to continue an earlier query. An earlier query might provide this value as the <code>LastEvaluatedKey</code> if that query operation was interrupted before completing the query; either because of the result set size or the <code>Limit</code> parameter. The <code>LastEvaluatedKey</code> can be passed back in a new query request to continue the operation from that point.</p>",
329
+ "QueryOutput$LastEvaluatedKey": "<p>Primary key of the item where the query operation stopped, inclusive of the previous result set. Use this value to start a new operation excluding this value in the new request. The <code>LastEvaluatedKey</code> is null when the entire query result set is complete (i.e. the operation processed the \"last page\").</p>",
330
+ "ScanInput$ExclusiveStartKey": "<p>Primary key of the item from which to continue an earlier scan. An earlier scan might provide this value if that scan operation was interrupted before scanning the entire table; either because of the result set size or the <code>Limit</code> parameter. The <code>LastEvaluatedKey</code> can be passed back in a new scan request to continue the operation from that point.</p>",
331
+ "ScanOutput$LastEvaluatedKey": "<p>Primary key of the item where the scan operation stopped. Provide this value in a subsequent scan operation to continue the operation from that point. The <code>LastEvaluatedKey</code> is null when the entire scan result set is complete (i.e. the operation processed the \"last page\").</p>",
332
+ "UpdateItemInput$Key": null
333
+ }
334
+ },
335
+ "KeyList": {
336
+ "base": null,
337
+ "refs": {
338
+ "KeysAndAttributes$Keys": null
339
+ }
340
+ },
341
+ "KeySchema": {
342
+ "base": "<p>The KeySchema identifies the primary key as a one attribute primary key (hash) or a composite two attribute (hash-and-range) primary key. Single attribute primary keys have one index value: a <code>HashKeyElement</code>. A composite hash-and-range primary key contains two attribute values: a <code>HashKeyElement</code> and a <code>RangeKeyElement</code>.</p>",
343
+ "refs": {
344
+ "CreateTableInput$KeySchema": null,
345
+ "TableDescription$KeySchema": null
346
+ }
347
+ },
348
+ "KeySchemaAttributeName": {
349
+ "base": null,
350
+ "refs": {
351
+ "KeySchemaElement$AttributeName": "<p>The <code>AttributeName</code> of the <code>KeySchemaElement</code>.</p>"
352
+ }
353
+ },
354
+ "KeySchemaElement": {
355
+ "base": "<p><code>KeySchemaElement</code> is the primary key (hash or hash-and-range) structure for the table.</p>",
356
+ "refs": {
357
+ "KeySchema$HashKeyElement": "<p>A hash key element is treated as the primary key, and can be a string or a number. Single attribute primary keys have one index value. The value can be <code>String</code>, <code>Number</code>, <code>StringSet</code>, <code>NumberSet</code>.</p>",
358
+ "KeySchema$RangeKeyElement": "<p>A range key element is treated as a secondary key (used in conjunction with the primary key), and can be a string or a number, and is only used for hash-and-range primary keys. The value can be <code>String</code>, <code>Number</code>, <code>StringSet</code>, <code>NumberSet</code>.</p>"
359
+ }
360
+ },
361
+ "KeysAndAttributes": {
362
+ "base": null,
363
+ "refs": {
364
+ "BatchGetRequestMap$value": null
365
+ }
366
+ },
367
+ "LimitExceededException": {
368
+ "base": "<p>This exception is thrown when the subscriber exceeded the limits on the number of objects or operations.</p>",
369
+ "refs": {
370
+ }
371
+ },
372
+ "ListTablesInput": {
373
+ "base": null,
374
+ "refs": {
375
+ }
376
+ },
377
+ "ListTablesInputLimit": {
378
+ "base": "<p>A number of maximum table names to return.</p>",
379
+ "refs": {
380
+ "ListTablesInput$Limit": null
381
+ }
382
+ },
383
+ "ListTablesOutput": {
384
+ "base": null,
385
+ "refs": {
386
+ }
387
+ },
388
+ "Long": {
389
+ "base": null,
390
+ "refs": {
391
+ "TableDescription$TableSizeBytes": null,
392
+ "TableDescription$ItemCount": null
393
+ }
394
+ },
395
+ "NumberAttributeValue": {
396
+ "base": null,
397
+ "refs": {
398
+ "AttributeValue$N": "<p>Numbers are positive or negative exact-value decimals and integers. A number can have up to 38 digits precision and can be between 10^-128 to 10^+126.</p>",
399
+ "NumberSetAttributeValue$member": null
400
+ }
401
+ },
402
+ "NumberSetAttributeValue": {
403
+ "base": null,
404
+ "refs": {
405
+ "AttributeValue$NS": "<p>A set of numbers.</p>"
406
+ }
407
+ },
408
+ "PositiveIntegerObject": {
409
+ "base": null,
410
+ "refs": {
411
+ "QueryInput$Limit": "<p>The maximum number of items to return. If Amazon DynamoDB hits this limit while querying the table, it stops the query and returns the matching values up to the limit, and a <code>LastEvaluatedKey</code> to apply in a subsequent operation to continue the query. Also, if the result set size exceeds 1MB before Amazon DynamoDB hits this limit, it stops the query and returns the matching values, and a <code>LastEvaluatedKey</code> to apply in a subsequent operation to continue the query.</p>",
412
+ "ScanInput$Limit": "<p>The maximum number of items to return. If Amazon DynamoDB hits this limit while scanning the table, it stops the scan and returns the matching values up to the limit, and a <code>LastEvaluatedKey</code> to apply in a subsequent operation to continue the scan. Also, if the scanned data set size exceeds 1 MB before Amazon DynamoDB hits this limit, it stops the scan and returns the matching values up to the limit, and a <code>LastEvaluatedKey</code> to apply in a subsequent operation to continue the scan.</p>"
413
+ }
414
+ },
415
+ "PositiveLongObject": {
416
+ "base": null,
417
+ "refs": {
418
+ "ProvisionedThroughput$ReadCapacityUnits": "<p><code>ReadCapacityUnits</code> are in terms of strictly consistent reads, assuming items of 1k. 2k items require twice the <code>ReadCapacityUnits</code>. Eventually-consistent reads only require half the <code>ReadCapacityUnits</code> of stirctly consistent reads.</p>",
419
+ "ProvisionedThroughput$WriteCapacityUnits": "<p><code>WriteCapacityUnits</code> are in terms of strictly consistent reads, assuming items of 1k. 2k items require twice the <code>WriteCapacityUnits</code>.</p>",
420
+ "ProvisionedThroughputDescription$NumberOfDecreasesToday": null,
421
+ "ProvisionedThroughputDescription$ReadCapacityUnits": null,
422
+ "ProvisionedThroughputDescription$WriteCapacityUnits": null
423
+ }
424
+ },
425
+ "ProvisionedThroughput": {
426
+ "base": "<p>Provisioned throughput reserves the required read and write resources for your table in terms of <code>ReadCapacityUnits</code> and <code>WriteCapacityUnits</code>. Values for provisioned throughput depend upon your expected read/write rates, item size, and consistency. Provide the expected number of read and write operations, assuming an item size of 1k and strictly consistent reads. For 2k item size, double the value. For 3k, triple the value, etc. Eventually-consistent reads consume half the resources of strictly consistent reads.</p>",
427
+ "refs": {
428
+ "CreateTableInput$ProvisionedThroughput": null,
429
+ "UpdateTableInput$ProvisionedThroughput": null
430
+ }
431
+ },
432
+ "ProvisionedThroughputDescription": {
433
+ "base": null,
434
+ "refs": {
435
+ "TableDescription$ProvisionedThroughput": null
436
+ }
437
+ },
438
+ "ProvisionedThroughputExceededException": {
439
+ "base": "<p>This exception is thrown when the level of provisioned throughput defined for the table is exceeded.</p>",
440
+ "refs": {
441
+ }
442
+ },
443
+ "PutItemInput": {
444
+ "base": null,
445
+ "refs": {
446
+ }
447
+ },
448
+ "PutItemInputAttributeMap": {
449
+ "base": "<p>A map of the attributes for the item, and must include the primary key values that define the item. Other attribute name-value pairs can be provided for the item.</p>",
450
+ "refs": {
451
+ "PutItemInput$Item": null,
452
+ "PutRequest$Item": "<p>The item to put</p>"
453
+ }
454
+ },
455
+ "PutItemOutput": {
456
+ "base": null,
457
+ "refs": {
458
+ }
459
+ },
460
+ "PutRequest": {
461
+ "base": "<p>A container for a Put BatchWrite request</p>",
462
+ "refs": {
463
+ "WriteRequest$PutRequest": null
464
+ }
465
+ },
466
+ "QueryInput": {
467
+ "base": null,
468
+ "refs": {
469
+ }
470
+ },
471
+ "QueryOutput": {
472
+ "base": null,
473
+ "refs": {
474
+ }
475
+ },
476
+ "ResourceInUseException": {
477
+ "base": "<p>This exception is thrown when the resource which is being attempted to be changed is in use.</p>",
478
+ "refs": {
479
+ }
480
+ },
481
+ "ResourceNotFoundException": {
482
+ "base": "<p>This exception is thrown when the resource which is being attempted to be changed is in use.</p>",
483
+ "refs": {
484
+ }
485
+ },
486
+ "ReturnValue": {
487
+ "base": "<p>Use this parameter if you want to get the attribute name-value pairs before or after they are modified. For <code>PUT</code> operations, the possible parameter values are <code>NONE</code> (default) or <code>ALL_OLD</code>. For update operations, the possible parameter values are <code>NONE</code> (default) or <code>ALL_OLD</code>, <code>UPDATED_OLD</code>, <code>ALL_NEW</code> or <code>UPDATED_NEW</code>.</p> <ul> <li> <code>NONE</code>: Nothing is returned.</li> <li> <code>ALL_OLD</code>: Returns the attributes of the item as they were before the operation.</li> <li> <code>UPDATED_OLD</code>: Returns the values of the updated attributes, only, as they were before the operation.</li> <li> <code>ALL_NEW</code>: Returns all the attributes and their new values after the operation.</li> <li> <code>UPDATED_NEW</code>: Returns the values of the updated attributes, only, as they are after the operation.</li> </ul>",
488
+ "refs": {
489
+ "DeleteItemInput$ReturnValues": null,
490
+ "PutItemInput$ReturnValues": null,
491
+ "UpdateItemInput$ReturnValues": null
492
+ }
493
+ },
494
+ "ScalarAttributeType": {
495
+ "base": null,
496
+ "refs": {
497
+ "KeySchemaElement$AttributeType": "<p>The <code>AttributeType</code> of the <code>KeySchemaElement</code> which can be a <code>String</code> or a <code>Number</code>.</p>"
498
+ }
499
+ },
500
+ "ScanInput": {
501
+ "base": null,
502
+ "refs": {
503
+ }
504
+ },
505
+ "ScanOutput": {
506
+ "base": null,
507
+ "refs": {
508
+ }
509
+ },
510
+ "String": {
511
+ "base": null,
512
+ "refs": {
513
+ "FilterConditionMap$key": null
514
+ }
515
+ },
516
+ "StringAttributeValue": {
517
+ "base": null,
518
+ "refs": {
519
+ "AttributeValue$S": "<p>Strings are Unicode with UTF-8 binary encoding. The maximum size is limited by the size of the primary key (1024 bytes as a range part of a key or 2048 bytes as a single part hash key) or the item size (64k).</p>",
520
+ "StringSetAttributeValue$member": null
521
+ }
522
+ },
523
+ "StringSetAttributeValue": {
524
+ "base": null,
525
+ "refs": {
526
+ "AttributeValue$SS": "<p>A set of strings.</p>"
527
+ }
528
+ },
529
+ "TableDescription": {
530
+ "base": null,
531
+ "refs": {
532
+ "CreateTableOutput$TableDescription": null,
533
+ "DeleteTableOutput$TableDescription": null,
534
+ "DescribeTableOutput$Table": null,
535
+ "UpdateTableOutput$TableDescription": null
536
+ }
537
+ },
538
+ "TableName": {
539
+ "base": null,
540
+ "refs": {
541
+ "BatchGetRequestMap$key": null,
542
+ "BatchGetResponseMap$key": null,
543
+ "BatchWriteItemRequestMap$key": null,
544
+ "BatchWriteResponseMap$key": null,
545
+ "CreateTableInput$TableName": "<p>The name of the table you want to create. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
546
+ "DeleteItemInput$TableName": "<p>The name of the table in which you want to delete an item. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
547
+ "DeleteTableInput$TableName": "<p>The name of the table you want to delete. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
548
+ "DescribeTableInput$TableName": "<p>The name of the table you want to describe. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
549
+ "GetItemInput$TableName": "<p>The name of the table in which you want to get an item. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
550
+ "ListTablesInput$ExclusiveStartTableName": "<p>The name of the table that starts the list. If you already ran a <code>ListTables</code> operation and received a <code>LastEvaluatedTableName</code> value in the response, use that value here to continue the list.</p>",
551
+ "ListTablesOutput$LastEvaluatedTableName": "<p>The name of the last table in the current list. Use this value as the <code>ExclusiveStartTableName</code> in a new request to continue the list until all the table names are returned. If this value is null, all table names have been returned.</p>",
552
+ "PutItemInput$TableName": "<p>The name of the table in which you want to put an item. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
553
+ "QueryInput$TableName": "<p>The name of the table in which you want to query. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
554
+ "ScanInput$TableName": "<p>The name of the table in which you want to scan. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
555
+ "TableDescription$TableName": "<p>The name of the table being described.</p>",
556
+ "TableNameList$member": null,
557
+ "UpdateItemInput$TableName": "<p>The name of the table in which you want to update an item. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>",
558
+ "UpdateTableInput$TableName": "<p>The name of the table you want to update. Allowed characters are <code>a-z</code>, <code>A-Z</code>, <code>0-9</code>, <code>_</code> (underscore), <code>-</code> (hyphen) and <code>.</code> (period).</p>"
559
+ }
560
+ },
561
+ "TableNameList": {
562
+ "base": null,
563
+ "refs": {
564
+ "ListTablesOutput$TableNames": null
565
+ }
566
+ },
567
+ "TableStatus": {
568
+ "base": null,
569
+ "refs": {
570
+ "TableDescription$TableStatus": null
571
+ }
572
+ },
573
+ "UpdateItemInput": {
574
+ "base": null,
575
+ "refs": {
576
+ }
577
+ },
578
+ "UpdateItemOutput": {
579
+ "base": null,
580
+ "refs": {
581
+ }
582
+ },
583
+ "UpdateTableInput": {
584
+ "base": null,
585
+ "refs": {
586
+ }
587
+ },
588
+ "UpdateTableOutput": {
589
+ "base": null,
590
+ "refs": {
591
+ }
592
+ },
593
+ "WriteRequest": {
594
+ "base": "<p>This structure is a Union of PutRequest and DeleteRequest. It can contain exactly one of <code>PutRequest</code> or <code>DeleteRequest</code>. Never Both. This is enforced in the code.</p>",
595
+ "refs": {
596
+ "WriteRequests$member": null
597
+ }
598
+ },
599
+ "WriteRequests": {
600
+ "base": null,
601
+ "refs": {
602
+ "BatchWriteItemRequestMap$value": null
603
+ }
604
+ }
605
+ }
606
+ }