Skip to content

Commit 0ca3c21

Browse files
author
awstools
committedNov 13, 2024
feat(client-dynamodb): This release includes supports the new WarmThroughput feature for DynamoDB. You can now provide an optional WarmThroughput attribute for CreateTable or UpdateTable APIs to pre-warm your table or global secondary index. You can also use DescribeTable to see the latest WarmThroughput value.
1 parent c8abb2e commit 0ca3c21

14 files changed

+483
-35
lines changed
 

‎clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts

+10
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ export interface CreateGlobalTableCommandOutput extends CreateGlobalTableOutput,
114114
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
115115
* // MaxReadRequestUnits: Number("long"),
116116
* // },
117+
* // WarmThroughput: { // TableWarmThroughputDescription
118+
* // ReadUnitsPerSecond: Number("long"),
119+
* // WriteUnitsPerSecond: Number("long"),
120+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
121+
* // },
117122
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
118123
* // { // ReplicaGlobalSecondaryIndexDescription
119124
* // IndexName: "STRING_VALUE",
@@ -123,6 +128,11 @@ export interface CreateGlobalTableCommandOutput extends CreateGlobalTableOutput,
123128
* // OnDemandThroughputOverride: {
124129
* // MaxReadRequestUnits: Number("long"),
125130
* // },
131+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
132+
* // ReadUnitsPerSecond: Number("long"),
133+
* // WriteUnitsPerSecond: Number("long"),
134+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
135+
* // },
126136
* // },
127137
* // ],
128138
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),

‎clients/client-dynamodb/src/commands/CreateTableCommand.ts

+28
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
101101
* MaxReadRequestUnits: Number("long"),
102102
* MaxWriteRequestUnits: Number("long"),
103103
* },
104+
* WarmThroughput: { // WarmThroughput
105+
* ReadUnitsPerSecond: Number("long"),
106+
* WriteUnitsPerSecond: Number("long"),
107+
* },
104108
* },
105109
* ],
106110
* BillingMode: "PROVISIONED" || "PAY_PER_REQUEST",
@@ -125,6 +129,10 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
125129
* ],
126130
* TableClass: "STANDARD" || "STANDARD_INFREQUENT_ACCESS",
127131
* DeletionProtectionEnabled: true || false,
132+
* WarmThroughput: {
133+
* ReadUnitsPerSecond: Number("long"),
134+
* WriteUnitsPerSecond: Number("long"),
135+
* },
128136
* ResourcePolicy: "STRING_VALUE",
129137
* OnDemandThroughput: {
130138
* MaxReadRequestUnits: Number("long"),
@@ -216,6 +224,11 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
216224
* // MaxReadRequestUnits: Number("long"),
217225
* // MaxWriteRequestUnits: Number("long"),
218226
* // },
227+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
228+
* // ReadUnitsPerSecond: Number("long"),
229+
* // WriteUnitsPerSecond: Number("long"),
230+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
231+
* // },
219232
* // },
220233
* // ],
221234
* // StreamSpecification: { // StreamSpecification
@@ -238,6 +251,11 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
238251
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
239252
* // MaxReadRequestUnits: Number("long"),
240253
* // },
254+
* // WarmThroughput: { // TableWarmThroughputDescription
255+
* // ReadUnitsPerSecond: Number("long"),
256+
* // WriteUnitsPerSecond: Number("long"),
257+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
258+
* // },
241259
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
242260
* // { // ReplicaGlobalSecondaryIndexDescription
243261
* // IndexName: "STRING_VALUE",
@@ -247,6 +265,11 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
247265
* // OnDemandThroughputOverride: {
248266
* // MaxReadRequestUnits: Number("long"),
249267
* // },
268+
* // WarmThroughput: {
269+
* // ReadUnitsPerSecond: Number("long"),
270+
* // WriteUnitsPerSecond: Number("long"),
271+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
272+
* // },
250273
* // },
251274
* // ],
252275
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),
@@ -282,6 +305,11 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB
282305
* // MaxReadRequestUnits: Number("long"),
283306
* // MaxWriteRequestUnits: Number("long"),
284307
* // },
308+
* // WarmThroughput: {
309+
* // ReadUnitsPerSecond: Number("long"),
310+
* // WriteUnitsPerSecond: Number("long"),
311+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
312+
* // },
285313
* // },
286314
* // };
287315
*

‎clients/client-dynamodb/src/commands/DeleteTableCommand.ts

