@aws-sdk/client-kinesis 3.306.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/AddTagsToStreamCommand.js +2 -2
- package/dist-cjs/commands/CreateStreamCommand.js +2 -2
- package/dist-cjs/commands/DecreaseStreamRetentionPeriodCommand.js +2 -2
- package/dist-cjs/commands/DeleteStreamCommand.js +2 -2
- package/dist-cjs/commands/DeregisterStreamConsumerCommand.js +2 -2
- package/dist-cjs/commands/DescribeLimitsCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamConsumerCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamSummaryCommand.js +2 -2
- package/dist-cjs/commands/DisableEnhancedMonitoringCommand.js +2 -2
- package/dist-cjs/commands/EnableEnhancedMonitoringCommand.js +2 -2
- package/dist-cjs/commands/GetRecordsCommand.js +2 -2
- package/dist-cjs/commands/GetShardIteratorCommand.js +2 -2
- package/dist-cjs/commands/IncreaseStreamRetentionPeriodCommand.js +2 -2
- package/dist-cjs/commands/ListShardsCommand.js +2 -2
- package/dist-cjs/commands/ListStreamConsumersCommand.js +2 -2
- package/dist-cjs/commands/ListStreamsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForStreamCommand.js +2 -2
- package/dist-cjs/commands/MergeShardsCommand.js +2 -2
- package/dist-cjs/commands/PutRecordCommand.js +2 -2
- package/dist-cjs/commands/PutRecordsCommand.js +2 -2
- package/dist-cjs/commands/RegisterStreamConsumerCommand.js +2 -2
- package/dist-cjs/commands/RemoveTagsFromStreamCommand.js +2 -2
- package/dist-cjs/commands/SplitShardCommand.js +2 -2
- package/dist-cjs/commands/StartStreamEncryptionCommand.js +2 -2
- package/dist-cjs/commands/StopStreamEncryptionCommand.js +2 -2
- package/dist-cjs/commands/SubscribeToShardCommand.js +2 -2
- package/dist-cjs/commands/UpdateShardCountCommand.js +2 -2
- package/dist-cjs/commands/UpdateStreamModeCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_1.js +577 -603
- package/dist-es/commands/AddTagsToStreamCommand.js +3 -3
- package/dist-es/commands/CreateStreamCommand.js +3 -3
- package/dist-es/commands/DecreaseStreamRetentionPeriodCommand.js +3 -3
- package/dist-es/commands/DeleteStreamCommand.js +3 -3
- package/dist-es/commands/DeregisterStreamConsumerCommand.js +3 -3
- package/dist-es/commands/DescribeLimitsCommand.js +3 -3
- package/dist-es/commands/DescribeStreamCommand.js +3 -3
- package/dist-es/commands/DescribeStreamConsumerCommand.js +3 -3
- package/dist-es/commands/DescribeStreamSummaryCommand.js +3 -3
- package/dist-es/commands/DisableEnhancedMonitoringCommand.js +3 -3
- package/dist-es/commands/EnableEnhancedMonitoringCommand.js +3 -3
- package/dist-es/commands/GetRecordsCommand.js +3 -3
- package/dist-es/commands/GetShardIteratorCommand.js +3 -3
- package/dist-es/commands/IncreaseStreamRetentionPeriodCommand.js +3 -3
- package/dist-es/commands/ListShardsCommand.js +3 -3
- package/dist-es/commands/ListStreamConsumersCommand.js +3 -3
- package/dist-es/commands/ListStreamsCommand.js +3 -3
- package/dist-es/commands/ListTagsForStreamCommand.js +3 -3
- package/dist-es/commands/MergeShardsCommand.js +3 -3
- package/dist-es/commands/PutRecordCommand.js +3 -3
- package/dist-es/commands/PutRecordsCommand.js +3 -3
- package/dist-es/commands/RegisterStreamConsumerCommand.js +3 -3
- package/dist-es/commands/RemoveTagsFromStreamCommand.js +3 -3
- package/dist-es/commands/SplitShardCommand.js +3 -3
- package/dist-es/commands/StartStreamEncryptionCommand.js +3 -3
- package/dist-es/commands/StopStreamEncryptionCommand.js +3 -3
- package/dist-es/commands/SubscribeToShardCommand.js +3 -3
- package/dist-es/commands/UpdateShardCountCommand.js +3 -3
- package/dist-es/commands/UpdateStreamModeCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_1.js +517 -543
- package/dist-types/protocols/Aws_json1_1.d.ts +232 -58
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +58 -58
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_AddTagsToStreamCommand, se_AddTagsToStreamCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class AddTagsToStreamCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class AddTagsToStreamCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_AddTagsToStreamCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_AddTagsToStreamCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_CreateStreamCommand, se_CreateStreamCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class CreateStreamCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class CreateStreamCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_CreateStreamCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_CreateStreamCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DecreaseStreamRetentionPeriodCommand, se_DecreaseStreamRetentionPeriodCommand, } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class DecreaseStreamRetentionPeriodCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class DecreaseStreamRetentionPeriodCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DecreaseStreamRetentionPeriodCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DecreaseStreamRetentionPeriodCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DeleteStreamCommand, se_DeleteStreamCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class DeleteStreamCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class DeleteStreamCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DeleteStreamCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DeleteStreamCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DeregisterStreamConsumerCommand, se_DeregisterStreamConsumerCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class DeregisterStreamConsumerCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -36,9 +36,9 @@ export class DeregisterStreamConsumerCommand extends $Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return
|
|
39
|
+
return se_DeregisterStreamConsumerCommand(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return
|
|
42
|
+
return de_DeregisterStreamConsumerCommand(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DescribeLimitsCommand, se_DescribeLimitsCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class DescribeLimitsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class DescribeLimitsCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_DescribeLimitsCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_DescribeLimitsCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DescribeStreamCommand, se_DescribeStreamCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class DescribeStreamCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class DescribeStreamCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DescribeStreamCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DescribeStreamCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DescribeStreamConsumerCommand, se_DescribeStreamConsumerCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class DescribeStreamConsumerCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -36,9 +36,9 @@ export class DescribeStreamConsumerCommand extends $Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return
|
|
39
|
+
return se_DescribeStreamConsumerCommand(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return
|
|
42
|
+
return de_DescribeStreamConsumerCommand(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DescribeStreamSummaryCommand, se_DescribeStreamSummaryCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class DescribeStreamSummaryCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class DescribeStreamSummaryCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DescribeStreamSummaryCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DescribeStreamSummaryCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DisableEnhancedMonitoringCommand, se_DisableEnhancedMonitoringCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class DisableEnhancedMonitoringCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class DisableEnhancedMonitoringCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DisableEnhancedMonitoringCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DisableEnhancedMonitoringCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_EnableEnhancedMonitoringCommand, se_EnableEnhancedMonitoringCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class EnableEnhancedMonitoringCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class EnableEnhancedMonitoringCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_EnableEnhancedMonitoringCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_EnableEnhancedMonitoringCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_GetRecordsCommand, se_GetRecordsCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class GetRecordsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class GetRecordsCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_GetRecordsCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_GetRecordsCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_GetShardIteratorCommand, se_GetShardIteratorCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class GetShardIteratorCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class GetShardIteratorCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_GetShardIteratorCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_GetShardIteratorCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_IncreaseStreamRetentionPeriodCommand, se_IncreaseStreamRetentionPeriodCommand, } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class IncreaseStreamRetentionPeriodCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class IncreaseStreamRetentionPeriodCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_IncreaseStreamRetentionPeriodCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_IncreaseStreamRetentionPeriodCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_ListShardsCommand, se_ListShardsCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class ListShardsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class ListShardsCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_ListShardsCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_ListShardsCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_ListStreamConsumersCommand, se_ListStreamConsumersCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class ListStreamConsumersCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class ListStreamConsumersCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_ListStreamConsumersCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_ListStreamConsumersCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_ListStreamsCommand, se_ListStreamsCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class ListStreamsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class ListStreamsCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_ListStreamsCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_ListStreamsCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_ListTagsForStreamCommand, se_ListTagsForStreamCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class ListTagsForStreamCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class ListTagsForStreamCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_ListTagsForStreamCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_ListTagsForStreamCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_MergeShardsCommand, se_MergeShardsCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class MergeShardsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class MergeShardsCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_MergeShardsCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_MergeShardsCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_PutRecordCommand, se_PutRecordCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class PutRecordCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class PutRecordCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_PutRecordCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_PutRecordCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_PutRecordsCommand, se_PutRecordsCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class PutRecordsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class PutRecordsCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_PutRecordsCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_PutRecordsCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_RegisterStreamConsumerCommand, se_RegisterStreamConsumerCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class RegisterStreamConsumerCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class RegisterStreamConsumerCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_RegisterStreamConsumerCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_RegisterStreamConsumerCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_RemoveTagsFromStreamCommand, se_RemoveTagsFromStreamCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class RemoveTagsFromStreamCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class RemoveTagsFromStreamCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_RemoveTagsFromStreamCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_RemoveTagsFromStreamCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_SplitShardCommand, se_SplitShardCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class SplitShardCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class SplitShardCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_SplitShardCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_SplitShardCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_StartStreamEncryptionCommand, se_StartStreamEncryptionCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class StartStreamEncryptionCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class StartStreamEncryptionCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_StartStreamEncryptionCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_StartStreamEncryptionCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_StopStreamEncryptionCommand, se_StopStreamEncryptionCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class StopStreamEncryptionCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class StopStreamEncryptionCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_StopStreamEncryptionCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_StopStreamEncryptionCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { SubscribeToShardOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
-
import {
|
|
5
|
+
import { de_SubscribeToShardCommand, se_SubscribeToShardCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
export class SubscribeToShardCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -36,9 +36,9 @@ export class SubscribeToShardCommand extends $Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return
|
|
39
|
+
return se_SubscribeToShardCommand(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return
|
|
42
|
+
return de_SubscribeToShardCommand(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateShardCountCommand, se_UpdateShardCountCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class UpdateShardCountCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class UpdateShardCountCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_UpdateShardCountCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_UpdateShardCountCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateStreamModeCommand, se_UpdateStreamModeCommand } from "../protocols/Aws_json1_1";
|
|
5
5
|
export class UpdateStreamModeCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -35,9 +35,9 @@ export class UpdateStreamModeCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_UpdateStreamModeCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_UpdateStreamModeCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|