@aws-sdk/client-dynamodb 3.786.0 → 3.788.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -74,6 +74,11 @@ declare const BatchGetItemCommand_base: {
|
|
|
74
74
|
* nonexistent items consume the minimum read capacity units according to the type of read.
|
|
75
75
|
* For more information, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#CapacityUnitCalculations">Working with Tables</a> in the <i>Amazon DynamoDB Developer
|
|
76
76
|
* Guide</i>.</p>
|
|
77
|
+
* <note>
|
|
78
|
+
* <p>
|
|
79
|
+
* <code>BatchGetItem</code> will result in a <code>ValidationException</code> if the
|
|
80
|
+
* same key is specified multiple times.</p>
|
|
81
|
+
* </note>
|
|
77
82
|
* @example
|
|
78
83
|
* Use a bare-bones client and the command you need to make an API call.
|
|
79
84
|
* ```javascript
|
|
@@ -464,8 +464,9 @@ export interface OnDemandThroughput {
|
|
|
464
464
|
MaxWriteRequestUnits?: number | undefined;
|
|
465
465
|
}
|
|
466
466
|
/**
|
|
467
|
-
* <p>Represents the provisioned throughput settings for
|
|
468
|
-
*
|
|
467
|
+
* <p>Represents the provisioned throughput settings for the specified global secondary
|
|
468
|
+
* index. You must use <code>ProvisionedThroughput</code> or
|
|
469
|
+
* <code>OnDemandThroughput</code> based on your table’s capacity mode.</p>
|
|
469
470
|
* <p>For current minimum and maximum provisioned throughput values, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html">Service,
|
|
470
471
|
* Account, and Table Quotas</a> in the <i>Amazon DynamoDB Developer
|
|
471
472
|
* Guide</i>.</p>
|
|
@@ -1615,7 +1616,9 @@ export interface CreateGlobalSecondaryIndexAction {
|
|
|
1615
1616
|
/**
|
|
1616
1617
|
* <p>The maximum number of read and write units for the global secondary index being
|
|
1617
1618
|
* created. If you use this parameter, you must specify <code>MaxReadRequestUnits</code>,
|
|
1618
|
-
* <code>MaxWriteRequestUnits</code>, or both
|
|
1619
|
+
* <code>MaxWriteRequestUnits</code>, or both. You must use either
|
|
1620
|
+
* <code>OnDemand Throughput</code> or <code>ProvisionedThroughput</code> based on your table's
|
|
1621
|
+
* capacity mode.</p>
|
|
1619
1622
|
* @public
|
|
1620
1623
|
*/
|
|
1621
1624
|
OnDemandThroughput?: OnDemandThroughput | undefined;
|
|
@@ -1821,8 +1824,9 @@ export declare const TableStatus: {
|
|
|
1821
1824
|
*/
|
|
1822
1825
|
export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus];
|
|
1823
1826
|
/**
|
|
1824
|
-
* <p>Represents the warm throughput value (in read units per second and write units per
|
|
1825
|
-
*
|
|
1827
|
+
* <p>Represents the warm throughput value (in read units per second and write units per second)
|
|
1828
|
+
* of the table. Warm throughput is applicable for DynamoDB Standard-IA tables and specifies
|
|
1829
|
+
* the minimum provisioned capacity maintained for immediate data access.</p>
|
|
1826
1830
|
* @public
|
|
1827
1831
|
*/
|
|
1828
1832
|
export interface TableWarmThroughputDescription {
|
|
@@ -1837,7 +1841,7 @@ export interface TableWarmThroughputDescription {
|
|
|
1837
1841
|
*/
|
|
1838
1842
|
WriteUnitsPerSecond?: number | undefined;
|
|
1839
1843
|
/**
|
|
1840
|
-
* <p>Represents warm throughput value of the base table
|
|
1844
|
+
* <p>Represents warm throughput value of the base table.</p>
|
|
1841
1845
|
* @public
|
|
1842
1846
|
*/
|
|
1843
1847
|
Status?: TableStatus | undefined;
|
|
@@ -4236,8 +4240,9 @@ export interface TableCreationParameters {
|
|
|
4236
4240
|
*/
|
|
4237
4241
|
BillingMode?: BillingMode | undefined;
|
|
4238
4242
|
/**
|
|
4239
|
-
* <p>Represents the provisioned throughput settings for
|
|
4240
|
-
*
|
|
4243
|
+
* <p>Represents the provisioned throughput settings for the specified global secondary
|
|
4244
|
+
* index. You must use <code>ProvisionedThroughput</code> or
|
|
4245
|
+
* <code>OnDemandThroughput</code> based on your table’s capacity mode.</p>
|
|
4241
4246
|
* <p>For current minimum and maximum provisioned throughput values, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html">Service,
|
|
4242
4247
|
* Account, and Table Quotas</a> in the <i>Amazon DynamoDB Developer
|
|
4243
4248
|
* Guide</i>.</p>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dynamodb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.788.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-dynamodb",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.787.0",
|
|
25
25
|
"@aws-sdk/middleware-endpoint-discovery": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.787.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
31
31
|
"@aws-sdk/types": "3.775.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.787.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.787.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.1.0",
|
|
36
36
|
"@smithy/core": "^3.2.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.0.2",
|