@aws-sdk/client-dynamodb 3.835.0 → 3.840.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.
Files changed (47) hide show
  1. package/dist-cjs/endpoint/ruleset.js +1 -1
  2. package/dist-cjs/index.js +35 -22
  3. package/dist-es/endpoint/ruleset.js +1 -1
  4. package/dist-es/models/models_0.js +22 -12
  5. package/dist-es/protocols/Aws_json1_0.js +4 -3
  6. package/dist-types/commands/BatchWriteItemCommand.d.ts +4 -0
  7. package/dist-types/commands/CreateBackupCommand.d.ts +14 -11
  8. package/dist-types/commands/CreateGlobalTableCommand.d.ts +16 -13
  9. package/dist-types/commands/CreateTableCommand.d.ts +26 -16
  10. package/dist-types/commands/DeleteBackupCommand.d.ts +12 -10
  11. package/dist-types/commands/DeleteItemCommand.d.ts +2 -1
  12. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +18 -13
  13. package/dist-types/commands/DeleteTableCommand.d.ts +26 -20
  14. package/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeExportCommand.d.ts +12 -10
  16. package/dist-types/commands/DescribeGlobalTableCommand.d.ts +2 -2
  17. package/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeImportCommand.d.ts +1 -3
  19. package/dist-types/commands/DescribeTableCommand.d.ts +10 -8
  20. package/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +2 -6
  21. package/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +16 -12
  22. package/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +16 -12
  23. package/dist-types/commands/ExecuteTransactionCommand.d.ts +28 -35
  24. package/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +14 -11
  25. package/dist-types/commands/GetResourcePolicyCommand.d.ts +2 -1
  26. package/dist-types/commands/ImportTableCommand.d.ts +19 -17
  27. package/dist-types/commands/ListExportsCommand.d.ts +12 -10
  28. package/dist-types/commands/ListImportsCommand.d.ts +12 -10
  29. package/dist-types/commands/PutItemCommand.d.ts +2 -1
  30. package/dist-types/commands/PutResourcePolicyCommand.d.ts +18 -13
  31. package/dist-types/commands/RestoreTableFromBackupCommand.d.ts +22 -14
  32. package/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +24 -15
  33. package/dist-types/commands/TagResourceCommand.d.ts +16 -12
  34. package/dist-types/commands/TransactGetItemsCommand.d.ts +7 -8
  35. package/dist-types/commands/TransactWriteItemsCommand.d.ts +28 -35
  36. package/dist-types/commands/UntagResourceCommand.d.ts +16 -12
  37. package/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +3 -2
  38. package/dist-types/commands/UpdateGlobalTableCommand.d.ts +6 -6
  39. package/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +17 -13
  40. package/dist-types/commands/UpdateItemCommand.d.ts +2 -1
  41. package/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +16 -12
  42. package/dist-types/commands/UpdateTableCommand.d.ts +36 -20
  43. package/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +18 -18
  44. package/dist-types/commands/UpdateTimeToLiveCommand.d.ts +16 -12
  45. package/dist-types/models/models_0.d.ts +240 -112
  46. package/dist-types/ts3.4/models/models_0.d.ts +37 -10
  47. package/package.json +20 -20