+20
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,11 @@ export interface DeleteTableCommandOutput extends DeleteTableOutput, __MetadataB
145145
* // MaxReadRequestUnits: Number("long"),
146146
* // MaxWriteRequestUnits: Number("long"),
147147
* // },
148+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
149+
* // ReadUnitsPerSecond: Number("long"),
150+
* // WriteUnitsPerSecond: Number("long"),
151+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
152+
* // },
148153
* // },
149154
* // ],
150155
* // StreamSpecification: { // StreamSpecification
@@ -167,6 +172,11 @@ export interface DeleteTableCommandOutput extends DeleteTableOutput, __MetadataB
167172
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
168173
* // MaxReadRequestUnits: Number("long"),
169174
* // },
175+
* // WarmThroughput: { // TableWarmThroughputDescription
176+
* // ReadUnitsPerSecond: Number("long"),
177+
* // WriteUnitsPerSecond: Number("long"),
178+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
179+
* // },
170180
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
171181
* // { // ReplicaGlobalSecondaryIndexDescription
172182
* // IndexName: "STRING_VALUE",
@@ -176,6 +186,11 @@ export interface DeleteTableCommandOutput extends DeleteTableOutput, __MetadataB
176186
* // OnDemandThroughputOverride: {
177187
* // MaxReadRequestUnits: Number("long"),
178188
* // },
189+
* // WarmThroughput: {
190+
* // ReadUnitsPerSecond: Number("long"),
191+
* // WriteUnitsPerSecond: Number("long"),
192+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
193+
* // },
179194
* // },
180195
* // ],
181196
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),
@@ -211,6 +226,11 @@ export interface DeleteTableCommandOutput extends DeleteTableOutput, __MetadataB
211226
* // MaxReadRequestUnits: Number("long"),
212227
* // MaxWriteRequestUnits: Number("long"),
213228
* // },
229+
* // WarmThroughput: {
230+
* // ReadUnitsPerSecond: Number("long"),
231+
* // WriteUnitsPerSecond: Number("long"),
232+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
233+
* // },
214234
* // },
215235
* // };
216236
*

‎clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts

+10
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ export interface DescribeGlobalTableCommandOutput extends DescribeGlobalTableOut
5959
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
6060
* // MaxReadRequestUnits: Number("long"),
6161
* // },
62+
* // WarmThroughput: { // TableWarmThroughputDescription
63+
* // ReadUnitsPerSecond: Number("long"),
64+
* // WriteUnitsPerSecond: Number("long"),
65+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
66+
* // },
6267
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
6368
* // { // ReplicaGlobalSecondaryIndexDescription
6469
* // IndexName: "STRING_VALUE",
@@ -68,6 +73,11 @@ export interface DescribeGlobalTableCommandOutput extends DescribeGlobalTableOut
6873
* // OnDemandThroughputOverride: {
6974
* // MaxReadRequestUnits: Number("long"),
7075
* // },
76+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
77+
* // ReadUnitsPerSecond: Number("long"),
78+
* // WriteUnitsPerSecond: Number("long"),
79+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
80+
* // },
7181
* // },
7282
* // ],
7383
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),

‎clients/client-dynamodb/src/commands/DescribeImportCommand.ts

+4
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ export interface DescribeImportCommandOutput extends DescribeImportOutput, __Met
115115
* // MaxReadRequestUnits: Number("long"),
116116
* // MaxWriteRequestUnits: Number("long"),
117117
* // },
118+
* // WarmThroughput: { // WarmThroughput
119+
* // ReadUnitsPerSecond: Number("long"),
120+
* // WriteUnitsPerSecond: Number("long"),
121+
* // },
118122
* // },
119123
* // ],
120124
* // },

‎clients/client-dynamodb/src/commands/DescribeTableCommand.ts

