@aws-sdk/client-dynamodb 3.975.0 → 3.980.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 +79 -63
- package/dist-es/DynamoDB.js +29 -1
- package/dist-types/DynamoDB.d.ts +80 -1
- package/dist-types/ts3.4/DynamoDB.d.ts +103 -1
- package/package.json +20 -20
package/dist-cjs/index.js
CHANGED
|
@@ -3758,69 +3758,6 @@ class UpdateTimeToLiveCommand extends smithyClient.Command
|
|
|
3758
3758
|
.build() {
|
|
3759
3759
|
}
|
|
3760
3760
|
|
|
3761
|
-
const commands = {
|
|
3762
|
-
BatchExecuteStatementCommand,
|
|
3763
|
-
BatchGetItemCommand,
|
|
3764
|
-
BatchWriteItemCommand,
|
|
3765
|
-
CreateBackupCommand,
|
|
3766
|
-
CreateGlobalTableCommand,
|
|
3767
|
-
CreateTableCommand,
|
|
3768
|
-
DeleteBackupCommand,
|
|
3769
|
-
DeleteItemCommand,
|
|
3770
|
-
DeleteResourcePolicyCommand,
|
|
3771
|
-
DeleteTableCommand,
|
|
3772
|
-
DescribeBackupCommand,
|
|
3773
|
-
DescribeContinuousBackupsCommand,
|
|
3774
|
-
DescribeContributorInsightsCommand,
|
|
3775
|
-
DescribeEndpointsCommand,
|
|
3776
|
-
DescribeExportCommand,
|
|
3777
|
-
DescribeGlobalTableCommand,
|
|
3778
|
-
DescribeGlobalTableSettingsCommand,
|
|
3779
|
-
DescribeImportCommand,
|
|
3780
|
-
DescribeKinesisStreamingDestinationCommand,
|
|
3781
|
-
DescribeLimitsCommand,
|
|
3782
|
-
DescribeTableCommand,
|
|
3783
|
-
DescribeTableReplicaAutoScalingCommand,
|
|
3784
|
-
DescribeTimeToLiveCommand,
|
|
3785
|
-
DisableKinesisStreamingDestinationCommand,
|
|
3786
|
-
EnableKinesisStreamingDestinationCommand,
|
|
3787
|
-
ExecuteStatementCommand,
|
|
3788
|
-
ExecuteTransactionCommand,
|
|
3789
|
-
ExportTableToPointInTimeCommand,
|
|
3790
|
-
GetItemCommand,
|
|
3791
|
-
GetResourcePolicyCommand,
|
|
3792
|
-
ImportTableCommand,
|
|
3793
|
-
ListBackupsCommand,
|
|
3794
|
-
ListContributorInsightsCommand,
|
|
3795
|
-
ListExportsCommand,
|
|
3796
|
-
ListGlobalTablesCommand,
|
|
3797
|
-
ListImportsCommand,
|
|
3798
|
-
ListTablesCommand,
|
|
3799
|
-
ListTagsOfResourceCommand,
|
|
3800
|
-
PutItemCommand,
|
|
3801
|
-
PutResourcePolicyCommand,
|
|
3802
|
-
QueryCommand,
|
|
3803
|
-
RestoreTableFromBackupCommand,
|
|
3804
|
-
RestoreTableToPointInTimeCommand,
|
|
3805
|
-
ScanCommand,
|
|
3806
|
-
TagResourceCommand,
|
|
3807
|
-
TransactGetItemsCommand,
|
|
3808
|
-
TransactWriteItemsCommand,
|
|
3809
|
-
UntagResourceCommand,
|
|
3810
|
-
UpdateContinuousBackupsCommand,
|
|
3811
|
-
UpdateContributorInsightsCommand,
|
|
3812
|
-
UpdateGlobalTableCommand,
|
|
3813
|
-
UpdateGlobalTableSettingsCommand,
|
|
3814
|
-
UpdateItemCommand,
|
|
3815
|
-
UpdateKinesisStreamingDestinationCommand,
|
|
3816
|
-
UpdateTableCommand,
|
|
3817
|
-
UpdateTableReplicaAutoScalingCommand,
|
|
3818
|
-
UpdateTimeToLiveCommand,
|
|
3819
|
-
};
|
|
3820
|
-
class DynamoDB extends DynamoDBClient {
|
|
3821
|
-
}
|
|
3822
|
-
smithyClient.createAggregatedClient(commands, DynamoDB);
|
|
3823
|
-
|
|
3824
3761
|
const paginateListContributorInsights = core.createPaginator(DynamoDBClient, ListContributorInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3825
3762
|
|
|
3826
3763
|
const paginateListExports = core.createPaginator(DynamoDBClient, ListExportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -4064,6 +4001,85 @@ const waitUntilTableNotExists = async (params, input) => {
|
|
|
4064
4001
|
return utilWaiter.checkExceptions(result);
|
|
4065
4002
|
};
|
|
4066
4003
|
|
|
4004
|
+
const commands = {
|
|
4005
|
+
BatchExecuteStatementCommand,
|
|
4006
|
+
BatchGetItemCommand,
|
|
4007
|
+
BatchWriteItemCommand,
|
|
4008
|
+
CreateBackupCommand,
|
|
4009
|
+
CreateGlobalTableCommand,
|
|
4010
|
+
CreateTableCommand,
|
|
4011
|
+
DeleteBackupCommand,
|
|
4012
|
+
DeleteItemCommand,
|
|
4013
|
+
DeleteResourcePolicyCommand,
|
|
4014
|
+
DeleteTableCommand,
|
|
4015
|
+
DescribeBackupCommand,
|
|
4016
|
+
DescribeContinuousBackupsCommand,
|
|
4017
|
+
DescribeContributorInsightsCommand,
|
|
4018
|
+
DescribeEndpointsCommand,
|
|
4019
|
+
DescribeExportCommand,
|
|
4020
|
+
DescribeGlobalTableCommand,
|
|
4021
|
+
DescribeGlobalTableSettingsCommand,
|
|
4022
|
+
DescribeImportCommand,
|
|
4023
|
+
DescribeKinesisStreamingDestinationCommand,
|
|
4024
|
+
DescribeLimitsCommand,
|
|
4025
|
+
DescribeTableCommand,
|
|
4026
|
+
DescribeTableReplicaAutoScalingCommand,
|
|
4027
|
+
DescribeTimeToLiveCommand,
|
|
4028
|
+
DisableKinesisStreamingDestinationCommand,
|
|
4029
|
+
EnableKinesisStreamingDestinationCommand,
|
|
4030
|
+
ExecuteStatementCommand,
|
|
4031
|
+
ExecuteTransactionCommand,
|
|
4032
|
+
ExportTableToPointInTimeCommand,
|
|
4033
|
+
GetItemCommand,
|
|
4034
|
+
GetResourcePolicyCommand,
|
|
4035
|
+
ImportTableCommand,
|
|
4036
|
+
ListBackupsCommand,
|
|
4037
|
+
ListContributorInsightsCommand,
|
|
4038
|
+
ListExportsCommand,
|
|
4039
|
+
ListGlobalTablesCommand,
|
|
4040
|
+
ListImportsCommand,
|
|
4041
|
+
ListTablesCommand,
|
|
4042
|
+
ListTagsOfResourceCommand,
|
|
4043
|
+
PutItemCommand,
|
|
4044
|
+
PutResourcePolicyCommand,
|
|
4045
|
+
QueryCommand,
|
|
4046
|
+
RestoreTableFromBackupCommand,
|
|
4047
|
+
RestoreTableToPointInTimeCommand,
|
|
4048
|
+
ScanCommand,
|
|
4049
|
+
TagResourceCommand,
|
|
4050
|
+
TransactGetItemsCommand,
|
|
4051
|
+
TransactWriteItemsCommand,
|
|
4052
|
+
UntagResourceCommand,
|
|
4053
|
+
UpdateContinuousBackupsCommand,
|
|
4054
|
+
UpdateContributorInsightsCommand,
|
|
4055
|
+
UpdateGlobalTableCommand,
|
|
4056
|
+
UpdateGlobalTableSettingsCommand,
|
|
4057
|
+
UpdateItemCommand,
|
|
4058
|
+
UpdateKinesisStreamingDestinationCommand,
|
|
4059
|
+
UpdateTableCommand,
|
|
4060
|
+
UpdateTableReplicaAutoScalingCommand,
|
|
4061
|
+
UpdateTimeToLiveCommand,
|
|
4062
|
+
};
|
|
4063
|
+
const paginators = {
|
|
4064
|
+
paginateListContributorInsights,
|
|
4065
|
+
paginateListExports,
|
|
4066
|
+
paginateListImports,
|
|
4067
|
+
paginateListTables,
|
|
4068
|
+
paginateQuery,
|
|
4069
|
+
paginateScan,
|
|
4070
|
+
};
|
|
4071
|
+
const waiters = {
|
|
4072
|
+
waitUntilContributorInsightsEnabled,
|
|
4073
|
+
waitUntilExportCompleted,
|
|
4074
|
+
waitUntilImportCompleted,
|
|
4075
|
+
waitUntilKinesisStreamingDestinationActive,
|
|
4076
|
+
waitUntilTableExists,
|
|
4077
|
+
waitUntilTableNotExists,
|
|
4078
|
+
};
|
|
4079
|
+
class DynamoDB extends DynamoDBClient {
|
|
4080
|
+
}
|
|
4081
|
+
smithyClient.createAggregatedClient(commands, DynamoDB, { paginators, waiters });
|
|
4082
|
+
|
|
4067
4083
|
const ApproximateCreationDateTimePrecision = {
|
|
4068
4084
|
MICROSECOND: "MICROSECOND",
|
|
4069
4085
|
MILLISECOND: "MILLISECOND",
|
package/dist-es/DynamoDB.js
CHANGED
|
@@ -57,6 +57,18 @@ import { UpdateTableCommand } from "./commands/UpdateTableCommand";
|
|
|
57
57
|
import { UpdateTableReplicaAutoScalingCommand, } from "./commands/UpdateTableReplicaAutoScalingCommand";
|
|
58
58
|
import { UpdateTimeToLiveCommand, } from "./commands/UpdateTimeToLiveCommand";
|
|
59
59
|
import { DynamoDBClient } from "./DynamoDBClient";
|
|
60
|
+
import { paginateListContributorInsights } from "./pagination/ListContributorInsightsPaginator";
|
|
61
|
+
import { paginateListExports } from "./pagination/ListExportsPaginator";
|
|
62
|
+
import { paginateListImports } from "./pagination/ListImportsPaginator";
|
|
63
|
+
import { paginateListTables } from "./pagination/ListTablesPaginator";
|
|
64
|
+
import { paginateQuery } from "./pagination/QueryPaginator";
|
|
65
|
+
import { paginateScan } from "./pagination/ScanPaginator";
|
|
66
|
+
import { waitUntilContributorInsightsEnabled } from "./waiters/waitForContributorInsightsEnabled";
|
|
67
|
+
import { waitUntilExportCompleted } from "./waiters/waitForExportCompleted";
|
|
68
|
+
import { waitUntilImportCompleted } from "./waiters/waitForImportCompleted";
|
|
69
|
+
import { waitUntilKinesisStreamingDestinationActive } from "./waiters/waitForKinesisStreamingDestinationActive";
|
|
70
|
+
import { waitUntilTableExists } from "./waiters/waitForTableExists";
|
|
71
|
+
import { waitUntilTableNotExists } from "./waiters/waitForTableNotExists";
|
|
60
72
|
const commands = {
|
|
61
73
|
BatchExecuteStatementCommand,
|
|
62
74
|
BatchGetItemCommand,
|
|
@@ -116,6 +128,22 @@ const commands = {
|
|
|
116
128
|
UpdateTableReplicaAutoScalingCommand,
|
|
117
129
|
UpdateTimeToLiveCommand,
|
|
118
130
|
};
|
|
131
|
+
const paginators = {
|
|
132
|
+
paginateListContributorInsights,
|
|
133
|
+
paginateListExports,
|
|
134
|
+
paginateListImports,
|
|
135
|
+
paginateListTables,
|
|
136
|
+
paginateQuery,
|
|
137
|
+
paginateScan,
|
|
138
|
+
};
|
|
139
|
+
const waiters = {
|
|
140
|
+
waitUntilContributorInsightsEnabled,
|
|
141
|
+
waitUntilExportCompleted,
|
|
142
|
+
waitUntilImportCompleted,
|
|
143
|
+
waitUntilKinesisStreamingDestinationActive,
|
|
144
|
+
waitUntilTableExists,
|
|
145
|
+
waitUntilTableNotExists,
|
|
146
|
+
};
|
|
119
147
|
export class DynamoDB extends DynamoDBClient {
|
|
120
148
|
}
|
|
121
|
-
createAggregatedClient(commands, DynamoDB);
|
|
149
|
+
createAggregatedClient(commands, DynamoDB, { paginators, waiters });
|
package/dist-types/DynamoDB.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput } from "./commands/BatchExecuteStatementCommand";
|
|
3
4
|
import { BatchGetItemCommandInput, BatchGetItemCommandOutput } from "./commands/BatchGetItemCommand";
|
|
4
5
|
import { BatchWriteItemCommandInput, BatchWriteItemCommandOutput } from "./commands/BatchWriteItemCommand";
|
|
@@ -408,6 +409,84 @@ export interface DynamoDB {
|
|
|
408
409
|
updateTimeToLive(args: UpdateTimeToLiveCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTimeToLiveCommandOutput>;
|
|
409
410
|
updateTimeToLive(args: UpdateTimeToLiveCommandInput, cb: (err: any, data?: UpdateTimeToLiveCommandOutput) => void): void;
|
|
410
411
|
updateTimeToLive(args: UpdateTimeToLiveCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTimeToLiveCommandOutput) => void): void;
|
|
412
|
+
/**
|
|
413
|
+
* @see {@link ListContributorInsightsCommand}
|
|
414
|
+
* @param args - command input.
|
|
415
|
+
* @param paginationConfig - optional pagination config.
|
|
416
|
+
* @returns AsyncIterable of {@link ListContributorInsightsCommandOutput}.
|
|
417
|
+
*/
|
|
418
|
+
paginateListContributorInsights(args?: ListContributorInsightsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContributorInsightsCommandOutput>;
|
|
419
|
+
/**
|
|
420
|
+
* @see {@link ListExportsCommand}
|
|
421
|
+
* @param args - command input.
|
|
422
|
+
* @param paginationConfig - optional pagination config.
|
|
423
|
+
* @returns AsyncIterable of {@link ListExportsCommandOutput}.
|
|
424
|
+
*/
|
|
425
|
+
paginateListExports(args?: ListExportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExportsCommandOutput>;
|
|
426
|
+
/**
|
|
427
|
+
* @see {@link ListImportsCommand}
|
|
428
|
+
* @param args - command input.
|
|
429
|
+
* @param paginationConfig - optional pagination config.
|
|
430
|
+
* @returns AsyncIterable of {@link ListImportsCommandOutput}.
|
|
431
|
+
*/
|
|
432
|
+
paginateListImports(args?: ListImportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListImportsCommandOutput>;
|
|
433
|
+
/**
|
|
434
|
+
* @see {@link ListTablesCommand}
|
|
435
|
+
* @param args - command input.
|
|
436
|
+
* @param paginationConfig - optional pagination config.
|
|
437
|
+
* @returns AsyncIterable of {@link ListTablesCommandOutput}.
|
|
438
|
+
*/
|
|
439
|
+
paginateListTables(args?: ListTablesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTablesCommandOutput>;
|
|
440
|
+
/**
|
|
441
|
+
* @see {@link QueryCommand}
|
|
442
|
+
* @param args - command input.
|
|
443
|
+
* @param paginationConfig - optional pagination config.
|
|
444
|
+
* @returns AsyncIterable of {@link QueryCommandOutput}.
|
|
445
|
+
*/
|
|
446
|
+
paginateQuery(args: QueryCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<QueryCommandOutput>;
|
|
447
|
+
/**
|
|
448
|
+
* @see {@link ScanCommand}
|
|
449
|
+
* @param args - command input.
|
|
450
|
+
* @param paginationConfig - optional pagination config.
|
|
451
|
+
* @returns AsyncIterable of {@link ScanCommandOutput}.
|
|
452
|
+
*/
|
|
453
|
+
paginateScan(args: ScanCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ScanCommandOutput>;
|
|
454
|
+
/**
|
|
455
|
+
* @see {@link DescribeContributorInsightsCommand}
|
|
456
|
+
* @param args - command input.
|
|
457
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
458
|
+
*/
|
|
459
|
+
waitUntilContributorInsightsEnabled(args: DescribeContributorInsightsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<DynamoDB>, "client">): Promise<WaiterResult>;
|
|
460
|
+
/**
|
|
461
|
+
* @see {@link DescribeExportCommand}
|
|
462
|
+
* @param args - command input.
|
|
463
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
464
|
+
*/
|
|
465
|
+
waitUntilExportCompleted(args: DescribeExportCommandInput, waiterConfig: number | Omit<WaiterConfiguration<DynamoDB>, "client">): Promise<WaiterResult>;
|
|
466
|
+
/**
|
|
467
|
+
* @see {@link DescribeImportCommand}
|
|
468
|
+
* @param args - command input.
|
|
469
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
470
|
+
*/
|
|
471
|
+
waitUntilImportCompleted(args: DescribeImportCommandInput, waiterConfig: number | Omit<WaiterConfiguration<DynamoDB>, "client">): Promise<WaiterResult>;
|
|
472
|
+
/**
|
|
473
|
+
* @see {@link DescribeKinesisStreamingDestinationCommand}
|
|
474
|
+
* @param args - command input.
|
|
475
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
476
|
+
*/
|
|
477
|
+
waitUntilKinesisStreamingDestinationActive(args: DescribeKinesisStreamingDestinationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<DynamoDB>, "client">): Promise<WaiterResult>;
|
|
478
|
+
/**
|
|
479
|
+
* @see {@link DescribeTableCommand}
|
|
480
|
+
* @param args - command input.
|
|
481
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
482
|
+
*/
|
|
483
|
+
waitUntilTableExists(args: DescribeTableCommandInput, waiterConfig: number | Omit<WaiterConfiguration<DynamoDB>, "client">): Promise<WaiterResult>;
|
|
484
|
+
/**
|
|
485
|
+
* @see {@link DescribeTableCommand}
|
|
486
|
+
* @param args - command input.
|
|
487
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
488
|
+
*/
|
|
489
|
+
waitUntilTableNotExists(args: DescribeTableCommandInput, waiterConfig: number | Omit<WaiterConfiguration<DynamoDB>, "client">): Promise<WaiterResult>;
|
|
411
490
|
}
|
|
412
491
|
/**
|
|
413
492
|
* <fullname>Amazon DynamoDB</fullname>
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import {
|
|
3
9
|
BatchExecuteStatementCommandInput,
|
|
4
10
|
BatchExecuteStatementCommandOutput,
|
|
@@ -996,5 +1002,101 @@ export interface DynamoDB {
|
|
|
996
1002
|
options: __HttpHandlerOptions,
|
|
997
1003
|
cb: (err: any, data?: UpdateTimeToLiveCommandOutput) => void
|
|
998
1004
|
): void;
|
|
1005
|
+
paginateListContributorInsights(
|
|
1006
|
+
args?: ListContributorInsightsCommandInput,
|
|
1007
|
+
paginationConfig?: Pick<
|
|
1008
|
+
PaginationConfiguration,
|
|
1009
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1010
|
+
>
|
|
1011
|
+
): Paginator<ListContributorInsightsCommandOutput>;
|
|
1012
|
+
paginateListExports(
|
|
1013
|
+
args?: ListExportsCommandInput,
|
|
1014
|
+
paginationConfig?: Pick<
|
|
1015
|
+
PaginationConfiguration,
|
|
1016
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1017
|
+
>
|
|
1018
|
+
): Paginator<ListExportsCommandOutput>;
|
|
1019
|
+
paginateListImports(
|
|
1020
|
+
args?: ListImportsCommandInput,
|
|
1021
|
+
paginationConfig?: Pick<
|
|
1022
|
+
PaginationConfiguration,
|
|
1023
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1024
|
+
>
|
|
1025
|
+
): Paginator<ListImportsCommandOutput>;
|
|
1026
|
+
paginateListTables(
|
|
1027
|
+
args?: ListTablesCommandInput,
|
|
1028
|
+
paginationConfig?: Pick<
|
|
1029
|
+
PaginationConfiguration,
|
|
1030
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1031
|
+
>
|
|
1032
|
+
): Paginator<ListTablesCommandOutput>;
|
|
1033
|
+
paginateQuery(
|
|
1034
|
+
args: QueryCommandInput,
|
|
1035
|
+
paginationConfig?: Pick<
|
|
1036
|
+
PaginationConfiguration,
|
|
1037
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1038
|
+
>
|
|
1039
|
+
): Paginator<QueryCommandOutput>;
|
|
1040
|
+
paginateScan(
|
|
1041
|
+
args: ScanCommandInput,
|
|
1042
|
+
paginationConfig?: Pick<
|
|
1043
|
+
PaginationConfiguration,
|
|
1044
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1045
|
+
>
|
|
1046
|
+
): Paginator<ScanCommandOutput>;
|
|
1047
|
+
waitUntilContributorInsightsEnabled(
|
|
1048
|
+
args: DescribeContributorInsightsCommandInput,
|
|
1049
|
+
waiterConfig:
|
|
1050
|
+
| number
|
|
1051
|
+
| Pick<
|
|
1052
|
+
WaiterConfiguration<DynamoDB>,
|
|
1053
|
+
Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
|
|
1054
|
+
>
|
|
1055
|
+
): Promise<WaiterResult>;
|
|
1056
|
+
waitUntilExportCompleted(
|
|
1057
|
+
args: DescribeExportCommandInput,
|
|
1058
|
+
waiterConfig:
|
|
1059
|
+
| number
|
|
1060
|
+
| Pick<
|
|
1061
|
+
WaiterConfiguration<DynamoDB>,
|
|
1062
|
+
Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
|
|
1063
|
+
>
|
|
1064
|
+
): Promise<WaiterResult>;
|
|
1065
|
+
waitUntilImportCompleted(
|
|
1066
|
+
args: DescribeImportCommandInput,
|
|
1067
|
+
waiterConfig:
|
|
1068
|
+
| number
|
|
1069
|
+
| Pick<
|
|
1070
|
+
WaiterConfiguration<DynamoDB>,
|
|
1071
|
+
Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
|
|
1072
|
+
>
|
|
1073
|
+
): Promise<WaiterResult>;
|
|
1074
|
+
waitUntilKinesisStreamingDestinationActive(
|
|
1075
|
+
args: DescribeKinesisStreamingDestinationCommandInput,
|
|
1076
|
+
waiterConfig:
|
|
1077
|
+
| number
|
|
1078
|
+
| Pick<
|
|
1079
|
+
WaiterConfiguration<DynamoDB>,
|
|
1080
|
+
Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
|
|
1081
|
+
>
|
|
1082
|
+
): Promise<WaiterResult>;
|
|
1083
|
+
waitUntilTableExists(
|
|
1084
|
+
args: DescribeTableCommandInput,
|
|
1085
|
+
waiterConfig:
|
|
1086
|
+
| number
|
|
1087
|
+
| Pick<
|
|
1088
|
+
WaiterConfiguration<DynamoDB>,
|
|
1089
|
+
Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
|
|
1090
|
+
>
|
|
1091
|
+
): Promise<WaiterResult>;
|
|
1092
|
+
waitUntilTableNotExists(
|
|
1093
|
+
args: DescribeTableCommandInput,
|
|
1094
|
+
waiterConfig:
|
|
1095
|
+
| number
|
|
1096
|
+
| Pick<
|
|
1097
|
+
WaiterConfiguration<DynamoDB>,
|
|
1098
|
+
Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
|
|
1099
|
+
>
|
|
1100
|
+
): Promise<WaiterResult>;
|
|
999
1101
|
}
|
|
1000
1102
|
export declare class DynamoDB extends DynamoDBClient implements DynamoDB {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dynamodb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-dynamodb",
|
|
@@ -23,40 +23,40 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/dynamodb-codec": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-endpoint-discovery": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
33
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
34
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
35
|
-
"@aws-sdk/types": "^3.973.
|
|
36
|
-
"@aws-sdk/util-endpoints": "3.
|
|
37
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
38
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.5",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
28
|
+
"@aws-sdk/dynamodb-codec": "^3.972.5",
|
|
29
|
+
"@aws-sdk/middleware-endpoint-discovery": "^3.972.3",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
31
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
33
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
34
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
35
|
+
"@aws-sdk/types": "^3.973.1",
|
|
36
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
37
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
38
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
39
39
|
"@smithy/config-resolver": "^4.4.6",
|
|
40
|
-
"@smithy/core": "^3.
|
|
40
|
+
"@smithy/core": "^3.22.0",
|
|
41
41
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
42
42
|
"@smithy/hash-node": "^4.2.8",
|
|
43
43
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
44
44
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
45
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
46
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
46
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
47
47
|
"@smithy/middleware-serde": "^4.2.9",
|
|
48
48
|
"@smithy/middleware-stack": "^4.2.8",
|
|
49
49
|
"@smithy/node-config-provider": "^4.3.8",
|
|
50
50
|
"@smithy/node-http-handler": "^4.4.8",
|
|
51
51
|
"@smithy/protocol-http": "^5.3.8",
|
|
52
|
-
"@smithy/smithy-client": "^4.
|
|
52
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
53
53
|
"@smithy/types": "^4.12.0",
|
|
54
54
|
"@smithy/url-parser": "^4.2.8",
|
|
55
55
|
"@smithy/util-base64": "^4.3.0",
|
|
56
56
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
57
57
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
58
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
59
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
58
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
59
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
60
60
|
"@smithy/util-endpoints": "^3.2.8",
|
|
61
61
|
"@smithy/util-middleware": "^4.2.8",
|
|
62
62
|
"@smithy/util-retry": "^4.2.8",
|