@@ -35,10 +35,6 @@ declare const DeleteTableCommand_base: {
35
35
  * <code>ResourceInUseException</code>. If the specified table does not exist, DynamoDB
36
36
  * returns a <code>ResourceNotFoundException</code>. If table is already in the
37
37
  * <code>DELETING</code> state, no error is returned. </p>
38
- * <important>
39
- * <p>For global tables, this operation only applies to
40
- * global tables using Version 2019.11.21 (Current version). </p>
41
- * </important>
42
38
  * <note>
43
39
  * <p>DynamoDB might continue to accept data read and write operations, such as
44
40
  * <code>GetItem</code> and <code>PutItem</code>, on a table in the
@@ -76,7 +72,7 @@ declare const DeleteTableCommand_base: {
76
72
  * // KeyType: "HASH" || "RANGE", // required
77
73
  * // },
78
74
  * // ],
79
- * // TableStatus: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
75
+ * // TableStatus: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
80
76
  * // CreationDateTime: new Date("TIMESTAMP"),
81
77
  * // ProvisionedThroughput: { // ProvisionedThroughputDescription
82
78
  * // LastIncreaseDateTime: new Date("TIMESTAMP"),
@@ -161,7 +157,7 @@ declare const DeleteTableCommand_base: {
161
157
  * // Replicas: [ // ReplicaDescriptionList
162
158
  * // { // ReplicaDescription
163
159
  * // RegionName: "STRING_VALUE",
164
- * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
160
+ * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
165
161
  * // ReplicaStatusDescription: "STRING_VALUE",
166
162
  * // ReplicaStatusPercentProgress: "STRING_VALUE",
167
163
  * // KMSMasterKeyId: "STRING_VALUE",
@@ -174,7 +170,7 @@ declare const DeleteTableCommand_base: {
174
170
  * // WarmThroughput: { // TableWarmThroughputDescription
175
171
  * // ReadUnitsPerSecond: Number("long"),
176
172
  * // WriteUnitsPerSecond: Number("long"),
177
- * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
173
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
178
174
  * // },
179
175
  * // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
180
176
  * // { // ReplicaGlobalSecondaryIndexDescription
@@ -199,6 +195,12 @@ declare const DeleteTableCommand_base: {
199
195
  * // },
200
196
  * // },
201
197
  * // ],
198
+ * // GlobalTableWitnesses: [ // GlobalTableWitnessDescriptionList
199
+ * // { // GlobalTableWitnessDescription
200
+ * // RegionName: "STRING_VALUE",
201
+ * // WitnessStatus: "CREATING" || "DELETING" || "ACTIVE",
202
+ * // },
203
+ * // ],
202
204
  * // RestoreSummary: { // RestoreSummary
203
205
  * // SourceBackupArn: "STRING_VALUE",
204
206
  * // SourceTableArn: "STRING_VALUE",
@@ -228,7 +230,7 @@ declare const DeleteTableCommand_base: {
228
230
  * // WarmThroughput: {
229
231
  * // ReadUnitsPerSecond: Number("long"),
230
232
  * // WriteUnitsPerSecond: Number("long"),
231
- * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
233
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
232
234
  * // },
233
235
  * // MultiRegionConsistency: "EVENTUAL" || "STRONG",
234
236
  * // },
@@ -249,19 +251,21 @@ declare const DeleteTableCommand_base: {
249
251
  *
250
252
  * @throws {@link LimitExceededException} (client fault)
251
253
  * <p>There is no limit to the number of daily on-demand backups that can be taken. </p>
252
- * <p>For most purposes, up to 500 simultaneous table operations are allowed per account. These operations
253
- * include <code>CreateTable</code>, <code>UpdateTable</code>,
254
+ * <p>For most purposes, up to 500 simultaneous table operations are allowed per account.
255
+ * These operations include <code>CreateTable</code>, <code>UpdateTable</code>,
254
256
  * <code>DeleteTable</code>,<code>UpdateTimeToLive</code>,
255
257
  * <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>. </p>
256
- * <p>When you are creating a table with one or more secondary
257
- * indexes, you can have up to 250 such requests running at a time. However, if the table or
258
- * index specifications are complex, then DynamoDB might temporarily reduce the number
259
- * of concurrent operations.</p>
260
- * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.</p>
258
+ * <p>When you are creating a table with one or more secondary indexes, you can have up
259
+ * to 250 such requests running at a time. However, if the table or index specifications
260
+ * are complex, then DynamoDB might temporarily reduce the number of concurrent
261
+ * operations.</p>
262
+ * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are
263
+ * allowed per account.</p>
261
264
  * <p>There is a soft account quota of 2,500 tables.</p>
262
- * <p>GetRecords was called with a value of more than 1000 for the limit request parameter.</p>
263
- * <p>More than 2 processes are reading from the same streams shard at the same time. Exceeding
264
- * this limit may result in request throttling.</p>
265
+ * <p>GetRecords was called with a value of more than 1000 for the limit request
266
+ * parameter.</p>
267
+ * <p>More than 2 processes are reading from the same streams shard at the same time.
268
+ * Exceeding this limit may result in request throttling.</p>
265
269
  *
266
270
  * @throws {@link ResourceInUseException} (client fault)
267
271
  * <p>The operation conflicts with the resource's availability. For example:</p>
@@ -270,13 +274,15 @@ declare const DeleteTableCommand_base: {
270
274
  * <p>You attempted to recreate an existing table.</p>
271
275
  * </li>
272
276
  * <li>
273
- * <p>You tried to delete a table currently in the <code>CREATING</code> state.</p>
277
+ * <p>You tried to delete a table currently in the <code>CREATING</code>
278
+ * state.</p>
274
279
  * </li>
275
280
  * <li>
276
281
  * <p>You tried to update a resource that was already being updated.</p>
277
282
  * </li>
278
283
  * </ul>
279
- * <p>When appropriate, wait for the ongoing update to complete and attempt the request again.</p>
284
+ * <p>When appropriate, wait for the ongoing update to complete and attempt the request
285
+ * again.</p>
280
286
  *
281
287
  * @throws {@link ResourceNotFoundException} (client fault)
282
288
  * <p>The operation tried to access a nonexistent table or index. The resource might not
@@ -78,7 +78,8 @@ declare const DescribeContinuousBackupsCommand_base: {
78
78
  *
79
79
  * @throws {@link TableNotFoundException} (client fault)
80
80
  * <p>A source table with the name <code>TableName</code> does not currently exist within
81
- * the subscriber's account or the subscriber is operating in the wrong Amazon Web Services Region.</p>
81
+ * the subscriber's account or the subscriber is operating in the wrong Amazon Web Services
82
+ * Region.</p>
82
83
  *
83
84
  * @throws {@link DynamoDBServiceException}
84
85
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
@@ -85,19 +85,21 @@ declare const DescribeExportCommand_base: {
85
85
  *
86
86
  * @throws {@link LimitExceededException} (client fault)
87
87
  * <p>There is no limit to the number of daily on-demand backups that can be taken. </p>
88
- * <p>For most purposes, up to 500 simultaneous table operations are allowed per account. These operations
89
- * include <code>CreateTable</code>, <code>UpdateTable</code>,
88
+ * <p>For most purposes, up to 500 simultaneous table operations are allowed per account.
89
+ * These operations include <code>CreateTable</code>, <code>UpdateTable</code>,
90
90
  * <code>DeleteTable</code>,<code>UpdateTimeToLive</code>,
91
91
  * <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>. </p>
92
- * <p>When you are creating a table with one or more secondary
93
- * indexes, you can have up to 250 such requests running at a time. However, if the table or
94
- * index specifications are complex, then DynamoDB might temporarily reduce the number
95
- * of concurrent operations.</p>
96
- * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.</p>
92
+ * <p>When you are creating a table with one or more secondary indexes, you can have up
93
+ * to 250 such requests running at a time. However, if the table or index specifications
94
+ * are complex, then DynamoDB might temporarily reduce the number of concurrent
95
+ * operations.</p>
96
+ * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are
97
+ * allowed per account.</p>
97
98
  * <p>There is a soft account quota of 2,500 tables.</p>
98
- * <p>GetRecords was called with a value of more than 1000 for the limit request parameter.</p>
99
- * <p>More than 2 processes are reading from the same streams shard at the same time. Exceeding
100
- * this limit may result in request throttling.</p>
99
+ * <p>GetRecords was called with a value of more than 1000 for the limit request
100
+ * parameter.</p>
101
+ * <p>More than 2 processes are reading from the same streams shard at the same time.
102
+ * Exceeding this limit may result in request throttling.</p>
101
103
  *
102
104
  * @throws {@link DynamoDBServiceException}
103
105
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
@@ -48,7 +48,7 @@ declare const DescribeGlobalTableCommand_base: {
48
48
  * // ReplicationGroup: [ // ReplicaDescriptionList
49
49
  * // { // ReplicaDescription
50
50
  * // RegionName: "STRING_VALUE",
51
- * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
51
+ * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
52
52
  * // ReplicaStatusDescription: "STRING_VALUE",
53
53
  * // ReplicaStatusPercentProgress: "STRING_VALUE",
54
54
  * // KMSMasterKeyId: "STRING_VALUE",
@@ -61,7 +61,7 @@ declare const DescribeGlobalTableCommand_base: {
61
61
  * // WarmThroughput: { // TableWarmThroughputDescription
62
62
  * // ReadUnitsPerSecond: Number("long"),
63
63
  * // WriteUnitsPerSecond: Number("long"),
64
- * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
64
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
65
65
  * // },
66
66
  * // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
67
67
  * // { // ReplicaGlobalSecondaryIndexDescription
@@ -48,7 +48,7 @@ declare const DescribeGlobalTableSettingsCommand_base: {
48
48
  * // ReplicaSettings: [ // ReplicaSettingsDescriptionList
49
49
  * // { // ReplicaSettingsDescription
50
50
  * // RegionName: "STRING_VALUE", // required
51
- * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
51
+ * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
52
52
  * // ReplicaBillingModeSummary: { // BillingModeSummary
53
53
  * // BillingMode: "PROVISIONED" || "PAY_PER_REQUEST",
54
54
  * // LastUpdateToPayPerRequestDateTime: new Date("TIMESTAMP"),
@@ -140,9 +140,7 @@ declare const DescribeImportCommand_base: {
140
140
  * @see {@link DynamoDBClientResolvedConfig | config} for DynamoDBClient's `config` shape.
141
141
  *
142
142
  * @throws {@link ImportNotFoundException} (client fault)
143
- * <p>
144
- * The specified import was not found.
145
- * </p>
143
+ * <p> The specified import was not found. </p>
146
144
  *
147
145
  * @throws {@link DynamoDBServiceException}
148
146
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
@@ -29,10 +29,6 @@ declare const DescribeTableCommand_base: {
29
29
  /**
30
30
  * <p>Returns information about the table, including the current status of the table, when
31
31
  * it was created, the primary key schema, and any indexes on the table.</p>
32
- * <important>
33
- * <p>For global tables, this operation only applies to global tables using Version
34
- * 2019.11.21 (Current version). </p>
35
- * </important>
36
32
  * <note>
37
33
  * <p>If you issue a <code>DescribeTable</code> request immediately after a
38
34
  * <code>CreateTable</code> request, DynamoDB might return a
@@ -67,7 +63,7 @@ declare const DescribeTableCommand_base: {
67
63
  * // KeyType: "HASH" || "RANGE", // required
68
64
  * // },
69
65
  * // ],
70
- * // TableStatus: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
66
+ * // TableStatus: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
71
67
  * // CreationDateTime: new Date("TIMESTAMP"),
72
68
  * // ProvisionedThroughput: { // ProvisionedThroughputDescription
73
69
  * // LastIncreaseDateTime: new Date("TIMESTAMP"),
@@ -152,7 +148,7 @@ declare const DescribeTableCommand_base: {
152
148
  * // Replicas: [ // ReplicaDescriptionList
153
149
  * // { // ReplicaDescription
154
150
  * // RegionName: "STRING_VALUE",
155
- * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
151
+ * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
156
152
  * // ReplicaStatusDescription: "STRING_VALUE",
157
153
  * // ReplicaStatusPercentProgress: "STRING_VALUE",
158
154
  * // KMSMasterKeyId: "STRING_VALUE",
@@ -165,7 +161,7 @@ declare const DescribeTableCommand_base: {
165
161
  * // WarmThroughput: { // TableWarmThroughputDescription
166
162
  * // ReadUnitsPerSecond: Number("long"),
167
163
  * // WriteUnitsPerSecond: Number("long"),
168
- * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
164
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
169
165
  * // },
170
166
  * // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
171
167
  * // { // ReplicaGlobalSecondaryIndexDescription
@@ -190,6 +186,12 @@ declare const DescribeTableCommand_base: {
190
186
  * // },
191
187
  * // },
192
188
  * // ],
189
+ * // GlobalTableWitnesses: [ // GlobalTableWitnessDescriptionList
190
+ * // { // GlobalTableWitnessDescription
191
+ * // RegionName: "STRING_VALUE",
192
+ * // WitnessStatus: "CREATING" || "DELETING" || "ACTIVE",
193
+ * // },
194
+ * // ],
193
195
  * // RestoreSummary: { // RestoreSummary
194
196
  * // SourceBackupArn: "STRING_VALUE",
195
197
  * // SourceTableArn: "STRING_VALUE",
@@ -219,7 +221,7 @@ declare const DescribeTableCommand_base: {
219
221
  * // WarmThroughput: {
220
222
  * // ReadUnitsPerSecond: Number("long"),
221
223
  * // WriteUnitsPerSecond: Number("long"),
222
- * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
224
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
223
225
  * // },
224
226
  * // MultiRegionConsistency: "EVENTUAL" || "STRONG",
225
227
  * // },
@@ -28,10 +28,6 @@ declare const DescribeTableReplicaAutoScalingCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Describes auto scaling settings across replicas of the global table at once.</p>
31
- * <important>
32
- * <p>For global tables, this operation only applies to global tables using Version
33
- * 2019.11.21 (Current version).</p>
34
- * </important>
35
31
  * @example
36
32
  * Use a bare-bones client and the command you need to make an API call.
37
33
  * ```javascript
@@ -46,7 +42,7 @@ declare const DescribeTableReplicaAutoScalingCommand_base: {
46
42
  * // { // DescribeTableReplicaAutoScalingOutput
47
43
  * // TableAutoScalingDescription: { // TableAutoScalingDescription
48
44
  * // TableName: "STRING_VALUE",
49
- * // TableStatus: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
45
+ * // TableStatus: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
50
46
  * // Replicas: [ // ReplicaAutoScalingDescriptionList
51
47
  * // { // ReplicaAutoScalingDescription
52
48
  * // RegionName: "STRING_VALUE",
@@ -124,7 +120,7 @@ declare const DescribeTableReplicaAutoScalingCommand_base: {
124
120
  * // },
125
121
  * // ],
126
122
  * // },
127
- * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
123
+ * // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
128
124
  * // },
129
125
  * // ],
130
126
  * // },
@@ -68,19 +68,21 @@ declare const DisableKinesisStreamingDestinationCommand_base: {
68
68
  *
69
69
  * @throws {@link LimitExceededException} (client fault)
70
70
  * <p>There is no limit to the number of daily on-demand backups that can be taken. </p>
71
- * <p>For most purposes, up to 500 simultaneous table operations are allowed per account. These operations
72
- * include <code>CreateTable</code>, <code>UpdateTable</code>,
71
+ * <p>For most purposes, up to 500 simultaneous table operations are allowed per account.
72
+ * These operations include <code>CreateTable</code>, <code>UpdateTable</code>,
73
73
  * <code>DeleteTable</code>,<code>UpdateTimeToLive</code>,
74
74
  * <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>. </p>
75
- * <p>When you are creating a table with one or more secondary
76
- * indexes, you can have up to 250 such requests running at a time. However, if the table or
77
- * index specifications are complex, then DynamoDB might temporarily reduce the number
78
- * of concurrent operations.</p>
79
- * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.</p>
75
+ * <p>When you are creating a table with one or more secondary indexes, you can have up
76
+ * to 250 such requests running at a time. However, if the table or index specifications
77
+ * are complex, then DynamoDB might temporarily reduce the number of concurrent
78
+ * operations.</p>
79
+ * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are
80
+ * allowed per account.</p>
80
81
  * <p>There is a soft account quota of 2,500 tables.</p>
81
- * <p>GetRecords was called with a value of more than 1000 for the limit request parameter.</p>
82
- * <p>More than 2 processes are reading from the same streams shard at the same time. Exceeding
83
- * this limit may result in request throttling.</p>
82
+ * <p>GetRecords was called with a value of more than 1000 for the limit request
83
+ * parameter.</p>
84
+ * <p>More than 2 processes are reading from the same streams shard at the same time.
85
+ * Exceeding this limit may result in request throttling.</p>
84
86
  *
85
87
  * @throws {@link ResourceInUseException} (client fault)
86
88
  * <p>The operation conflicts with the resource's availability. For example:</p>
@@ -89,13 +91,15 @@ declare const DisableKinesisStreamingDestinationCommand_base: {
89
91
  * <p>You attempted to recreate an existing table.</p>
90
92
  * </li>
91
93
  * <li>
92
- * <p>You tried to delete a table currently in the <code>CREATING</code> state.</p>
94
+ * <p>You tried to delete a table currently in the <code>CREATING</code>
95
+ * state.</p>
93
96
  * </li>
94
97
  * <li>
95
98
  * <p>You tried to update a resource that was already being updated.</p>
96
99
  * </li>
97
100
  * </ul>
98
- * <p>When appropriate, wait for the ongoing update to complete and attempt the request again.</p>
101
+ * <p>When appropriate, wait for the ongoing update to complete and attempt the request
102
+ * again.</p>
99
103
  *
100
104
  * @throws {@link ResourceNotFoundException} (client fault)
101
105
  * <p>The operation tried to access a nonexistent table or index. The resource might not
@@ -70,19 +70,21 @@ declare const EnableKinesisStreamingDestinationCommand_base: {
70
70
  *
71
71
  * @throws {@link LimitExceededException} (client fault)
72
72
  * <p>There is no limit to the number of daily on-demand backups that can be taken. </p>
73
- * <p>For most purposes, up to 500 simultaneous table operations are allowed per account. These operations
74
- * include <code>CreateTable</code>, <code>UpdateTable</code>,
73
+ * <p>For most purposes, up to 500 simultaneous table operations are allowed per account.
74
+ * These operations include <code>CreateTable</code>, <code>UpdateTable</code>,
75
75
  * <code>DeleteTable</code>,<code>UpdateTimeToLive</code>,
76
76
  * <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>. </p>
77
- * <p>When you are creating a table with one or more secondary
78
- * indexes, you can have up to 250 such requests running at a time. However, if the table or
79
- * index specifications are complex, then DynamoDB might temporarily reduce the number
80
- * of concurrent operations.</p>
81
- * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.</p>
77
+ * <p>When you are creating a table with one or more secondary indexes, you can have up
78
+ * to 250 such requests running at a time. However, if the table or index specifications
79
+ * are complex, then DynamoDB might temporarily reduce the number of concurrent
80
+ * operations.</p>
81
+ * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are
82
+ * allowed per account.</p>
82
83
  * <p>There is a soft account quota of 2,500 tables.</p>
83
- * <p>GetRecords was called with a value of more than 1000 for the limit request parameter.</p>
84
- * <p>More than 2 processes are reading from the same streams shard at the same time. Exceeding
85
- * this limit may result in request throttling.</p>
84
+ * <p>GetRecords was called with a value of more than 1000 for the limit request
85
+ * parameter.</p>
86
+ * <p>More than 2 processes are reading from the same streams shard at the same time.
87
+ * Exceeding this limit may result in request throttling.</p>
86
88
  *
87
89
  * @throws {@link ResourceInUseException} (client fault)
88
90
  * <p>The operation conflicts with the resource's availability. For example:</p>
@@ -91,13 +93,15 @@ declare const EnableKinesisStreamingDestinationCommand_base: {
91
93
  * <p>You attempted to recreate an existing table.</p>
92
94
  * </li>
93
95
  * <li>
94
- * <p>You tried to delete a table currently in the <code>CREATING</code> state.</p>
96
+ * <p>You tried to delete a table currently in the <code>CREATING</code>
97
+ * state.</p>
95
98
  * </li>
96
99
  * <li>
97
100
  * <p>You tried to update a resource that was already being updated.</p>
98
101
  * </li>
99
102
  * </ul>
100
- * <p>When appropriate, wait for the ongoing update to complete and attempt the request again.</p>
103
+ * <p>When appropriate, wait for the ongoing update to complete and attempt the request
104
+ * again.</p>
101
105
  *
102
106
  * @throws {@link ResourceNotFoundException} (client fault)
103
107
  * <p>The operation tried to access a nonexistent table or index. The resource might not
@@ -236,11 +236,10 @@ declare const ExecuteTransactionCommand_base: {
236
236
  * <p>There is a user error, such as an invalid data format.</p>
237
237
  * </li>
238
238
  * <li>
239
- * <p>
240
- * There is an ongoing <code>TransactWriteItems</code> operation that conflicts with a concurrent
241
- * <code>TransactWriteItems</code> request. In this case the <code>TransactWriteItems</code> operation
242
- * fails with a <code>TransactionCanceledException</code>.
243
- * </p>
239
+ * <p> There is an ongoing <code>TransactWriteItems</code> operation that
240
+ * conflicts with a concurrent <code>TransactWriteItems</code> request. In this
241
+ * case the <code>TransactWriteItems</code> operation fails with a
242
+ * <code>TransactionCanceledException</code>. </p>
244
243
  * </li>
245
244
  * </ul>
246
245
  * <p>DynamoDB cancels a <code>TransactGetItems</code> request under the
@@ -385,9 +384,9 @@ declare const ExecuteTransactionCommand_base: {
385
384
  * global secondary indexes. DynamoDB is automatically
386
385
  * scaling your index so please try again shortly.</p>
387
386
  * <note>
388
- * <p>This message is returned when writes get throttled on
389
- * an On-Demand GSI as DynamoDB is automatically
390
- * scaling the GSI.</p>
387
+ * <p>This message is returned when writes get throttled on an
388
+ * On-Demand GSI as DynamoDB is automatically scaling
389
+ * the GSI.</p>
391
390
  * </note>
392
391
  * </li>
393
392
  * </ul>
@@ -449,51 +448,44 @@ declare const ExecuteTransactionCommand_base: {
449
448
  *
450
449
  * @throws {@link TransactionInProgressException} (client fault)
451
450
  * <p>The transaction with the given request token is already in progress.</p>
452
- * <p>
453
- * Recommended Settings
454
- * </p>
451
+ * <p> Recommended Settings </p>
455
452
  * <note>
456
- * <p>
457
- * This is a general recommendation for handling the <code>TransactionInProgressException</code>. These settings help
458
- * ensure that the client retries will trigger completion of the ongoing <code>TransactWriteItems</code> request.
459
- * </p>
453
+ * <p> This is a general recommendation for handling the
454
+ * <code>TransactionInProgressException</code>. These settings help ensure that the
455
+ * client retries will trigger completion of the ongoing
456
+ * <code>TransactWriteItems</code> request. </p>
460
457
  * </note>
461
458
  * <ul>
462
459
  * <li>
463
- * <p>
464
- * Set <code>clientExecutionTimeout</code> to a value that allows at least one retry to be processed after 5
465
- * seconds have elapsed since the first attempt for the <code>TransactWriteItems</code> operation.
466
- * </p>
460
+ * <p> Set <code>clientExecutionTimeout</code> to a value that allows at least one
461
+ * retry to be processed after 5 seconds have elapsed since the first attempt for
462
+ * the <code>TransactWriteItems</code> operation. </p>
467
463
  * </li>
468
464
  * <li>
469
- * <p>
470
- * Set <code>socketTimeout</code> to a value a little lower than the <code>requestTimeout</code> setting.
471
- * </p>
465
+ * <p> Set <code>socketTimeout</code> to a value a little lower than the
466
+ * <code>requestTimeout</code> setting. </p>
472
467
  * </li>
473
468
  * <li>
474
469
  * <p>
475
- * <code>requestTimeout</code> should be set based on the time taken for the individual retries of a single
476
- * HTTP request for your use case, but setting it to 1 second or higher should work well to reduce chances of
477
- * retries and <code>TransactionInProgressException</code> errors.
478
- * </p>
470
+ * <code>requestTimeout</code> should be set based on the time taken for the
471
+ * individual retries of a single HTTP request for your use case, but setting it to
472
+ * 1 second or higher should work well to reduce chances of retries and
473
+ * <code>TransactionInProgressException</code> errors. </p>
479
474
  * </li>
480
475
  * <li>
481
- * <p>
482
- * Use exponential backoff when retrying and tune backoff if needed.
483
- * </p>
476
+ * <p> Use exponential backoff when retrying and tune backoff if needed. </p>
484
477
  * </li>
485
478
  * </ul>
486
- * <p>
487
- * Assuming <a href="https://github.com/aws/aws-sdk-java/blob/fd409dee8ae23fb8953e0bb4dbde65536a7e0514/aws-java-sdk-core/src/main/java/com/amazonaws/retry/PredefinedRetryPolicies.java#L97">default retry policy</a>,
488
- * example timeout settings based on the guidelines above are as follows:
489
- * </p>
479
+ * <p> Assuming <a href="https://github.com/aws/aws-sdk-java/blob/fd409dee8ae23fb8953e0bb4dbde65536a7e0514/aws-java-sdk-core/src/main/java/com/amazonaws/retry/PredefinedRetryPolicies.java#L97">default retry policy</a>, example timeout settings based on the guidelines
480
+ * above are as follows: </p>
490
481
  * <p>Example timeline:</p>
491
482
  * <ul>
492
483
  * <li>
493
484
  * <p>0-1000 first attempt</p>
494
485
  * </li>
495
486
  * <li>
496
- * <p>1000-1500 first sleep/delay (default retry policy uses 500 ms as base delay for 4xx errors)</p>
487
+ * <p>1000-1500 first sleep/delay (default retry policy uses 500 ms as base delay
488
+ * for 4xx errors)</p>
497
489
  * </li>
498
490
  * <li>
499
491
  * <p>1500-2500 second attempt</p>
@@ -508,7 +500,8 @@ declare const ExecuteTransactionCommand_base: {
508
500
  * <p>4500-6500 third sleep/delay (500 * 2^2)</p>
509
501
  * </li>
510
502
  * <li>
511
- * <p>6500-7500 fourth attempt (this can trigger inline recovery since 5 seconds have elapsed since the first attempt reached TC)</p>
503
+ * <p>6500-7500 fourth attempt (this can trigger inline recovery since 5 seconds
504
+ * have elapsed since the first attempt reached TC)</p>
512
505
  * </li>
513
506
  * </ul>
514
507
  *
@@ -105,26 +105,29 @@ declare const ExportTableToPointInTimeCommand_base: {
105
105
  *
106
106
  * @throws {@link LimitExceededException} (client fault)
107
107
  * <p>There is no limit to the number of daily on-demand backups that can be taken. </p>
108
- * <p>For most purposes, up to 500 simultaneous table operations are allowed per account. These operations
109
- * include <code>CreateTable</code>, <code>UpdateTable</code>,
108
+ * <p>For most purposes, up to 500 simultaneous table operations are allowed per account.
109
+ * These operations include <code>CreateTable</code>, <code>UpdateTable</code>,
110
110
  * <code>DeleteTable</code>,<code>UpdateTimeToLive</code>,
111
111
  * <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>. </p>
112
- * <p>When you are creating a table with one or more secondary
113
- * indexes, you can have up to 250 such requests running at a time. However, if the table or
114
- * index specifications are complex, then DynamoDB might temporarily reduce the number
115
- * of concurrent operations.</p>
116
- * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.</p>
112
+ * <p>When you are creating a table with one or more secondary indexes, you can have up
113
+ * to 250 such requests running at a time. However, if the table or index specifications
114
+ * are complex, then DynamoDB might temporarily reduce the number of concurrent
115
+ * operations.</p>
116
+ * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are
117
+ * allowed per account.</p>
117
118
  * <p>There is a soft account quota of 2,500 tables.</p>
118
- * <p>GetRecords was called with a value of more than 1000 for the limit request parameter.</p>
119
- * <p>More than 2 processes are reading from the same streams shard at the same time. Exceeding
120
- * this limit may result in request throttling.</p>
119
+ * <p>GetRecords was called with a value of more than 1000 for the limit request
120
+ * parameter.</p>
121
+ * <p>More than 2 processes are reading from the same streams shard at the same time.
122
+ * Exceeding this limit may result in request throttling.</p>
121
123
  *
122
124
  * @throws {@link PointInTimeRecoveryUnavailableException} (client fault)
123
125
  * <p>Point in time recovery has not yet been enabled for this source table.</p>
124
126
  *
125
127
  * @throws {@link TableNotFoundException} (client fault)
126
128
  * <p>A source table with the name <code>TableName</code> does not currently exist within
127
- * the subscriber's account or the subscriber is operating in the wrong Amazon Web Services Region.</p>
129
+ * the subscriber's account or the subscriber is operating in the wrong Amazon Web Services
130
+ * Region.</p>
128
131
  *
129
132
  * @throws {@link DynamoDBServiceException}
130
133
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
@@ -94,7 +94,8 @@ declare const GetResourcePolicyCommand_base: {
94
94
  *
95
95
  * @throws {@link PolicyNotFoundException} (client fault)
96
96
  * <p>The operation tried to access a nonexistent resource-based policy.</p>
97
- * <p>If you specified an <code>ExpectedRevisionId</code>, it's possible that a policy is present for the resource but its revision ID didn't match the expected value.</p>
97
+ * <p>If you specified an <code>ExpectedRevisionId</code>, it's possible that a policy is
98
+ * present for the resource but its revision ID didn't match the expected value.</p>
98
99
  *
99
100
  * @throws {@link ResourceNotFoundException} (client fault)
100
101
  * <p>The operation tried to access a nonexistent table or index. The resource might not