+20
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,11 @@ export interface DescribeTableCommandOutput extends DescribeTableOutput, __Metad
136136
* // MaxReadRequestUnits: Number("long"),
137137
* // MaxWriteRequestUnits: Number("long"),
138138
* // },
139+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
140+
* // ReadUnitsPerSecond: Number("long"),
141+
* // WriteUnitsPerSecond: Number("long"),
142+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
143+
* // },
139144
* // },
140145
* // ],
141146
* // StreamSpecification: { // StreamSpecification
@@ -158,6 +163,11 @@ export interface DescribeTableCommandOutput extends DescribeTableOutput, __Metad
158163
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
159164
* // MaxReadRequestUnits: Number("long"),
160165
* // },
166+
* // WarmThroughput: { // TableWarmThroughputDescription
167+
* // ReadUnitsPerSecond: Number("long"),
168+
* // WriteUnitsPerSecond: Number("long"),
169+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
170+
* // },
161171
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
162172
* // { // ReplicaGlobalSecondaryIndexDescription
163173
* // IndexName: "STRING_VALUE",
@@ -167,6 +177,11 @@ export interface DescribeTableCommandOutput extends DescribeTableOutput, __Metad
167177
* // OnDemandThroughputOverride: {
168178
* // MaxReadRequestUnits: Number("long"),
169179
* // },
180+
* // WarmThroughput: {
181+
* // ReadUnitsPerSecond: Number("long"),
182+
* // WriteUnitsPerSecond: Number("long"),
183+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
184+
* // },
170185
* // },
171186
* // ],
172187
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),
@@ -202,6 +217,11 @@ export interface DescribeTableCommandOutput extends DescribeTableOutput, __Metad
202217
* // MaxReadRequestUnits: Number("long"),
203218
* // MaxWriteRequestUnits: Number("long"),
204219
* // },
220+
* // WarmThroughput: {
221+
* // ReadUnitsPerSecond: Number("long"),
222+
* // WriteUnitsPerSecond: Number("long"),
223+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
224+
* // },
205225
* // },
206226
* // };
207227
*

‎clients/client-dynamodb/src/commands/ImportTableCommand.ts

+8
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ export interface ImportTableCommandOutput extends ImportTableOutput, __MetadataB
103103
* MaxReadRequestUnits: Number("long"),
104104
* MaxWriteRequestUnits: Number("long"),
105105
* },
106+
* WarmThroughput: { // WarmThroughput
107+
* ReadUnitsPerSecond: Number("long"),
108+
* WriteUnitsPerSecond: Number("long"),
109+
* },
106110
* },
107111
* ],
108112
* },
@@ -184,6 +188,10 @@ export interface ImportTableCommandOutput extends ImportTableOutput, __MetadataB
184188
* // MaxReadRequestUnits: Number("long"),
185189
* // MaxWriteRequestUnits: Number("long"),
186190
* // },
191+
* // WarmThroughput: { // WarmThroughput
192+
* // ReadUnitsPerSecond: Number("long"),
193+
* // WriteUnitsPerSecond: Number("long"),
194+
* // },
187195
* // },
188196
* // ],
189197
* // },

‎clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts

+24
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ export interface RestoreTableFromBackupCommandOutput extends RestoreTableFromBac
8686
* MaxReadRequestUnits: Number("long"),
8787
* MaxWriteRequestUnits: Number("long"),
8888
* },
89+
* WarmThroughput: { // WarmThroughput
90+
* ReadUnitsPerSecond: Number("long"),
91+
* WriteUnitsPerSecond: Number("long"),
92+
* },
8993
* },
9094
* ],
9195
* LocalSecondaryIndexOverride: [ // LocalSecondaryIndexList
@@ -204,6 +208,11 @@ export interface RestoreTableFromBackupCommandOutput extends RestoreTableFromBac
204208
* // MaxReadRequestUnits: Number("long"),
205209
* // MaxWriteRequestUnits: Number("long"),
206210
* // },
211+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
212+
* // ReadUnitsPerSecond: Number("long"),
213+
* // WriteUnitsPerSecond: Number("long"),
214+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
215+
* // },
207216
* // },
208217
* // ],
209218
* // StreamSpecification: { // StreamSpecification
@@ -226,6 +235,11 @@ export interface RestoreTableFromBackupCommandOutput extends RestoreTableFromBac
226235
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
227236
* // MaxReadRequestUnits: Number("long"),
228237
* // },
238+
* // WarmThroughput: { // TableWarmThroughputDescription
239+
* // ReadUnitsPerSecond: Number("long"),
240+
* // WriteUnitsPerSecond: Number("long"),
241+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
242+
* // },
229243
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
230244
* // { // ReplicaGlobalSecondaryIndexDescription
231245
* // IndexName: "STRING_VALUE",
@@ -235,6 +249,11 @@ export interface RestoreTableFromBackupCommandOutput extends RestoreTableFromBac
235249
* // OnDemandThroughputOverride: {
236250
* // MaxReadRequestUnits: Number("long"),
237251
* // },
252+
* // WarmThroughput: {
253+
* // ReadUnitsPerSecond: Number("long"),
254+
* // WriteUnitsPerSecond: Number("long"),
255+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
256+
* // },
238257
* // },
239258
* // ],
240259
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),
@@ -270,6 +289,11 @@ export interface RestoreTableFromBackupCommandOutput extends RestoreTableFromBac
270289
* // MaxReadRequestUnits: Number("long"),
271290
* // MaxWriteRequestUnits: Number("long"),
272291
* // },
292+
* // WarmThroughput: {
293+
* // ReadUnitsPerSecond: Number("long"),
294+
* // WriteUnitsPerSecond: Number("long"),
295+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
296+
* // },
273297
* // },
274298
* // };
275299
*

