@aws-sdk/lib-dynamodb 3.131.0 → 3.142.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/CHANGELOG.md +27 -0
- package/README.md +73 -0
- package/dist-cjs/baseCommand/DynamoDBDocumentClientCommand.js +28 -0
- package/dist-cjs/commands/BatchExecuteStatementCommand.js +8 -13
- package/dist-cjs/commands/BatchGetCommand.js +8 -13
- package/dist-cjs/commands/BatchWriteCommand.js +8 -13
- package/dist-cjs/commands/DeleteCommand.js +8 -13
- package/dist-cjs/commands/ExecuteStatementCommand.js +8 -13
- package/dist-cjs/commands/ExecuteTransactionCommand.js +8 -13
- package/dist-cjs/commands/GetCommand.js +8 -13
- package/dist-cjs/commands/PutCommand.js +8 -13
- package/dist-cjs/commands/QueryCommand.js +8 -13
- package/dist-cjs/commands/ScanCommand.js +8 -13
- package/dist-cjs/commands/TransactGetCommand.js +8 -13
- package/dist-cjs/commands/TransactWriteCommand.js +8 -13
- package/dist-cjs/commands/UpdateCommand.js +8 -13
- package/dist-es/baseCommand/DynamoDBDocumentClientCommand.js +45 -0
- package/dist-es/commands/BatchExecuteStatementCommand.js +11 -18
- package/dist-es/commands/BatchGetCommand.js +11 -18
- package/dist-es/commands/BatchWriteCommand.js +11 -18
- package/dist-es/commands/DeleteCommand.js +11 -18
- package/dist-es/commands/ExecuteStatementCommand.js +11 -18
- package/dist-es/commands/ExecuteTransactionCommand.js +11 -18
- package/dist-es/commands/GetCommand.js +11 -18
- package/dist-es/commands/PutCommand.js +11 -18
- package/dist-es/commands/QueryCommand.js +11 -18
- package/dist-es/commands/ScanCommand.js +11 -18
- package/dist-es/commands/TransactGetCommand.js +11 -18
- package/dist-es/commands/TransactWriteCommand.js +11 -18
- package/dist-es/commands/UpdateCommand.js +11 -18
- package/dist-types/baseCommand/DynamoDBDocumentClientCommand.d.ts +15 -0
- package/dist-types/commands/BatchExecuteStatementCommand.d.ts +17 -5
- package/dist-types/commands/BatchGetCommand.d.ts +26 -5
- package/dist-types/commands/BatchWriteCommand.d.ts +34 -5
- package/dist-types/commands/DeleteCommand.d.ts +25 -5
- package/dist-types/commands/ExecuteStatementCommand.d.ts +11 -5
- package/dist-types/commands/ExecuteTransactionCommand.d.ts +17 -5
- package/dist-types/commands/GetCommand.d.ts +11 -5
- package/dist-types/commands/PutCommand.d.ts +25 -5
- package/dist-types/commands/QueryCommand.d.ts +19 -5
- package/dist-types/commands/ScanCommand.d.ts +19 -5
- package/dist-types/commands/TransactGetCommand.d.ts +20 -5
- package/dist-types/commands/TransactWriteCommand.d.ts +22 -5
- package/dist-types/commands/UpdateCommand.d.ts +25 -5
- package/dist-types/ts3.4/baseCommand/DynamoDBDocumentClientCommand.d.ts +12 -0
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +17 -5
- package/dist-types/ts3.4/commands/BatchGetCommand.d.ts +26 -5
- package/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +34 -5
- package/dist-types/ts3.4/commands/DeleteCommand.d.ts +25 -5
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +11 -5
- package/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +17 -5
- package/dist-types/ts3.4/commands/GetCommand.d.ts +11 -5
- package/dist-types/ts3.4/commands/PutCommand.d.ts +25 -5
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +19 -5
- package/dist-types/ts3.4/commands/ScanCommand.d.ts +19 -5
- package/dist-types/ts3.4/commands/TransactGetCommand.d.ts +20 -5
- package/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +22 -5
- package/dist-types/ts3.4/commands/UpdateCommand.d.ts +25 -5
- package/package.json +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BatchExecuteStatementCommandInput as __BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput as __BatchExecuteStatementCommandOutput, BatchStatementRequest, BatchStatementResponse } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { BatchExecuteStatementCommand as __BatchExecuteStatementCommand, BatchExecuteStatementCommandInput as __BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput as __BatchExecuteStatementCommandOutput, BatchStatementRequest, BatchStatementResponse } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type BatchExecuteStatementCommandInput = Pick<__BatchExecuteStatementCommandInput, Exclude<keyof __BatchExecuteStatementCommandInput, "Statements">> & {
|
|
7
7
|
Statements: (Pick<BatchStatementRequest, Exclude<keyof BatchStatementRequest, "Parameters">> & {
|
|
@@ -14,10 +14,22 @@ export declare type BatchExecuteStatementCommandOutput = Pick<__BatchExecuteStat
|
|
|
14
14
|
})[];
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
-
export declare class BatchExecuteStatementCommand extends
|
|
17
|
+
export declare class BatchExecuteStatementCommand extends DynamoDBDocumentClientCommand<BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput, __BatchExecuteStatementCommandInput, __BatchExecuteStatementCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
18
18
|
readonly input: BatchExecuteStatementCommandInput;
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
protected readonly inputKeyNodes: {
|
|
20
|
+
key: string;
|
|
21
|
+
children: {
|
|
22
|
+
key: string;
|
|
23
|
+
}[];
|
|
24
|
+
}[];
|
|
25
|
+
protected readonly outputKeyNodes: {
|
|
26
|
+
key: string;
|
|
27
|
+
children: {
|
|
28
|
+
key: string;
|
|
29
|
+
}[];
|
|
30
|
+
}[];
|
|
31
|
+
protected readonly clientCommand: __BatchExecuteStatementCommand;
|
|
32
|
+
readonly middlewareStack: MiddlewareStack<BatchExecuteStatementCommandInput | __BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput | __BatchExecuteStatementCommandOutput>;
|
|
21
33
|
constructor(input: BatchExecuteStatementCommandInput);
|
|
22
34
|
|
|
23
35
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BatchGetItemCommandInput as __BatchGetItemCommandInput, BatchGetItemCommandOutput as __BatchGetItemCommandOutput, KeysAndAttributes } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { BatchGetItemCommand as __BatchGetItemCommand, BatchGetItemCommandInput as __BatchGetItemCommandInput, BatchGetItemCommandOutput as __BatchGetItemCommandOutput, KeysAndAttributes } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type BatchGetCommandInput = Pick<__BatchGetItemCommandInput, Exclude<keyof __BatchGetItemCommandInput, "RequestItems">> & {
|
|
7
7
|
RequestItems: Record<string, Pick<KeysAndAttributes, Exclude<keyof KeysAndAttributes, "Keys">> & {
|
|
@@ -15,10 +15,31 @@ export declare type BatchGetCommandOutput = Pick<__BatchGetItemCommandOutput, Ex
|
|
|
15
15
|
}>;
|
|
16
16
|
};
|
|
17
17
|
|
|
18
|
-
export declare class BatchGetCommand extends
|
|
18
|
+
export declare class BatchGetCommand extends DynamoDBDocumentClientCommand<BatchGetCommandInput, BatchGetCommandOutput, __BatchGetItemCommandInput, __BatchGetItemCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
19
19
|
readonly input: BatchGetCommandInput;
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
protected readonly inputKeyNodes: {
|
|
21
|
+
key: string;
|
|
22
|
+
children: {
|
|
23
|
+
children: {
|
|
24
|
+
key: string;
|
|
25
|
+
}[];
|
|
26
|
+
};
|
|
27
|
+
}[];
|
|
28
|
+
protected readonly outputKeyNodes: ({
|
|
29
|
+
key: string;
|
|
30
|
+
children: {
|
|
31
|
+
children?: undefined;
|
|
32
|
+
};
|
|
33
|
+
} | {
|
|
34
|
+
key: string;
|
|
35
|
+
children: {
|
|
36
|
+
children: {
|
|
37
|
+
key: string;
|
|
38
|
+
}[];
|
|
39
|
+
};
|
|
40
|
+
})[];
|
|
41
|
+
protected readonly clientCommand: __BatchGetItemCommand;
|
|
42
|
+
readonly middlewareStack: MiddlewareStack<BatchGetCommandInput | __BatchGetItemCommandInput, BatchGetCommandOutput | __BatchGetItemCommandOutput>;
|
|
22
43
|
constructor(input: BatchGetCommandInput);
|
|
23
44
|
|
|
24
45
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetCommandInput, BatchGetCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BatchWriteItemCommandInput as __BatchWriteItemCommandInput, BatchWriteItemCommandOutput as __BatchWriteItemCommandOutput, DeleteRequest, ItemCollectionMetrics, PutRequest, WriteRequest } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { BatchWriteItemCommand as __BatchWriteItemCommand, BatchWriteItemCommandInput as __BatchWriteItemCommandInput, BatchWriteItemCommandOutput as __BatchWriteItemCommandOutput, DeleteRequest, ItemCollectionMetrics, PutRequest, WriteRequest } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type BatchWriteCommandInput = Pick<__BatchWriteItemCommandInput, Exclude<keyof __BatchWriteItemCommandInput, "RequestItems">> & {
|
|
7
7
|
RequestItems: Record<string, (Pick<WriteRequest, Exclude<keyof WriteRequest, "PutRequest" | "DeleteRequest">> & {
|
|
@@ -27,10 +27,39 @@ export declare type BatchWriteCommandOutput = Pick<__BatchWriteItemCommandOutput
|
|
|
27
27
|
})[]>;
|
|
28
28
|
};
|
|
29
29
|
|
|
30
|
-
export declare class BatchWriteCommand extends
|
|
30
|
+
export declare class BatchWriteCommand extends DynamoDBDocumentClientCommand<BatchWriteCommandInput, BatchWriteCommandOutput, __BatchWriteItemCommandInput, __BatchWriteItemCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
31
31
|
readonly input: BatchWriteCommandInput;
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
protected readonly inputKeyNodes: {
|
|
33
|
+
key: string;
|
|
34
|
+
children: {
|
|
35
|
+
children: {
|
|
36
|
+
key: string;
|
|
37
|
+
children: {
|
|
38
|
+
key: string;
|
|
39
|
+
}[];
|
|
40
|
+
}[];
|
|
41
|
+
};
|
|
42
|
+
}[];
|
|
43
|
+
protected readonly outputKeyNodes: ({
|
|
44
|
+
key: string;
|
|
45
|
+
children: {
|
|
46
|
+
children: {
|
|
47
|
+
key: string;
|
|
48
|
+
children: {
|
|
49
|
+
key: string;
|
|
50
|
+
}[];
|
|
51
|
+
}[];
|
|
52
|
+
};
|
|
53
|
+
} | {
|
|
54
|
+
key: string;
|
|
55
|
+
children: {
|
|
56
|
+
children: {
|
|
57
|
+
key: string;
|
|
58
|
+
}[];
|
|
59
|
+
};
|
|
60
|
+
})[];
|
|
61
|
+
protected readonly clientCommand: __BatchWriteItemCommand;
|
|
62
|
+
readonly middlewareStack: MiddlewareStack<BatchWriteCommandInput | __BatchWriteItemCommandInput, BatchWriteCommandOutput | __BatchWriteItemCommandOutput>;
|
|
34
63
|
constructor(input: BatchWriteCommandInput);
|
|
35
64
|
|
|
36
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchWriteCommandInput, BatchWriteCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { DeleteItemCommandInput as __DeleteItemCommandInput, DeleteItemCommandOutput as __DeleteItemCommandOutput, ExpectedAttributeValue, ItemCollectionMetrics } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { DeleteItemCommand as __DeleteItemCommand, DeleteItemCommandInput as __DeleteItemCommandInput, DeleteItemCommandOutput as __DeleteItemCommandOutput, ExpectedAttributeValue, ItemCollectionMetrics } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type DeleteCommandInput = Pick<__DeleteItemCommandInput, Exclude<keyof __DeleteItemCommandInput, "Key" | "Expected" | "ExpressionAttributeValues">> & {
|
|
7
7
|
Key: Record<string, NativeAttributeValue> | undefined;
|
|
@@ -18,10 +18,30 @@ export declare type DeleteCommandOutput = Pick<__DeleteItemCommandOutput, Exclud
|
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
|
|
21
|
-
export declare class DeleteCommand extends
|
|
21
|
+
export declare class DeleteCommand extends DynamoDBDocumentClientCommand<DeleteCommandInput, DeleteCommandOutput, __DeleteItemCommandInput, __DeleteItemCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
22
22
|
readonly input: DeleteCommandInput;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
protected readonly inputKeyNodes: ({
|
|
24
|
+
key: string;
|
|
25
|
+
children?: undefined;
|
|
26
|
+
} | {
|
|
27
|
+
key: string;
|
|
28
|
+
children: {
|
|
29
|
+
children: {
|
|
30
|
+
key: string;
|
|
31
|
+
}[];
|
|
32
|
+
};
|
|
33
|
+
})[];
|
|
34
|
+
protected readonly outputKeyNodes: ({
|
|
35
|
+
key: string;
|
|
36
|
+
children?: undefined;
|
|
37
|
+
} | {
|
|
38
|
+
key: string;
|
|
39
|
+
children: {
|
|
40
|
+
key: string;
|
|
41
|
+
}[];
|
|
42
|
+
})[];
|
|
43
|
+
protected readonly clientCommand: __DeleteItemCommand;
|
|
44
|
+
readonly middlewareStack: MiddlewareStack<DeleteCommandInput | __DeleteItemCommandInput, DeleteCommandOutput | __DeleteItemCommandOutput>;
|
|
25
45
|
constructor(input: DeleteCommandInput);
|
|
26
46
|
|
|
27
47
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCommandInput, DeleteCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ExecuteStatementCommandInput as __ExecuteStatementCommandInput, ExecuteStatementCommandOutput as __ExecuteStatementCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { ExecuteStatementCommand as __ExecuteStatementCommand, ExecuteStatementCommandInput as __ExecuteStatementCommandInput, ExecuteStatementCommandOutput as __ExecuteStatementCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type ExecuteStatementCommandInput = Pick<__ExecuteStatementCommandInput, Exclude<keyof __ExecuteStatementCommandInput, "Parameters">> & {
|
|
7
7
|
Parameters?: NativeAttributeValue[];
|
|
@@ -11,10 +11,16 @@ export declare type ExecuteStatementCommandOutput = Pick<__ExecuteStatementComma
|
|
|
11
11
|
LastEvaluatedKey?: Record<string, NativeAttributeValue>;
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
-
export declare class ExecuteStatementCommand extends
|
|
14
|
+
export declare class ExecuteStatementCommand extends DynamoDBDocumentClientCommand<ExecuteStatementCommandInput, ExecuteStatementCommandOutput, __ExecuteStatementCommandInput, __ExecuteStatementCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
15
15
|
readonly input: ExecuteStatementCommandInput;
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
protected readonly inputKeyNodes: {
|
|
17
|
+
key: string;
|
|
18
|
+
}[];
|
|
19
|
+
protected readonly outputKeyNodes: {
|
|
20
|
+
key: string;
|
|
21
|
+
}[];
|
|
22
|
+
protected readonly clientCommand: __ExecuteStatementCommand;
|
|
23
|
+
readonly middlewareStack: MiddlewareStack<ExecuteStatementCommandInput | __ExecuteStatementCommandInput, ExecuteStatementCommandOutput | __ExecuteStatementCommandOutput>;
|
|
18
24
|
constructor(input: ExecuteStatementCommandInput);
|
|
19
25
|
|
|
20
26
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteStatementCommandInput, ExecuteStatementCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ExecuteTransactionCommandInput as __ExecuteTransactionCommandInput, ExecuteTransactionCommandOutput as __ExecuteTransactionCommandOutput, ItemResponse, ParameterizedStatement } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { ExecuteTransactionCommand as __ExecuteTransactionCommand, ExecuteTransactionCommandInput as __ExecuteTransactionCommandInput, ExecuteTransactionCommandOutput as __ExecuteTransactionCommandOutput, ItemResponse, ParameterizedStatement } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type ExecuteTransactionCommandInput = Pick<__ExecuteTransactionCommandInput, Exclude<keyof __ExecuteTransactionCommandInput, "TransactStatements">> & {
|
|
7
7
|
TransactStatements: (Pick<ParameterizedStatement, Exclude<keyof ParameterizedStatement, "Parameters">> & {
|
|
@@ -14,10 +14,22 @@ export declare type ExecuteTransactionCommandOutput = Pick<__ExecuteTransactionC
|
|
|
14
14
|
})[];
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
-
export declare class ExecuteTransactionCommand extends
|
|
17
|
+
export declare class ExecuteTransactionCommand extends DynamoDBDocumentClientCommand<ExecuteTransactionCommandInput, ExecuteTransactionCommandOutput, __ExecuteTransactionCommandInput, __ExecuteTransactionCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
18
18
|
readonly input: ExecuteTransactionCommandInput;
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
protected readonly inputKeyNodes: {
|
|
20
|
+
key: string;
|
|
21
|
+
children: {
|
|
22
|
+
key: string;
|
|
23
|
+
}[];
|
|
24
|
+
}[];
|
|
25
|
+
protected readonly outputKeyNodes: {
|
|
26
|
+
key: string;
|
|
27
|
+
children: {
|
|
28
|
+
key: string;
|
|
29
|
+
}[];
|
|
30
|
+
}[];
|
|
31
|
+
protected readonly clientCommand: __ExecuteTransactionCommand;
|
|
32
|
+
readonly middlewareStack: MiddlewareStack<ExecuteTransactionCommandInput | __ExecuteTransactionCommandInput, ExecuteTransactionCommandOutput | __ExecuteTransactionCommandOutput>;
|
|
21
33
|
constructor(input: ExecuteTransactionCommandInput);
|
|
22
34
|
|
|
23
35
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteTransactionCommandInput, ExecuteTransactionCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { GetItemCommandInput as __GetItemCommandInput, GetItemCommandOutput as __GetItemCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { GetItemCommand as __GetItemCommand, GetItemCommandInput as __GetItemCommandInput, GetItemCommandOutput as __GetItemCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type GetCommandInput = Pick<__GetItemCommandInput, Exclude<keyof __GetItemCommandInput, "Key">> & {
|
|
7
7
|
Key: Record<string, NativeAttributeValue> | undefined;
|
|
@@ -10,10 +10,16 @@ export declare type GetCommandOutput = Pick<__GetItemCommandOutput, Exclude<keyo
|
|
|
10
10
|
Item?: Record<string, NativeAttributeValue>;
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
export declare class GetCommand extends
|
|
13
|
+
export declare class GetCommand extends DynamoDBDocumentClientCommand<GetCommandInput, GetCommandOutput, __GetItemCommandInput, __GetItemCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
14
14
|
readonly input: GetCommandInput;
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
protected readonly inputKeyNodes: {
|
|
16
|
+
key: string;
|
|
17
|
+
}[];
|
|
18
|
+
protected readonly outputKeyNodes: {
|
|
19
|
+
key: string;
|
|
20
|
+
}[];
|
|
21
|
+
protected readonly clientCommand: __GetItemCommand;
|
|
22
|
+
readonly middlewareStack: MiddlewareStack<GetCommandInput | __GetItemCommandInput, GetCommandOutput | __GetItemCommandOutput>;
|
|
17
23
|
constructor(input: GetCommandInput);
|
|
18
24
|
|
|
19
25
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCommandInput, GetCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ExpectedAttributeValue, ItemCollectionMetrics, PutItemCommandInput as __PutItemCommandInput, PutItemCommandOutput as __PutItemCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { ExpectedAttributeValue, ItemCollectionMetrics, PutItemCommand as __PutItemCommand, PutItemCommandInput as __PutItemCommandInput, PutItemCommandOutput as __PutItemCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type PutCommandInput = Pick<__PutItemCommandInput, Exclude<keyof __PutItemCommandInput, "Item" | "Expected" | "ExpressionAttributeValues">> & {
|
|
7
7
|
Item: Record<string, NativeAttributeValue> | undefined;
|
|
@@ -18,10 +18,30 @@ export declare type PutCommandOutput = Pick<__PutItemCommandOutput, Exclude<keyo
|
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
|
|
21
|
-
export declare class PutCommand extends
|
|
21
|
+
export declare class PutCommand extends DynamoDBDocumentClientCommand<PutCommandInput, PutCommandOutput, __PutItemCommandInput, __PutItemCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
22
22
|
readonly input: PutCommandInput;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
protected readonly inputKeyNodes: ({
|
|
24
|
+
key: string;
|
|
25
|
+
children?: undefined;
|
|
26
|
+
} | {
|
|
27
|
+
key: string;
|
|
28
|
+
children: {
|
|
29
|
+
children: {
|
|
30
|
+
key: string;
|
|
31
|
+
}[];
|
|
32
|
+
};
|
|
33
|
+
})[];
|
|
34
|
+
protected readonly outputKeyNodes: ({
|
|
35
|
+
key: string;
|
|
36
|
+
children?: undefined;
|
|
37
|
+
} | {
|
|
38
|
+
key: string;
|
|
39
|
+
children: {
|
|
40
|
+
key: string;
|
|
41
|
+
}[];
|
|
42
|
+
})[];
|
|
43
|
+
protected readonly clientCommand: __PutItemCommand;
|
|
44
|
+
readonly middlewareStack: MiddlewareStack<PutCommandInput | __PutItemCommandInput, PutCommandOutput | __PutItemCommandOutput>;
|
|
25
45
|
constructor(input: PutCommandInput);
|
|
26
46
|
|
|
27
47
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutCommandInput, PutCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Condition, QueryCommandInput as __QueryCommandInput, QueryCommandOutput as __QueryCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { Condition, QueryCommand as __QueryCommand, QueryCommandInput as __QueryCommandInput, QueryCommandOutput as __QueryCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type QueryCommandInput = Pick<__QueryCommandInput, Exclude<keyof __QueryCommandInput, "KeyConditions" | "QueryFilter" | "ExclusiveStartKey" | "ExpressionAttributeValues">> & {
|
|
7
7
|
KeyConditions?: Record<string, Pick<Condition, Exclude<keyof Condition, "AttributeValueList">> & {
|
|
@@ -18,10 +18,24 @@ export declare type QueryCommandOutput = Pick<__QueryCommandOutput, Exclude<keyo
|
|
|
18
18
|
LastEvaluatedKey?: Record<string, NativeAttributeValue>;
|
|
19
19
|
};
|
|
20
20
|
|
|
21
|
-
export declare class QueryCommand extends
|
|
21
|
+
export declare class QueryCommand extends DynamoDBDocumentClientCommand<QueryCommandInput, QueryCommandOutput, __QueryCommandInput, __QueryCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
22
22
|
readonly input: QueryCommandInput;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
protected readonly inputKeyNodes: ({
|
|
24
|
+
key: string;
|
|
25
|
+
children: {
|
|
26
|
+
children: {
|
|
27
|
+
key: string;
|
|
28
|
+
}[];
|
|
29
|
+
};
|
|
30
|
+
} | {
|
|
31
|
+
key: string;
|
|
32
|
+
children?: undefined;
|
|
33
|
+
})[];
|
|
34
|
+
protected readonly outputKeyNodes: {
|
|
35
|
+
key: string;
|
|
36
|
+
}[];
|
|
37
|
+
protected readonly clientCommand: __QueryCommand;
|
|
38
|
+
readonly middlewareStack: MiddlewareStack<QueryCommandInput | __QueryCommandInput, QueryCommandOutput | __QueryCommandOutput>;
|
|
25
39
|
constructor(input: QueryCommandInput);
|
|
26
40
|
|
|
27
41
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryCommandInput, QueryCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Condition, ScanCommandInput as __ScanCommandInput, ScanCommandOutput as __ScanCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { Condition, ScanCommand as __ScanCommand, ScanCommandInput as __ScanCommandInput, ScanCommandOutput as __ScanCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type ScanCommandInput = Pick<__ScanCommandInput, Exclude<keyof __ScanCommandInput, "ScanFilter" | "ExclusiveStartKey" | "ExpressionAttributeValues">> & {
|
|
7
7
|
ScanFilter?: Record<string, Pick<Condition, Exclude<keyof Condition, "AttributeValueList">> & {
|
|
@@ -15,10 +15,24 @@ export declare type ScanCommandOutput = Pick<__ScanCommandOutput, Exclude<keyof
|
|
|
15
15
|
LastEvaluatedKey?: Record<string, NativeAttributeValue>;
|
|
16
16
|
};
|
|
17
17
|
|
|
18
|
-
export declare class ScanCommand extends
|
|
18
|
+
export declare class ScanCommand extends DynamoDBDocumentClientCommand<ScanCommandInput, ScanCommandOutput, __ScanCommandInput, __ScanCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
19
19
|
readonly input: ScanCommandInput;
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
protected readonly inputKeyNodes: ({
|
|
21
|
+
key: string;
|
|
22
|
+
children: {
|
|
23
|
+
children: {
|
|
24
|
+
key: string;
|
|
25
|
+
}[];
|
|
26
|
+
};
|
|
27
|
+
} | {
|
|
28
|
+
key: string;
|
|
29
|
+
children?: undefined;
|
|
30
|
+
})[];
|
|
31
|
+
protected readonly outputKeyNodes: {
|
|
32
|
+
key: string;
|
|
33
|
+
}[];
|
|
34
|
+
protected readonly clientCommand: __ScanCommand;
|
|
35
|
+
readonly middlewareStack: MiddlewareStack<ScanCommandInput | __ScanCommandInput, ScanCommandOutput | __ScanCommandOutput>;
|
|
22
36
|
constructor(input: ScanCommandInput);
|
|
23
37
|
|
|
24
38
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ScanCommandInput, ScanCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Get, ItemResponse, TransactGetItem, TransactGetItemsCommandInput as __TransactGetItemsCommandInput, TransactGetItemsCommandOutput as __TransactGetItemsCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { Get, ItemResponse, TransactGetItem, TransactGetItemsCommand as __TransactGetItemsCommand, TransactGetItemsCommandInput as __TransactGetItemsCommandInput, TransactGetItemsCommandOutput as __TransactGetItemsCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type TransactGetCommandInput = Pick<__TransactGetItemsCommandInput, Exclude<keyof __TransactGetItemsCommandInput, "TransactItems">> & {
|
|
7
7
|
TransactItems: (Pick<TransactGetItem, Exclude<keyof TransactGetItem, "Get">> & {
|
|
@@ -16,10 +16,25 @@ export declare type TransactGetCommandOutput = Pick<__TransactGetItemsCommandOut
|
|
|
16
16
|
})[];
|
|
17
17
|
};
|
|
18
18
|
|
|
19
|
-
export declare class TransactGetCommand extends
|
|
19
|
+
export declare class TransactGetCommand extends DynamoDBDocumentClientCommand<TransactGetCommandInput, TransactGetCommandOutput, __TransactGetItemsCommandInput, __TransactGetItemsCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
20
20
|
readonly input: TransactGetCommandInput;
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
protected readonly inputKeyNodes: {
|
|
22
|
+
key: string;
|
|
23
|
+
children: {
|
|
24
|
+
key: string;
|
|
25
|
+
children: {
|
|
26
|
+
key: string;
|
|
27
|
+
}[];
|
|
28
|
+
}[];
|
|
29
|
+
}[];
|
|
30
|
+
protected readonly outputKeyNodes: {
|
|
31
|
+
key: string;
|
|
32
|
+
children: {
|
|
33
|
+
key: string;
|
|
34
|
+
}[];
|
|
35
|
+
}[];
|
|
36
|
+
protected readonly clientCommand: __TransactGetItemsCommand;
|
|
37
|
+
readonly middlewareStack: MiddlewareStack<TransactGetCommandInput | __TransactGetItemsCommandInput, TransactGetCommandOutput | __TransactGetItemsCommandOutput>;
|
|
23
38
|
constructor(input: TransactGetCommandInput);
|
|
24
39
|
|
|
25
40
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TransactGetCommandInput, TransactGetCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ConditionCheck, Delete, ItemCollectionMetrics, Put, TransactWriteItem, TransactWriteItemsCommandInput as __TransactWriteItemsCommandInput, TransactWriteItemsCommandOutput as __TransactWriteItemsCommandOutput, Update } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { ConditionCheck, Delete, ItemCollectionMetrics, Put, TransactWriteItem, TransactWriteItemsCommand as __TransactWriteItemsCommand, TransactWriteItemsCommandInput as __TransactWriteItemsCommandInput, TransactWriteItemsCommandOutput as __TransactWriteItemsCommandOutput, Update } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type TransactWriteCommandInput = Pick<__TransactWriteItemsCommandInput, Exclude<keyof __TransactWriteItemsCommandInput, "TransactItems">> & {
|
|
7
7
|
TransactItems: (Pick<TransactWriteItem, Exclude<keyof TransactWriteItem, "ConditionCheck" | "Put" | "Delete" | "Update">> & {
|
|
@@ -29,10 +29,27 @@ export declare type TransactWriteCommandOutput = Pick<__TransactWriteItemsComman
|
|
|
29
29
|
})[]>;
|
|
30
30
|
};
|
|
31
31
|
|
|
32
|
-
export declare class TransactWriteCommand extends
|
|
32
|
+
export declare class TransactWriteCommand extends DynamoDBDocumentClientCommand<TransactWriteCommandInput, TransactWriteCommandOutput, __TransactWriteItemsCommandInput, __TransactWriteItemsCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
33
33
|
readonly input: TransactWriteCommandInput;
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
protected readonly inputKeyNodes: {
|
|
35
|
+
key: string;
|
|
36
|
+
children: {
|
|
37
|
+
key: string;
|
|
38
|
+
children: {
|
|
39
|
+
key: string;
|
|
40
|
+
}[];
|
|
41
|
+
}[];
|
|
42
|
+
}[];
|
|
43
|
+
protected readonly outputKeyNodes: {
|
|
44
|
+
key: string;
|
|
45
|
+
children: {
|
|
46
|
+
children: {
|
|
47
|
+
key: string;
|
|
48
|
+
}[];
|
|
49
|
+
};
|
|
50
|
+
}[];
|
|
51
|
+
protected readonly clientCommand: __TransactWriteItemsCommand;
|
|
52
|
+
readonly middlewareStack: MiddlewareStack<TransactWriteCommandInput | __TransactWriteItemsCommandInput, TransactWriteCommandOutput | __TransactWriteItemsCommandOutput>;
|
|
36
53
|
constructor(input: TransactWriteCommandInput);
|
|
37
54
|
|
|
38
55
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TransactWriteCommandInput, TransactWriteCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AttributeValueUpdate, ExpectedAttributeValue, ItemCollectionMetrics, UpdateItemCommandInput as __UpdateItemCommandInput, UpdateItemCommandOutput as __UpdateItemCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { AttributeValueUpdate, ExpectedAttributeValue, ItemCollectionMetrics, UpdateItemCommand as __UpdateItemCommand, UpdateItemCommandInput as __UpdateItemCommandInput, UpdateItemCommandOutput as __UpdateItemCommandOutput } from "@aws-sdk/client-dynamodb";
|
|
3
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@aws-sdk/types";
|
|
4
3
|
import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
|
|
4
|
+
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
|
|
5
5
|
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
|
|
6
6
|
export declare type UpdateCommandInput = Pick<__UpdateItemCommandInput, Exclude<keyof __UpdateItemCommandInput, "Key" | "AttributeUpdates" | "Expected" | "ExpressionAttributeValues">> & {
|
|
7
7
|
Key: Record<string, NativeAttributeValue> | undefined;
|
|
@@ -21,10 +21,30 @@ export declare type UpdateCommandOutput = Pick<__UpdateItemCommandOutput, Exclud
|
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
23
|
|
|
24
|
-
export declare class UpdateCommand extends
|
|
24
|
+
export declare class UpdateCommand extends DynamoDBDocumentClientCommand<UpdateCommandInput, UpdateCommandOutput, __UpdateItemCommandInput, __UpdateItemCommandOutput, DynamoDBDocumentClientResolvedConfig> {
|
|
25
25
|
readonly input: UpdateCommandInput;
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
protected readonly inputKeyNodes: ({
|
|
27
|
+
key: string;
|
|
28
|
+
children?: undefined;
|
|
29
|
+
} | {
|
|
30
|
+
key: string;
|
|
31
|
+
children: {
|
|
32
|
+
children: {
|
|
33
|
+
key: string;
|
|
34
|
+
}[];
|
|
35
|
+
};
|
|
36
|
+
})[];
|
|
37
|
+
protected readonly outputKeyNodes: ({
|
|
38
|
+
key: string;
|
|
39
|
+
children?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
key: string;
|
|
42
|
+
children: {
|
|
43
|
+
key: string;
|
|
44
|
+
}[];
|
|
45
|
+
})[];
|
|
46
|
+
protected readonly clientCommand: __UpdateItemCommand;
|
|
47
|
+
readonly middlewareStack: MiddlewareStack<UpdateCommandInput | __UpdateItemCommandInput, UpdateCommandOutput | __UpdateItemCommandOutput>;
|
|
28
48
|
constructor(input: UpdateCommandInput);
|
|
29
49
|
|
|
30
50
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCommandInput, UpdateCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/lib-dynamodb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.142.0",
|
|
4
4
|
"description": "The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values.",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aws-sdk/util-dynamodb": "3.
|
|
26
|
+
"@aws-sdk/util-dynamodb": "3.142.0",
|
|
27
27
|
"tslib": "^2.3.1"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"@aws-sdk/types": "^3.0.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@aws-sdk/client-dynamodb": "3.
|
|
36
|
-
"@aws-sdk/smithy-client": "3.
|
|
35
|
+
"@aws-sdk/client-dynamodb": "3.142.0",
|
|
36
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
37
37
|
"@aws-sdk/types": "3.127.0",
|
|
38
38
|
"@tsconfig/recommended": "1.0.1",
|
|
39
39
|
"@types/node": "^14.11.2",
|