@aws-sdk/client-dynamodb 3.787.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 a specified table or index. The
468
- * settings can be modified using the <code>UpdateTable</code> operation.</p>
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.</p>
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
- * second) of the base table.</p>
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..</p>
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 a specified table or index. The
4240
- * settings can be modified using the <code>UpdateTable</code> operation.</p>
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.787.0",
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",