‎clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts

+24
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ export interface RestoreTableToPointInTimeCommandOutput extends RestoreTableToPo
114114
* MaxReadRequestUnits: Number("long"),
115115
* MaxWriteRequestUnits: Number("long"),
116116
* },
117+
* WarmThroughput: { // WarmThroughput
118+
* ReadUnitsPerSecond: Number("long"),
119+
* WriteUnitsPerSecond: Number("long"),
120+
* },
117121
* },
118122
* ],
119123
* LocalSecondaryIndexOverride: [ // LocalSecondaryIndexList
@@ -232,6 +236,11 @@ export interface RestoreTableToPointInTimeCommandOutput extends RestoreTableToPo
232236
* // MaxReadRequestUnits: Number("long"),
233237
* // MaxWriteRequestUnits: Number("long"),
234238
* // },
239+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
240+
* // ReadUnitsPerSecond: Number("long"),
241+
* // WriteUnitsPerSecond: Number("long"),
242+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
243+
* // },
235244
* // },
236245
* // ],
237246
* // StreamSpecification: { // StreamSpecification
@@ -254,6 +263,11 @@ export interface RestoreTableToPointInTimeCommandOutput extends RestoreTableToPo
254263
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
255264
* // MaxReadRequestUnits: Number("long"),
256265
* // },
266+
* // WarmThroughput: { // TableWarmThroughputDescription
267+
* // ReadUnitsPerSecond: Number("long"),
268+
* // WriteUnitsPerSecond: Number("long"),
269+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
270+
* // },
257271
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
258272
* // { // ReplicaGlobalSecondaryIndexDescription
259273
* // IndexName: "STRING_VALUE",
@@ -263,6 +277,11 @@ export interface RestoreTableToPointInTimeCommandOutput extends RestoreTableToPo
263277
* // OnDemandThroughputOverride: {
264278
* // MaxReadRequestUnits: Number("long"),
265279
* // },
280+
* // WarmThroughput: {
281+
* // ReadUnitsPerSecond: Number("long"),
282+
* // WriteUnitsPerSecond: Number("long"),
283+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
284+
* // },
266285
* // },
267286
* // ],
268287
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),
@@ -298,6 +317,11 @@ export interface RestoreTableToPointInTimeCommandOutput extends RestoreTableToPo
298317
* // MaxReadRequestUnits: Number("long"),
299318
* // MaxWriteRequestUnits: Number("long"),
300319
* // },
320+
* // WarmThroughput: {
321+
* // ReadUnitsPerSecond: Number("long"),
322+
* // WriteUnitsPerSecond: Number("long"),
323+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
324+
* // },
301325
* // },
302326
* // };
303327
*

‎clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts

+10
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ export interface UpdateGlobalTableCommandOutput extends UpdateGlobalTableOutput,
9595
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
9696
* // MaxReadRequestUnits: Number("long"),
9797
* // },
98+
* // WarmThroughput: { // TableWarmThroughputDescription
99+
* // ReadUnitsPerSecond: Number("long"),
100+
* // WriteUnitsPerSecond: Number("long"),
101+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED",
102+
* // },
98103
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
99104
* // { // ReplicaGlobalSecondaryIndexDescription
100105
* // IndexName: "STRING_VALUE",
@@ -104,6 +109,11 @@ export interface UpdateGlobalTableCommandOutput extends UpdateGlobalTableOutput,
104109
* // OnDemandThroughputOverride: {
105110
* // MaxReadRequestUnits: Number("long"),
106111
* // },
112+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
113+
* // ReadUnitsPerSecond: Number("long"),
114+
* // WriteUnitsPerSecond: Number("long"),
115+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
116+
* // },
107117
* // },
108118
* // ],
109119
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),

0 commit comments

Comments
 (0)
Please sign in to comment.