@aws-sdk/client-dynamodb-streams 3.303.0 → 3.309.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/commands/DescribeStreamCommand.js +2 -2
- package/dist-cjs/commands/GetRecordsCommand.js +2 -2
- package/dist-cjs/commands/GetShardIteratorCommand.js +2 -2
- package/dist-cjs/commands/ListStreamsCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_0.js +110 -114
- package/dist-es/commands/DescribeStreamCommand.js +3 -3
- package/dist-es/commands/GetRecordsCommand.js +3 -3
- package/dist-es/commands/GetShardIteratorCommand.js +3 -3
- package/dist-es/commands/ListStreamsCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_0.js +101 -105
- package/dist-types/protocols/Aws_json1_0.d.ts +32 -8
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +8 -8
- package/package.json +29 -29
|
@@ -36,10 +36,10 @@ class DescribeStreamCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DescribeStreamCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DescribeStreamCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DescribeStreamCommand = DescribeStreamCommand;
|
|
@@ -36,10 +36,10 @@ class GetRecordsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_GetRecordsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_GetRecordsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.GetRecordsCommand = GetRecordsCommand;
|
|
@@ -36,10 +36,10 @@ class GetShardIteratorCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_GetShardIteratorCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_GetShardIteratorCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.GetShardIteratorCommand = GetShardIteratorCommand;
|
|
@@ -36,10 +36,10 @@ class ListStreamsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListStreamsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListStreamsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListStreamsCommand = ListStreamsCommand;
|