@@ -101,6 +101,10 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
101
101
* MaxReadRequestUnits: Number("long"),
102
102
* MaxWriteRequestUnits: Number("long"),
103
103
* },
104
+ * WarmThroughput: { // WarmThroughput
105
+ * ReadUnitsPerSecond: Number("long"),
106
+ * WriteUnitsPerSecond: Number("long"),
107
+ * },
104
108
* },
105
109
* ],
106
110
* BillingMode: "PROVISIONED" || "PAY_PER_REQUEST",
@@ -125,6 +129,10 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
125
129
* ],
126
130
* TableClass: "STANDARD" || "STANDARD_INFREQUENT_ACCESS",
127
131
* DeletionProtectionEnabled: true || false,
132
+ * WarmThroughput: {
133
+ * ReadUnitsPerSecond: Number("long"),
134
+ * WriteUnitsPerSecond: Number("long"),
135
+ * },
128
136
* ResourcePolicy: "STRING_VALUE",
129
137
* OnDemandThroughput: {
130
138
* MaxReadRequestUnits: Number("long"),
@@ -216,6 +224,11 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
216
224
* // MaxReadRequestUnits: Number("long"),
217
225
* // MaxWriteRequestUnits: Number("long"),
218
226
* // },
227
+ * // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
228
+ * // ReadUnitsPerSecond: Number("long"),
229
+ * // WriteUnitsPerSecond: Number("long"),
230
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
231
+ * // },
219
232
* // },
220
233
* // ],
221
234
* // StreamSpecification: { // StreamSpecification
@@ -238,6 +251,11 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
238
251
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
239
252
* // MaxReadRequestUnits: Number("long"),
240
253
* // },
254
+ * // WarmThroughput: { // TableWarmThroughputDescription
255
+ * // ReadUnitsPerSecond: Number("long"),
256
+ * // WriteUnitsPerSecond: Number("long"),
257
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
258
+ * // },
241
259
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
242
260
* // { // ReplicaGlobalSecondaryIndexDescription
243
261
* // IndexName: "STRING_VALUE",
@@ -247,6 +265,11 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
247
265
* // OnDemandThroughputOverride: {
248
266
* // MaxReadRequestUnits: Number("long"),
249
267
* // },
268
+ * // WarmThroughput: {
269
+ * // ReadUnitsPerSecond: Number("long"),
270
+ * // WriteUnitsPerSecond: Number("long"),
271
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
272
+ * // },
250
273
* // },
251
274
* // ],
252
275
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),
@@ -282,6 +305,11 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
282
305
* // MaxReadRequestUnits: Number("long"),
283
306
* // MaxWriteRequestUnits: Number("long"),
284
307
* // },
308
+ * // WarmThroughput: {
309
+ * // ReadUnitsPerSecond: Number("long"),
310
+ * // WriteUnitsPerSecond: Number("long"),
311
+ * // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
312
+ * // },
285
313
* // },
286
314
* // };
287
315
*
0 commit comments