@aws-sdk/client-dynamodb 3.933.0 → 3.935.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.
- package/dist-cjs/index.js +241 -240
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +240 -0
- package/dist-es/models/errors.js +440 -0
- package/dist-es/models/models_0.js +1 -680
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/BatchExecuteStatementCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetItemCommand.d.ts +1 -1
- package/dist-types/commands/BatchWriteItemCommand.d.ts +1 -1
- package/dist-types/commands/DeleteItemCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteStatementCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteTransactionCommand.d.ts +1 -1
- package/dist-types/commands/GetItemCommand.d.ts +1 -1
- package/dist-types/commands/PutItemCommand.d.ts +1 -1
- package/dist-types/commands/QueryCommand.d.ts +1 -1
- package/dist-types/commands/ScanCommand.d.ts +1 -1
- package/dist-types/commands/TransactGetItemsCommand.d.ts +1 -1
- package/dist-types/commands/TransactWriteItemsCommand.d.ts +2 -3
- package/dist-types/commands/UpdateItemCommand.d.ts +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +576 -0
- package/dist-types/models/errors.d.ts +804 -0
- package/dist-types/models/models_0.d.ts +73 -1379
- package/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +4 -2
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +306 -0
- package/dist-types/ts3.4/models/errors.d.ts +286 -0
- package/dist-types/ts3.4/models/models_0.d.ts +50 -587
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -2
- package/dist-es/models/models_1.js +0 -1
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/models/models_1.d.ts +0 -73
- package/dist-types/ts3.4/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/models_1.d.ts +0 -11
|
@@ -1,30 +1,52 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import {
|
|
2
|
+
ApproximateCreationDateTimePrecision,
|
|
3
|
+
AttributeAction,
|
|
4
|
+
BackupStatus,
|
|
5
|
+
BackupType,
|
|
6
|
+
BackupTypeFilter,
|
|
7
|
+
BatchStatementErrorCodeEnum,
|
|
8
|
+
BillingMode,
|
|
9
|
+
ComparisonOperator,
|
|
10
|
+
ConditionalOperator,
|
|
11
|
+
ContinuousBackupsStatus,
|
|
12
|
+
ContributorInsightsAction,
|
|
13
|
+
ContributorInsightsMode,
|
|
14
|
+
ContributorInsightsStatus,
|
|
15
|
+
DestinationStatus,
|
|
16
|
+
ExportFormat,
|
|
17
|
+
ExportStatus,
|
|
18
|
+
ExportType,
|
|
19
|
+
ExportViewType,
|
|
20
|
+
GlobalTableStatus,
|
|
21
|
+
ImportStatus,
|
|
22
|
+
IndexStatus,
|
|
23
|
+
InputCompressionType,
|
|
24
|
+
InputFormat,
|
|
25
|
+
KeyType,
|
|
26
|
+
MultiRegionConsistency,
|
|
27
|
+
PointInTimeRecoveryStatus,
|
|
28
|
+
ProjectionType,
|
|
29
|
+
ReplicaStatus,
|
|
30
|
+
ReturnConsumedCapacity,
|
|
31
|
+
ReturnItemCollectionMetrics,
|
|
32
|
+
ReturnValue,
|
|
33
|
+
ReturnValuesOnConditionCheckFailure,
|
|
34
|
+
S3SseAlgorithm,
|
|
35
|
+
ScalarAttributeType,
|
|
36
|
+
Select,
|
|
37
|
+
SSEStatus,
|
|
38
|
+
SSEType,
|
|
39
|
+
StreamViewType,
|
|
40
|
+
TableClass,
|
|
41
|
+
TableStatus,
|
|
42
|
+
TimeToLiveStatus,
|
|
43
|
+
WitnessStatus,
|
|
44
|
+
} from "./enums";
|
|
9
45
|
export interface ArchivalSummary {
|
|
10
46
|
ArchivalDateTime?: Date | undefined;
|
|
11
47
|
ArchivalReason?: string | undefined;
|
|
12
48
|
ArchivalBackupArn?: string | undefined;
|
|
13
49
|
}
|
|
14
|
-
export declare const AttributeAction: {
|
|
15
|
-
readonly ADD: "ADD";
|
|
16
|
-
readonly DELETE: "DELETE";
|
|
17
|
-
readonly PUT: "PUT";
|
|
18
|
-
};
|
|
19
|
-
export type AttributeAction =
|
|
20
|
-
(typeof AttributeAction)[keyof typeof AttributeAction];
|
|
21
|
-
export declare const ScalarAttributeType: {
|
|
22
|
-
readonly B: "B";
|
|
23
|
-
readonly N: "N";
|
|
24
|
-
readonly S: "S";
|
|
25
|
-
};
|
|
26
|
-
export type ScalarAttributeType =
|
|
27
|
-
(typeof ScalarAttributeType)[keyof typeof ScalarAttributeType];
|
|
28
50
|
export interface AttributeDefinition {
|
|
29
51
|
AttributeName: string | undefined;
|
|
30
52
|
AttributeType: ScalarAttributeType | undefined;
|
|
@@ -67,18 +89,6 @@ export interface AutoScalingSettingsUpdate {
|
|
|
67
89
|
AutoScalingRoleArn?: string | undefined;
|
|
68
90
|
ScalingPolicyUpdate?: AutoScalingPolicyUpdate | undefined;
|
|
69
91
|
}
|
|
70
|
-
export declare const BackupStatus: {
|
|
71
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
72
|
-
readonly CREATING: "CREATING";
|
|
73
|
-
readonly DELETED: "DELETED";
|
|
74
|
-
};
|
|
75
|
-
export type BackupStatus = (typeof BackupStatus)[keyof typeof BackupStatus];
|
|
76
|
-
export declare const BackupType: {
|
|
77
|
-
readonly AWS_BACKUP: "AWS_BACKUP";
|
|
78
|
-
readonly SYSTEM: "SYSTEM";
|
|
79
|
-
readonly USER: "USER";
|
|
80
|
-
};
|
|
81
|
-
export type BackupType = (typeof BackupType)[keyof typeof BackupType];
|
|
82
92
|
export interface BackupDetails {
|
|
83
93
|
BackupArn: string | undefined;
|
|
84
94
|
BackupName: string | undefined;
|
|
@@ -88,16 +98,6 @@ export interface BackupDetails {
|
|
|
88
98
|
BackupCreationDateTime: Date | undefined;
|
|
89
99
|
BackupExpiryDateTime?: Date | undefined;
|
|
90
100
|
}
|
|
91
|
-
export declare const BillingMode: {
|
|
92
|
-
readonly PAY_PER_REQUEST: "PAY_PER_REQUEST";
|
|
93
|
-
readonly PROVISIONED: "PROVISIONED";
|
|
94
|
-
};
|
|
95
|
-
export type BillingMode = (typeof BillingMode)[keyof typeof BillingMode];
|
|
96
|
-
export declare const KeyType: {
|
|
97
|
-
readonly HASH: "HASH";
|
|
98
|
-
readonly RANGE: "RANGE";
|
|
99
|
-
};
|
|
100
|
-
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
101
101
|
export interface KeySchemaElement {
|
|
102
102
|
AttributeName: string | undefined;
|
|
103
103
|
KeyType: KeyType | undefined;
|
|
@@ -122,13 +122,6 @@ export interface SourceTableDetails {
|
|
|
122
122
|
ItemCount?: number | undefined;
|
|
123
123
|
BillingMode?: BillingMode | undefined;
|
|
124
124
|
}
|
|
125
|
-
export declare const ProjectionType: {
|
|
126
|
-
readonly ALL: "ALL";
|
|
127
|
-
readonly INCLUDE: "INCLUDE";
|
|
128
|
-
readonly KEYS_ONLY: "KEYS_ONLY";
|
|
129
|
-
};
|
|
130
|
-
export type ProjectionType =
|
|
131
|
-
(typeof ProjectionType)[keyof typeof ProjectionType];
|
|
132
125
|
export interface Projection {
|
|
133
126
|
ProjectionType?: ProjectionType | undefined;
|
|
134
127
|
NonKeyAttributes?: string[] | undefined;
|
|
@@ -145,45 +138,16 @@ export interface LocalSecondaryIndexInfo {
|
|
|
145
138
|
KeySchema?: KeySchemaElement[] | undefined;
|
|
146
139
|
Projection?: Projection | undefined;
|
|
147
140
|
}
|
|
148
|
-
export declare const SSEType: {
|
|
149
|
-
readonly AES256: "AES256";
|
|
150
|
-
readonly KMS: "KMS";
|
|
151
|
-
};
|
|
152
|
-
export type SSEType = (typeof SSEType)[keyof typeof SSEType];
|
|
153
|
-
export declare const SSEStatus: {
|
|
154
|
-
readonly DISABLED: "DISABLED";
|
|
155
|
-
readonly DISABLING: "DISABLING";
|
|
156
|
-
readonly ENABLED: "ENABLED";
|
|
157
|
-
readonly ENABLING: "ENABLING";
|
|
158
|
-
readonly UPDATING: "UPDATING";
|
|
159
|
-
};
|
|
160
|
-
export type SSEStatus = (typeof SSEStatus)[keyof typeof SSEStatus];
|
|
161
141
|
export interface SSEDescription {
|
|
162
142
|
Status?: SSEStatus | undefined;
|
|
163
143
|
SSEType?: SSEType | undefined;
|
|
164
144
|
KMSMasterKeyArn?: string | undefined;
|
|
165
145
|
InaccessibleEncryptionDateTime?: Date | undefined;
|
|
166
146
|
}
|
|
167
|
-
export declare const StreamViewType: {
|
|
168
|
-
readonly KEYS_ONLY: "KEYS_ONLY";
|
|
169
|
-
readonly NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES";
|
|
170
|
-
readonly NEW_IMAGE: "NEW_IMAGE";
|
|
171
|
-
readonly OLD_IMAGE: "OLD_IMAGE";
|
|
172
|
-
};
|
|
173
|
-
export type StreamViewType =
|
|
174
|
-
(typeof StreamViewType)[keyof typeof StreamViewType];
|
|
175
147
|
export interface StreamSpecification {
|
|
176
148
|
StreamEnabled: boolean | undefined;
|
|
177
149
|
StreamViewType?: StreamViewType | undefined;
|
|
178
150
|
}
|
|
179
|
-
export declare const TimeToLiveStatus: {
|
|
180
|
-
readonly DISABLED: "DISABLED";
|
|
181
|
-
readonly DISABLING: "DISABLING";
|
|
182
|
-
readonly ENABLED: "ENABLED";
|
|
183
|
-
readonly ENABLING: "ENABLING";
|
|
184
|
-
};
|
|
185
|
-
export type TimeToLiveStatus =
|
|
186
|
-
(typeof TimeToLiveStatus)[keyof typeof TimeToLiveStatus];
|
|
187
151
|
export interface TimeToLiveDescription {
|
|
188
152
|
TimeToLiveStatus?: TimeToLiveStatus | undefined;
|
|
189
153
|
AttributeName?: string | undefined;
|
|
@@ -200,20 +164,6 @@ export interface BackupDescription {
|
|
|
200
164
|
SourceTableDetails?: SourceTableDetails | undefined;
|
|
201
165
|
SourceTableFeatureDetails?: SourceTableFeatureDetails | undefined;
|
|
202
166
|
}
|
|
203
|
-
export declare class BackupInUseException extends __BaseException {
|
|
204
|
-
readonly name: "BackupInUseException";
|
|
205
|
-
readonly $fault: "client";
|
|
206
|
-
constructor(
|
|
207
|
-
opts: __ExceptionOptionType<BackupInUseException, __BaseException>
|
|
208
|
-
);
|
|
209
|
-
}
|
|
210
|
-
export declare class BackupNotFoundException extends __BaseException {
|
|
211
|
-
readonly name: "BackupNotFoundException";
|
|
212
|
-
readonly $fault: "client";
|
|
213
|
-
constructor(
|
|
214
|
-
opts: __ExceptionOptionType<BackupNotFoundException, __BaseException>
|
|
215
|
-
);
|
|
216
|
-
}
|
|
217
167
|
export interface BackupSummary {
|
|
218
168
|
TableName?: string | undefined;
|
|
219
169
|
TableId?: string | undefined;
|
|
@@ -226,27 +176,6 @@ export interface BackupSummary {
|
|
|
226
176
|
BackupType?: BackupType | undefined;
|
|
227
177
|
BackupSizeBytes?: number | undefined;
|
|
228
178
|
}
|
|
229
|
-
export declare const BackupTypeFilter: {
|
|
230
|
-
readonly ALL: "ALL";
|
|
231
|
-
readonly AWS_BACKUP: "AWS_BACKUP";
|
|
232
|
-
readonly SYSTEM: "SYSTEM";
|
|
233
|
-
readonly USER: "USER";
|
|
234
|
-
};
|
|
235
|
-
export type BackupTypeFilter =
|
|
236
|
-
(typeof BackupTypeFilter)[keyof typeof BackupTypeFilter];
|
|
237
|
-
export declare const ReturnConsumedCapacity: {
|
|
238
|
-
readonly INDEXES: "INDEXES";
|
|
239
|
-
readonly NONE: "NONE";
|
|
240
|
-
readonly TOTAL: "TOTAL";
|
|
241
|
-
};
|
|
242
|
-
export type ReturnConsumedCapacity =
|
|
243
|
-
(typeof ReturnConsumedCapacity)[keyof typeof ReturnConsumedCapacity];
|
|
244
|
-
export declare const ReturnValuesOnConditionCheckFailure: {
|
|
245
|
-
readonly ALL_OLD: "ALL_OLD";
|
|
246
|
-
readonly NONE: "NONE";
|
|
247
|
-
};
|
|
248
|
-
export type ReturnValuesOnConditionCheckFailure =
|
|
249
|
-
(typeof ReturnValuesOnConditionCheckFailure)[keyof typeof ReturnValuesOnConditionCheckFailure];
|
|
250
179
|
export interface Capacity {
|
|
251
180
|
ReadCapacityUnits?: number | undefined;
|
|
252
181
|
WriteCapacityUnits?: number | undefined;
|
|
@@ -261,140 +190,14 @@ export interface ConsumedCapacity {
|
|
|
261
190
|
LocalSecondaryIndexes?: Record<string, Capacity> | undefined;
|
|
262
191
|
GlobalSecondaryIndexes?: Record<string, Capacity> | undefined;
|
|
263
192
|
}
|
|
264
|
-
export declare const BatchStatementErrorCodeEnum: {
|
|
265
|
-
readonly AccessDenied: "AccessDenied";
|
|
266
|
-
readonly ConditionalCheckFailed: "ConditionalCheckFailed";
|
|
267
|
-
readonly DuplicateItem: "DuplicateItem";
|
|
268
|
-
readonly InternalServerError: "InternalServerError";
|
|
269
|
-
readonly ItemCollectionSizeLimitExceeded: "ItemCollectionSizeLimitExceeded";
|
|
270
|
-
readonly ProvisionedThroughputExceeded: "ProvisionedThroughputExceeded";
|
|
271
|
-
readonly RequestLimitExceeded: "RequestLimitExceeded";
|
|
272
|
-
readonly ResourceNotFound: "ResourceNotFound";
|
|
273
|
-
readonly ThrottlingError: "ThrottlingError";
|
|
274
|
-
readonly TransactionConflict: "TransactionConflict";
|
|
275
|
-
readonly ValidationError: "ValidationError";
|
|
276
|
-
};
|
|
277
|
-
export type BatchStatementErrorCodeEnum =
|
|
278
|
-
(typeof BatchStatementErrorCodeEnum)[keyof typeof BatchStatementErrorCodeEnum];
|
|
279
|
-
export declare class InternalServerError extends __BaseException {
|
|
280
|
-
readonly name: "InternalServerError";
|
|
281
|
-
readonly $fault: "server";
|
|
282
|
-
constructor(
|
|
283
|
-
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
284
|
-
);
|
|
285
|
-
}
|
|
286
193
|
export interface ThrottlingReason {
|
|
287
194
|
reason?: string | undefined;
|
|
288
195
|
resource?: string | undefined;
|
|
289
196
|
}
|
|
290
|
-
export declare class RequestLimitExceeded extends __BaseException {
|
|
291
|
-
readonly name: "RequestLimitExceeded";
|
|
292
|
-
readonly $fault: "client";
|
|
293
|
-
ThrottlingReasons?: ThrottlingReason[] | undefined;
|
|
294
|
-
constructor(
|
|
295
|
-
opts: __ExceptionOptionType<RequestLimitExceeded, __BaseException>
|
|
296
|
-
);
|
|
297
|
-
}
|
|
298
|
-
export declare class ThrottlingException extends __BaseException {
|
|
299
|
-
readonly name: "ThrottlingException";
|
|
300
|
-
readonly $fault: "client";
|
|
301
|
-
throttlingReasons?: ThrottlingReason[] | undefined;
|
|
302
|
-
constructor(
|
|
303
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
304
|
-
);
|
|
305
|
-
}
|
|
306
|
-
export declare class InvalidEndpointException extends __BaseException {
|
|
307
|
-
readonly name: "InvalidEndpointException";
|
|
308
|
-
readonly $fault: "client";
|
|
309
|
-
Message?: string | undefined;
|
|
310
|
-
constructor(
|
|
311
|
-
opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>
|
|
312
|
-
);
|
|
313
|
-
}
|
|
314
|
-
export declare class ProvisionedThroughputExceededException extends __BaseException {
|
|
315
|
-
readonly name: "ProvisionedThroughputExceededException";
|
|
316
|
-
readonly $fault: "client";
|
|
317
|
-
ThrottlingReasons?: ThrottlingReason[] | undefined;
|
|
318
|
-
constructor(
|
|
319
|
-
opts: __ExceptionOptionType<
|
|
320
|
-
ProvisionedThroughputExceededException,
|
|
321
|
-
__BaseException
|
|
322
|
-
>
|
|
323
|
-
);
|
|
324
|
-
}
|
|
325
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
326
|
-
readonly name: "ResourceNotFoundException";
|
|
327
|
-
readonly $fault: "client";
|
|
328
|
-
constructor(
|
|
329
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
330
|
-
);
|
|
331
|
-
}
|
|
332
|
-
export declare const ReturnItemCollectionMetrics: {
|
|
333
|
-
readonly NONE: "NONE";
|
|
334
|
-
readonly SIZE: "SIZE";
|
|
335
|
-
};
|
|
336
|
-
export type ReturnItemCollectionMetrics =
|
|
337
|
-
(typeof ReturnItemCollectionMetrics)[keyof typeof ReturnItemCollectionMetrics];
|
|
338
|
-
export declare class ItemCollectionSizeLimitExceededException extends __BaseException {
|
|
339
|
-
readonly name: "ItemCollectionSizeLimitExceededException";
|
|
340
|
-
readonly $fault: "client";
|
|
341
|
-
constructor(
|
|
342
|
-
opts: __ExceptionOptionType<
|
|
343
|
-
ItemCollectionSizeLimitExceededException,
|
|
344
|
-
__BaseException
|
|
345
|
-
>
|
|
346
|
-
);
|
|
347
|
-
}
|
|
348
|
-
export declare class ReplicatedWriteConflictException extends __BaseException {
|
|
349
|
-
readonly name: "ReplicatedWriteConflictException";
|
|
350
|
-
readonly $fault: "client";
|
|
351
|
-
$retryable: {};
|
|
352
|
-
constructor(
|
|
353
|
-
opts: __ExceptionOptionType<
|
|
354
|
-
ReplicatedWriteConflictException,
|
|
355
|
-
__BaseException
|
|
356
|
-
>
|
|
357
|
-
);
|
|
358
|
-
}
|
|
359
197
|
export interface BillingModeSummary {
|
|
360
198
|
BillingMode?: BillingMode | undefined;
|
|
361
199
|
LastUpdateToPayPerRequestDateTime?: Date | undefined;
|
|
362
200
|
}
|
|
363
|
-
export declare const ComparisonOperator: {
|
|
364
|
-
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
365
|
-
readonly BETWEEN: "BETWEEN";
|
|
366
|
-
readonly CONTAINS: "CONTAINS";
|
|
367
|
-
readonly EQ: "EQ";
|
|
368
|
-
readonly GE: "GE";
|
|
369
|
-
readonly GT: "GT";
|
|
370
|
-
readonly IN: "IN";
|
|
371
|
-
readonly LE: "LE";
|
|
372
|
-
readonly LT: "LT";
|
|
373
|
-
readonly NE: "NE";
|
|
374
|
-
readonly NOT_CONTAINS: "NOT_CONTAINS";
|
|
375
|
-
readonly NOT_NULL: "NOT_NULL";
|
|
376
|
-
readonly NULL: "NULL";
|
|
377
|
-
};
|
|
378
|
-
export type ComparisonOperator =
|
|
379
|
-
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
380
|
-
export declare const ConditionalOperator: {
|
|
381
|
-
readonly AND: "AND";
|
|
382
|
-
readonly OR: "OR";
|
|
383
|
-
};
|
|
384
|
-
export type ConditionalOperator =
|
|
385
|
-
(typeof ConditionalOperator)[keyof typeof ConditionalOperator];
|
|
386
|
-
export declare const ContinuousBackupsStatus: {
|
|
387
|
-
readonly DISABLED: "DISABLED";
|
|
388
|
-
readonly ENABLED: "ENABLED";
|
|
389
|
-
};
|
|
390
|
-
export type ContinuousBackupsStatus =
|
|
391
|
-
(typeof ContinuousBackupsStatus)[keyof typeof ContinuousBackupsStatus];
|
|
392
|
-
export declare const PointInTimeRecoveryStatus: {
|
|
393
|
-
readonly DISABLED: "DISABLED";
|
|
394
|
-
readonly ENABLED: "ENABLED";
|
|
395
|
-
};
|
|
396
|
-
export type PointInTimeRecoveryStatus =
|
|
397
|
-
(typeof PointInTimeRecoveryStatus)[keyof typeof PointInTimeRecoveryStatus];
|
|
398
201
|
export interface PointInTimeRecoveryDescription {
|
|
399
202
|
PointInTimeRecoveryStatus?: PointInTimeRecoveryStatus | undefined;
|
|
400
203
|
RecoveryPeriodInDays?: number | undefined;
|
|
@@ -405,37 +208,6 @@ export interface ContinuousBackupsDescription {
|
|
|
405
208
|
ContinuousBackupsStatus: ContinuousBackupsStatus | undefined;
|
|
406
209
|
PointInTimeRecoveryDescription?: PointInTimeRecoveryDescription | undefined;
|
|
407
210
|
}
|
|
408
|
-
export declare class ContinuousBackupsUnavailableException extends __BaseException {
|
|
409
|
-
readonly name: "ContinuousBackupsUnavailableException";
|
|
410
|
-
readonly $fault: "client";
|
|
411
|
-
constructor(
|
|
412
|
-
opts: __ExceptionOptionType<
|
|
413
|
-
ContinuousBackupsUnavailableException,
|
|
414
|
-
__BaseException
|
|
415
|
-
>
|
|
416
|
-
);
|
|
417
|
-
}
|
|
418
|
-
export declare const ContributorInsightsAction: {
|
|
419
|
-
readonly DISABLE: "DISABLE";
|
|
420
|
-
readonly ENABLE: "ENABLE";
|
|
421
|
-
};
|
|
422
|
-
export type ContributorInsightsAction =
|
|
423
|
-
(typeof ContributorInsightsAction)[keyof typeof ContributorInsightsAction];
|
|
424
|
-
export declare const ContributorInsightsMode: {
|
|
425
|
-
readonly ACCESSED_AND_THROTTLED_KEYS: "ACCESSED_AND_THROTTLED_KEYS";
|
|
426
|
-
readonly THROTTLED_KEYS: "THROTTLED_KEYS";
|
|
427
|
-
};
|
|
428
|
-
export type ContributorInsightsMode =
|
|
429
|
-
(typeof ContributorInsightsMode)[keyof typeof ContributorInsightsMode];
|
|
430
|
-
export declare const ContributorInsightsStatus: {
|
|
431
|
-
readonly DISABLED: "DISABLED";
|
|
432
|
-
readonly DISABLING: "DISABLING";
|
|
433
|
-
readonly ENABLED: "ENABLED";
|
|
434
|
-
readonly ENABLING: "ENABLING";
|
|
435
|
-
readonly FAILED: "FAILED";
|
|
436
|
-
};
|
|
437
|
-
export type ContributorInsightsStatus =
|
|
438
|
-
(typeof ContributorInsightsStatus)[keyof typeof ContributorInsightsStatus];
|
|
439
211
|
export interface ContributorInsightsSummary {
|
|
440
212
|
TableName?: string | undefined;
|
|
441
213
|
IndexName?: string | undefined;
|
|
@@ -449,27 +221,6 @@ export interface CreateBackupInput {
|
|
|
449
221
|
export interface CreateBackupOutput {
|
|
450
222
|
BackupDetails?: BackupDetails | undefined;
|
|
451
223
|
}
|
|
452
|
-
export declare class LimitExceededException extends __BaseException {
|
|
453
|
-
readonly name: "LimitExceededException";
|
|
454
|
-
readonly $fault: "client";
|
|
455
|
-
constructor(
|
|
456
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
457
|
-
);
|
|
458
|
-
}
|
|
459
|
-
export declare class TableInUseException extends __BaseException {
|
|
460
|
-
readonly name: "TableInUseException";
|
|
461
|
-
readonly $fault: "client";
|
|
462
|
-
constructor(
|
|
463
|
-
opts: __ExceptionOptionType<TableInUseException, __BaseException>
|
|
464
|
-
);
|
|
465
|
-
}
|
|
466
|
-
export declare class TableNotFoundException extends __BaseException {
|
|
467
|
-
readonly name: "TableNotFoundException";
|
|
468
|
-
readonly $fault: "client";
|
|
469
|
-
constructor(
|
|
470
|
-
opts: __ExceptionOptionType<TableNotFoundException, __BaseException>
|
|
471
|
-
);
|
|
472
|
-
}
|
|
473
224
|
export interface WarmThroughput {
|
|
474
225
|
ReadUnitsPerSecond?: number | undefined;
|
|
475
226
|
WriteUnitsPerSecond?: number | undefined;
|
|
@@ -489,27 +240,12 @@ export interface CreateGlobalTableInput {
|
|
|
489
240
|
GlobalTableName: string | undefined;
|
|
490
241
|
ReplicationGroup: Replica[] | undefined;
|
|
491
242
|
}
|
|
492
|
-
export declare const GlobalTableStatus: {
|
|
493
|
-
readonly ACTIVE: "ACTIVE";
|
|
494
|
-
readonly CREATING: "CREATING";
|
|
495
|
-
readonly DELETING: "DELETING";
|
|
496
|
-
readonly UPDATING: "UPDATING";
|
|
497
|
-
};
|
|
498
|
-
export type GlobalTableStatus =
|
|
499
|
-
(typeof GlobalTableStatus)[keyof typeof GlobalTableStatus];
|
|
500
243
|
export interface OnDemandThroughputOverride {
|
|
501
244
|
MaxReadRequestUnits?: number | undefined;
|
|
502
245
|
}
|
|
503
246
|
export interface ProvisionedThroughputOverride {
|
|
504
247
|
ReadCapacityUnits?: number | undefined;
|
|
505
248
|
}
|
|
506
|
-
export declare const IndexStatus: {
|
|
507
|
-
readonly ACTIVE: "ACTIVE";
|
|
508
|
-
readonly CREATING: "CREATING";
|
|
509
|
-
readonly DELETING: "DELETING";
|
|
510
|
-
readonly UPDATING: "UPDATING";
|
|
511
|
-
};
|
|
512
|
-
export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
|
|
513
249
|
export interface GlobalSecondaryIndexWarmThroughputDescription {
|
|
514
250
|
ReadUnitsPerSecond?: number | undefined;
|
|
515
251
|
WriteUnitsPerSecond?: number | undefined;
|
|
@@ -521,39 +257,10 @@ export interface ReplicaGlobalSecondaryIndexDescription {
|
|
|
521
257
|
OnDemandThroughputOverride?: OnDemandThroughputOverride | undefined;
|
|
522
258
|
WarmThroughput?: GlobalSecondaryIndexWarmThroughputDescription | undefined;
|
|
523
259
|
}
|
|
524
|
-
export declare const ReplicaStatus: {
|
|
525
|
-
readonly ACTIVE: "ACTIVE";
|
|
526
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
527
|
-
readonly ARCHIVING: "ARCHIVING";
|
|
528
|
-
readonly CREATING: "CREATING";
|
|
529
|
-
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
530
|
-
readonly DELETING: "DELETING";
|
|
531
|
-
readonly INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS";
|
|
532
|
-
readonly REGION_DISABLED: "REGION_DISABLED";
|
|
533
|
-
readonly REPLICATION_NOT_AUTHORIZED: "REPLICATION_NOT_AUTHORIZED";
|
|
534
|
-
readonly UPDATING: "UPDATING";
|
|
535
|
-
};
|
|
536
|
-
export type ReplicaStatus = (typeof ReplicaStatus)[keyof typeof ReplicaStatus];
|
|
537
|
-
export declare const TableClass: {
|
|
538
|
-
readonly STANDARD: "STANDARD";
|
|
539
|
-
readonly STANDARD_INFREQUENT_ACCESS: "STANDARD_INFREQUENT_ACCESS";
|
|
540
|
-
};
|
|
541
|
-
export type TableClass = (typeof TableClass)[keyof typeof TableClass];
|
|
542
260
|
export interface TableClassSummary {
|
|
543
261
|
TableClass?: TableClass | undefined;
|
|
544
262
|
LastUpdateDateTime?: Date | undefined;
|
|
545
263
|
}
|
|
546
|
-
export declare const TableStatus: {
|
|
547
|
-
readonly ACTIVE: "ACTIVE";
|
|
548
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
549
|
-
readonly ARCHIVING: "ARCHIVING";
|
|
550
|
-
readonly CREATING: "CREATING";
|
|
551
|
-
readonly DELETING: "DELETING";
|
|
552
|
-
readonly INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS";
|
|
553
|
-
readonly REPLICATION_NOT_AUTHORIZED: "REPLICATION_NOT_AUTHORIZED";
|
|
554
|
-
readonly UPDATING: "UPDATING";
|
|
555
|
-
};
|
|
556
|
-
export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus];
|
|
557
264
|
export interface TableWarmThroughputDescription {
|
|
558
265
|
ReadUnitsPerSecond?: number | undefined;
|
|
559
266
|
WriteUnitsPerSecond?: number | undefined;
|
|
@@ -582,16 +289,6 @@ export interface GlobalTableDescription {
|
|
|
582
289
|
export interface CreateGlobalTableOutput {
|
|
583
290
|
GlobalTableDescription?: GlobalTableDescription | undefined;
|
|
584
291
|
}
|
|
585
|
-
export declare class GlobalTableAlreadyExistsException extends __BaseException {
|
|
586
|
-
readonly name: "GlobalTableAlreadyExistsException";
|
|
587
|
-
readonly $fault: "client";
|
|
588
|
-
constructor(
|
|
589
|
-
opts: __ExceptionOptionType<
|
|
590
|
-
GlobalTableAlreadyExistsException,
|
|
591
|
-
__BaseException
|
|
592
|
-
>
|
|
593
|
-
);
|
|
594
|
-
}
|
|
595
292
|
export interface CreateGlobalTableWitnessGroupMemberAction {
|
|
596
293
|
RegionName: string | undefined;
|
|
597
294
|
}
|
|
@@ -670,12 +367,6 @@ export interface GlobalSecondaryIndexDescription {
|
|
|
670
367
|
OnDemandThroughput?: OnDemandThroughput | undefined;
|
|
671
368
|
WarmThroughput?: GlobalSecondaryIndexWarmThroughputDescription | undefined;
|
|
672
369
|
}
|
|
673
|
-
export declare const WitnessStatus: {
|
|
674
|
-
readonly ACTIVE: "ACTIVE";
|
|
675
|
-
readonly CREATING: "CREATING";
|
|
676
|
-
readonly DELETING: "DELETING";
|
|
677
|
-
};
|
|
678
|
-
export type WitnessStatus = (typeof WitnessStatus)[keyof typeof WitnessStatus];
|
|
679
370
|
export interface GlobalTableWitnessDescription {
|
|
680
371
|
RegionName?: string | undefined;
|
|
681
372
|
WitnessStatus?: WitnessStatus | undefined;
|
|
@@ -688,12 +379,6 @@ export interface LocalSecondaryIndexDescription {
|
|
|
688
379
|
ItemCount?: number | undefined;
|
|
689
380
|
IndexArn?: string | undefined;
|
|
690
381
|
}
|
|
691
|
-
export declare const MultiRegionConsistency: {
|
|
692
|
-
readonly EVENTUAL: "EVENTUAL";
|
|
693
|
-
readonly STRONG: "STRONG";
|
|
694
|
-
};
|
|
695
|
-
export type MultiRegionConsistency =
|
|
696
|
-
(typeof MultiRegionConsistency)[keyof typeof MultiRegionConsistency];
|
|
697
382
|
export interface RestoreSummary {
|
|
698
383
|
SourceBackupArn?: string | undefined;
|
|
699
384
|
SourceTableArn?: string | undefined;
|
|
@@ -732,13 +417,6 @@ export interface TableDescription {
|
|
|
732
417
|
export interface CreateTableOutput {
|
|
733
418
|
TableDescription?: TableDescription | undefined;
|
|
734
419
|
}
|
|
735
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
736
|
-
readonly name: "ResourceInUseException";
|
|
737
|
-
readonly $fault: "client";
|
|
738
|
-
constructor(
|
|
739
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
740
|
-
);
|
|
741
|
-
}
|
|
742
420
|
export interface CsvOptions {
|
|
743
421
|
Delimiter?: string | undefined;
|
|
744
422
|
HeaderList?: string[] | undefined;
|
|
@@ -755,21 +433,6 @@ export interface DeleteGlobalSecondaryIndexAction {
|
|
|
755
433
|
export interface DeleteGlobalTableWitnessGroupMemberAction {
|
|
756
434
|
RegionName: string | undefined;
|
|
757
435
|
}
|
|
758
|
-
export declare const ReturnValue: {
|
|
759
|
-
readonly ALL_NEW: "ALL_NEW";
|
|
760
|
-
readonly ALL_OLD: "ALL_OLD";
|
|
761
|
-
readonly NONE: "NONE";
|
|
762
|
-
readonly UPDATED_NEW: "UPDATED_NEW";
|
|
763
|
-
readonly UPDATED_OLD: "UPDATED_OLD";
|
|
764
|
-
};
|
|
765
|
-
export type ReturnValue = (typeof ReturnValue)[keyof typeof ReturnValue];
|
|
766
|
-
export declare class TransactionConflictException extends __BaseException {
|
|
767
|
-
readonly name: "TransactionConflictException";
|
|
768
|
-
readonly $fault: "client";
|
|
769
|
-
constructor(
|
|
770
|
-
opts: __ExceptionOptionType<TransactionConflictException, __BaseException>
|
|
771
|
-
);
|
|
772
|
-
}
|
|
773
436
|
export interface DeleteReplicaAction {
|
|
774
437
|
RegionName: string | undefined;
|
|
775
438
|
}
|
|
@@ -783,13 +446,6 @@ export interface DeleteResourcePolicyInput {
|
|
|
783
446
|
export interface DeleteResourcePolicyOutput {
|
|
784
447
|
RevisionId?: string | undefined;
|
|
785
448
|
}
|
|
786
|
-
export declare class PolicyNotFoundException extends __BaseException {
|
|
787
|
-
readonly name: "PolicyNotFoundException";
|
|
788
|
-
readonly $fault: "client";
|
|
789
|
-
constructor(
|
|
790
|
-
opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>
|
|
791
|
-
);
|
|
792
|
-
}
|
|
793
449
|
export interface DeleteTableInput {
|
|
794
450
|
TableName: string | undefined;
|
|
795
451
|
}
|
|
@@ -836,39 +492,11 @@ export interface DescribeEndpointsResponse {
|
|
|
836
492
|
export interface DescribeExportInput {
|
|
837
493
|
ExportArn: string | undefined;
|
|
838
494
|
}
|
|
839
|
-
export declare const ExportFormat: {
|
|
840
|
-
readonly DYNAMODB_JSON: "DYNAMODB_JSON";
|
|
841
|
-
readonly ION: "ION";
|
|
842
|
-
};
|
|
843
|
-
export type ExportFormat = (typeof ExportFormat)[keyof typeof ExportFormat];
|
|
844
|
-
export declare const ExportStatus: {
|
|
845
|
-
readonly COMPLETED: "COMPLETED";
|
|
846
|
-
readonly FAILED: "FAILED";
|
|
847
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
848
|
-
};
|
|
849
|
-
export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
|
|
850
|
-
export declare const ExportType: {
|
|
851
|
-
readonly FULL_EXPORT: "FULL_EXPORT";
|
|
852
|
-
readonly INCREMENTAL_EXPORT: "INCREMENTAL_EXPORT";
|
|
853
|
-
};
|
|
854
|
-
export type ExportType = (typeof ExportType)[keyof typeof ExportType];
|
|
855
|
-
export declare const ExportViewType: {
|
|
856
|
-
readonly NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES";
|
|
857
|
-
readonly NEW_IMAGE: "NEW_IMAGE";
|
|
858
|
-
};
|
|
859
|
-
export type ExportViewType =
|
|
860
|
-
(typeof ExportViewType)[keyof typeof ExportViewType];
|
|
861
495
|
export interface IncrementalExportSpecification {
|
|
862
496
|
ExportFromTime?: Date | undefined;
|
|
863
497
|
ExportToTime?: Date | undefined;
|
|
864
498
|
ExportViewType?: ExportViewType | undefined;
|
|
865
499
|
}
|
|
866
|
-
export declare const S3SseAlgorithm: {
|
|
867
|
-
readonly AES256: "AES256";
|
|
868
|
-
readonly KMS: "KMS";
|
|
869
|
-
};
|
|
870
|
-
export type S3SseAlgorithm =
|
|
871
|
-
(typeof S3SseAlgorithm)[keyof typeof S3SseAlgorithm];
|
|
872
500
|
export interface ExportDescription {
|
|
873
501
|
ExportArn?: string | undefined;
|
|
874
502
|
ExportStatus?: ExportStatus | undefined;
|
|
@@ -895,26 +523,12 @@ export interface ExportDescription {
|
|
|
895
523
|
export interface DescribeExportOutput {
|
|
896
524
|
ExportDescription?: ExportDescription | undefined;
|
|
897
525
|
}
|
|
898
|
-
export declare class ExportNotFoundException extends __BaseException {
|
|
899
|
-
readonly name: "ExportNotFoundException";
|
|
900
|
-
readonly $fault: "client";
|
|
901
|
-
constructor(
|
|
902
|
-
opts: __ExceptionOptionType<ExportNotFoundException, __BaseException>
|
|
903
|
-
);
|
|
904
|
-
}
|
|
905
526
|
export interface DescribeGlobalTableInput {
|
|
906
527
|
GlobalTableName: string | undefined;
|
|
907
528
|
}
|
|
908
529
|
export interface DescribeGlobalTableOutput {
|
|
909
530
|
GlobalTableDescription?: GlobalTableDescription | undefined;
|
|
910
531
|
}
|
|
911
|
-
export declare class GlobalTableNotFoundException extends __BaseException {
|
|
912
|
-
readonly name: "GlobalTableNotFoundException";
|
|
913
|
-
readonly $fault: "client";
|
|
914
|
-
constructor(
|
|
915
|
-
opts: __ExceptionOptionType<GlobalTableNotFoundException, __BaseException>
|
|
916
|
-
);
|
|
917
|
-
}
|
|
918
532
|
export interface DescribeGlobalTableSettingsInput {
|
|
919
533
|
GlobalTableName: string | undefined;
|
|
920
534
|
}
|
|
@@ -954,27 +568,6 @@ export interface DescribeGlobalTableSettingsOutput {
|
|
|
954
568
|
export interface DescribeImportInput {
|
|
955
569
|
ImportArn: string | undefined;
|
|
956
570
|
}
|
|
957
|
-
export declare const ImportStatus: {
|
|
958
|
-
readonly CANCELLED: "CANCELLED";
|
|
959
|
-
readonly CANCELLING: "CANCELLING";
|
|
960
|
-
readonly COMPLETED: "COMPLETED";
|
|
961
|
-
readonly FAILED: "FAILED";
|
|
962
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
963
|
-
};
|
|
964
|
-
export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
|
|
965
|
-
export declare const InputCompressionType: {
|
|
966
|
-
readonly GZIP: "GZIP";
|
|
967
|
-
readonly NONE: "NONE";
|
|
968
|
-
readonly ZSTD: "ZSTD";
|
|
969
|
-
};
|
|
970
|
-
export type InputCompressionType =
|
|
971
|
-
(typeof InputCompressionType)[keyof typeof InputCompressionType];
|
|
972
|
-
export declare const InputFormat: {
|
|
973
|
-
readonly CSV: "CSV";
|
|
974
|
-
readonly DYNAMODB_JSON: "DYNAMODB_JSON";
|
|
975
|
-
readonly ION: "ION";
|
|
976
|
-
};
|
|
977
|
-
export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
|
|
978
571
|
export interface InputFormatOptions {
|
|
979
572
|
Csv?: CsvOptions | undefined;
|
|
980
573
|
}
|
|
@@ -1017,26 +610,9 @@ export interface ImportTableDescription {
|
|
|
1017
610
|
export interface DescribeImportOutput {
|
|
1018
611
|
ImportTableDescription: ImportTableDescription | undefined;
|
|
1019
612
|
}
|
|
1020
|
-
export declare class ImportNotFoundException extends __BaseException {
|
|
1021
|
-
readonly name: "ImportNotFoundException";
|
|
1022
|
-
readonly $fault: "client";
|
|
1023
|
-
constructor(
|
|
1024
|
-
opts: __ExceptionOptionType<ImportNotFoundException, __BaseException>
|
|
1025
|
-
);
|
|
1026
|
-
}
|
|
1027
613
|
export interface DescribeKinesisStreamingDestinationInput {
|
|
1028
614
|
TableName: string | undefined;
|
|
1029
615
|
}
|
|
1030
|
-
export declare const DestinationStatus: {
|
|
1031
|
-
readonly ACTIVE: "ACTIVE";
|
|
1032
|
-
readonly DISABLED: "DISABLED";
|
|
1033
|
-
readonly DISABLING: "DISABLING";
|
|
1034
|
-
readonly ENABLE_FAILED: "ENABLE_FAILED";
|
|
1035
|
-
readonly ENABLING: "ENABLING";
|
|
1036
|
-
readonly UPDATING: "UPDATING";
|
|
1037
|
-
};
|
|
1038
|
-
export type DestinationStatus =
|
|
1039
|
-
(typeof DestinationStatus)[keyof typeof DestinationStatus];
|
|
1040
616
|
export interface KinesisDataStreamDestination {
|
|
1041
617
|
StreamArn?: string | undefined;
|
|
1042
618
|
DestinationStatus?: DestinationStatus | undefined;
|
|
@@ -1122,39 +698,6 @@ export interface KinesisStreamingDestinationOutput {
|
|
|
1122
698
|
| EnableKinesisStreamingConfiguration
|
|
1123
699
|
| undefined;
|
|
1124
700
|
}
|
|
1125
|
-
export declare class DuplicateItemException extends __BaseException {
|
|
1126
|
-
readonly name: "DuplicateItemException";
|
|
1127
|
-
readonly $fault: "client";
|
|
1128
|
-
constructor(
|
|
1129
|
-
opts: __ExceptionOptionType<DuplicateItemException, __BaseException>
|
|
1130
|
-
);
|
|
1131
|
-
}
|
|
1132
|
-
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
1133
|
-
readonly name: "IdempotentParameterMismatchException";
|
|
1134
|
-
readonly $fault: "client";
|
|
1135
|
-
Message?: string | undefined;
|
|
1136
|
-
constructor(
|
|
1137
|
-
opts: __ExceptionOptionType<
|
|
1138
|
-
IdempotentParameterMismatchException,
|
|
1139
|
-
__BaseException
|
|
1140
|
-
>
|
|
1141
|
-
);
|
|
1142
|
-
}
|
|
1143
|
-
export declare class TransactionInProgressException extends __BaseException {
|
|
1144
|
-
readonly name: "TransactionInProgressException";
|
|
1145
|
-
readonly $fault: "client";
|
|
1146
|
-
Message?: string | undefined;
|
|
1147
|
-
constructor(
|
|
1148
|
-
opts: __ExceptionOptionType<TransactionInProgressException, __BaseException>
|
|
1149
|
-
);
|
|
1150
|
-
}
|
|
1151
|
-
export declare class ExportConflictException extends __BaseException {
|
|
1152
|
-
readonly name: "ExportConflictException";
|
|
1153
|
-
readonly $fault: "client";
|
|
1154
|
-
constructor(
|
|
1155
|
-
opts: __ExceptionOptionType<ExportConflictException, __BaseException>
|
|
1156
|
-
);
|
|
1157
|
-
}
|
|
1158
701
|
export interface ExportTableToPointInTimeInput {
|
|
1159
702
|
TableArn: string | undefined;
|
|
1160
703
|
ExportTime?: Date | undefined;
|
|
@@ -1171,23 +714,6 @@ export interface ExportTableToPointInTimeInput {
|
|
|
1171
714
|
export interface ExportTableToPointInTimeOutput {
|
|
1172
715
|
ExportDescription?: ExportDescription | undefined;
|
|
1173
716
|
}
|
|
1174
|
-
export declare class InvalidExportTimeException extends __BaseException {
|
|
1175
|
-
readonly name: "InvalidExportTimeException";
|
|
1176
|
-
readonly $fault: "client";
|
|
1177
|
-
constructor(
|
|
1178
|
-
opts: __ExceptionOptionType<InvalidExportTimeException, __BaseException>
|
|
1179
|
-
);
|
|
1180
|
-
}
|
|
1181
|
-
export declare class PointInTimeRecoveryUnavailableException extends __BaseException {
|
|
1182
|
-
readonly name: "PointInTimeRecoveryUnavailableException";
|
|
1183
|
-
readonly $fault: "client";
|
|
1184
|
-
constructor(
|
|
1185
|
-
opts: __ExceptionOptionType<
|
|
1186
|
-
PointInTimeRecoveryUnavailableException,
|
|
1187
|
-
__BaseException
|
|
1188
|
-
>
|
|
1189
|
-
);
|
|
1190
|
-
}
|
|
1191
717
|
export interface GetResourcePolicyInput {
|
|
1192
718
|
ResourceArn: string | undefined;
|
|
1193
719
|
}
|
|
@@ -1195,13 +721,6 @@ export interface GetResourcePolicyOutput {
|
|
|
1195
721
|
Policy?: string | undefined;
|
|
1196
722
|
RevisionId?: string | undefined;
|
|
1197
723
|
}
|
|
1198
|
-
export declare class ImportConflictException extends __BaseException {
|
|
1199
|
-
readonly name: "ImportConflictException";
|
|
1200
|
-
readonly $fault: "client";
|
|
1201
|
-
constructor(
|
|
1202
|
-
opts: __ExceptionOptionType<ImportConflictException, __BaseException>
|
|
1203
|
-
);
|
|
1204
|
-
}
|
|
1205
724
|
export interface ImportTableInput {
|
|
1206
725
|
ClientToken?: string | undefined;
|
|
1207
726
|
S3BucketSource: S3BucketSource | undefined;
|
|
@@ -1305,13 +824,6 @@ export interface PutResourcePolicyInput {
|
|
|
1305
824
|
export interface PutResourcePolicyOutput {
|
|
1306
825
|
RevisionId?: string | undefined;
|
|
1307
826
|
}
|
|
1308
|
-
export declare const Select: {
|
|
1309
|
-
readonly ALL_ATTRIBUTES: "ALL_ATTRIBUTES";
|
|
1310
|
-
readonly ALL_PROJECTED_ATTRIBUTES: "ALL_PROJECTED_ATTRIBUTES";
|
|
1311
|
-
readonly COUNT: "COUNT";
|
|
1312
|
-
readonly SPECIFIC_ATTRIBUTES: "SPECIFIC_ATTRIBUTES";
|
|
1313
|
-
};
|
|
1314
|
-
export type Select = (typeof Select)[keyof typeof Select];
|
|
1315
827
|
export interface RestoreTableFromBackupInput {
|
|
1316
828
|
TargetTableName: string | undefined;
|
|
1317
829
|
BackupArn: string | undefined;
|
|
@@ -1325,20 +837,6 @@ export interface RestoreTableFromBackupInput {
|
|
|
1325
837
|
export interface RestoreTableFromBackupOutput {
|
|
1326
838
|
TableDescription?: TableDescription | undefined;
|
|
1327
839
|
}
|
|
1328
|
-
export declare class TableAlreadyExistsException extends __BaseException {
|
|
1329
|
-
readonly name: "TableAlreadyExistsException";
|
|
1330
|
-
readonly $fault: "client";
|
|
1331
|
-
constructor(
|
|
1332
|
-
opts: __ExceptionOptionType<TableAlreadyExistsException, __BaseException>
|
|
1333
|
-
);
|
|
1334
|
-
}
|
|
1335
|
-
export declare class InvalidRestoreTimeException extends __BaseException {
|
|
1336
|
-
readonly name: "InvalidRestoreTimeException";
|
|
1337
|
-
readonly $fault: "client";
|
|
1338
|
-
constructor(
|
|
1339
|
-
opts: __ExceptionOptionType<InvalidRestoreTimeException, __BaseException>
|
|
1340
|
-
);
|
|
1341
|
-
}
|
|
1342
840
|
export interface RestoreTableToPointInTimeInput {
|
|
1343
841
|
SourceTableArn?: string | undefined;
|
|
1344
842
|
SourceTableName?: string | undefined;
|
|
@@ -1388,20 +886,6 @@ export interface UpdateContributorInsightsOutput {
|
|
|
1388
886
|
ContributorInsightsStatus?: ContributorInsightsStatus | undefined;
|
|
1389
887
|
ContributorInsightsMode?: ContributorInsightsMode | undefined;
|
|
1390
888
|
}
|
|
1391
|
-
export declare class ReplicaAlreadyExistsException extends __BaseException {
|
|
1392
|
-
readonly name: "ReplicaAlreadyExistsException";
|
|
1393
|
-
readonly $fault: "client";
|
|
1394
|
-
constructor(
|
|
1395
|
-
opts: __ExceptionOptionType<ReplicaAlreadyExistsException, __BaseException>
|
|
1396
|
-
);
|
|
1397
|
-
}
|
|
1398
|
-
export declare class ReplicaNotFoundException extends __BaseException {
|
|
1399
|
-
readonly name: "ReplicaNotFoundException";
|
|
1400
|
-
readonly $fault: "client";
|
|
1401
|
-
constructor(
|
|
1402
|
-
opts: __ExceptionOptionType<ReplicaNotFoundException, __BaseException>
|
|
1403
|
-
);
|
|
1404
|
-
}
|
|
1405
889
|
export interface ReplicaUpdate {
|
|
1406
890
|
Create?: CreateReplicaAction | undefined;
|
|
1407
891
|
Delete?: DeleteReplicaAction | undefined;
|
|
@@ -1413,13 +897,6 @@ export interface UpdateGlobalTableInput {
|
|
|
1413
897
|
export interface UpdateGlobalTableOutput {
|
|
1414
898
|
GlobalTableDescription?: GlobalTableDescription | undefined;
|
|
1415
899
|
}
|
|
1416
|
-
export declare class IndexNotFoundException extends __BaseException {
|
|
1417
|
-
readonly name: "IndexNotFoundException";
|
|
1418
|
-
readonly $fault: "client";
|
|
1419
|
-
constructor(
|
|
1420
|
-
opts: __ExceptionOptionType<IndexNotFoundException, __BaseException>
|
|
1421
|
-
);
|
|
1422
|
-
}
|
|
1423
900
|
export interface GlobalTableGlobalSecondaryIndexSettingsUpdate {
|
|
1424
901
|
IndexName: string | undefined;
|
|
1425
902
|
ProvisionedWriteCapacityUnits?: number | undefined;
|
|
@@ -1769,17 +1246,6 @@ export interface Condition {
|
|
|
1769
1246
|
AttributeValueList?: AttributeValue[] | undefined;
|
|
1770
1247
|
ComparisonOperator: ComparisonOperator | undefined;
|
|
1771
1248
|
}
|
|
1772
|
-
export declare class ConditionalCheckFailedException extends __BaseException {
|
|
1773
|
-
readonly name: "ConditionalCheckFailedException";
|
|
1774
|
-
readonly $fault: "client";
|
|
1775
|
-
Item?: Record<string, AttributeValue> | undefined;
|
|
1776
|
-
constructor(
|
|
1777
|
-
opts: __ExceptionOptionType<
|
|
1778
|
-
ConditionalCheckFailedException,
|
|
1779
|
-
__BaseException
|
|
1780
|
-
>
|
|
1781
|
-
);
|
|
1782
|
-
}
|
|
1783
1249
|
export interface DeleteRequest {
|
|
1784
1250
|
Key: Record<string, AttributeValue> | undefined;
|
|
1785
1251
|
}
|
|
@@ -1857,15 +1323,6 @@ export interface TransactGetItemsOutput {
|
|
|
1857
1323
|
ConsumedCapacity?: ConsumedCapacity[] | undefined;
|
|
1858
1324
|
Responses?: ItemResponse[] | undefined;
|
|
1859
1325
|
}
|
|
1860
|
-
export declare class TransactionCanceledException extends __BaseException {
|
|
1861
|
-
readonly name: "TransactionCanceledException";
|
|
1862
|
-
readonly $fault: "client";
|
|
1863
|
-
Message?: string | undefined;
|
|
1864
|
-
CancellationReasons?: CancellationReason[] | undefined;
|
|
1865
|
-
constructor(
|
|
1866
|
-
opts: __ExceptionOptionType<TransactionCanceledException, __BaseException>
|
|
1867
|
-
);
|
|
1868
|
-
}
|
|
1869
1326
|
export interface BatchGetItemInput {
|
|
1870
1327
|
RequestItems: Record<string, KeysAndAttributes> | undefined;
|
|
1871
1328
|
ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
|
|
@@ -2078,3 +1535,9 @@ export interface TransactWriteItem {
|
|
|
2078
1535
|
Delete?: Delete | undefined;
|
|
2079
1536
|
Update?: Update | undefined;
|
|
2080
1537
|
}
|
|
1538
|
+
export interface TransactWriteItemsInput {
|
|
1539
|
+
TransactItems: TransactWriteItem[] | undefined;
|
|
1540
|
+
ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
|
|
1541
|
+
ReturnItemCollectionMetrics?: ReturnItemCollectionMetrics | undefined;
|
|
1542
|
+
ClientRequestToken?: string | undefined;
|
|
1543
|
+
}
|