@aws-sdk/client-kinesis 3.414.0 → 3.421.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/README.md +7 -7
- package/dist-cjs/commands/AddTagsToStreamCommand.js +5 -0
- package/dist-cjs/commands/CreateStreamCommand.js +5 -0
- package/dist-cjs/commands/DecreaseStreamRetentionPeriodCommand.js +5 -0
- package/dist-cjs/commands/DeleteStreamCommand.js +5 -0
- package/dist-cjs/commands/DeregisterStreamConsumerCommand.js +5 -0
- package/dist-cjs/commands/DescribeLimitsCommand.js +5 -0
- package/dist-cjs/commands/DescribeStreamCommand.js +5 -0
- package/dist-cjs/commands/DescribeStreamConsumerCommand.js +5 -0
- package/dist-cjs/commands/DescribeStreamSummaryCommand.js +5 -0
- package/dist-cjs/commands/DisableEnhancedMonitoringCommand.js +5 -0
- package/dist-cjs/commands/EnableEnhancedMonitoringCommand.js +5 -0
- package/dist-cjs/commands/GetRecordsCommand.js +5 -0
- package/dist-cjs/commands/GetShardIteratorCommand.js +5 -0
- package/dist-cjs/commands/IncreaseStreamRetentionPeriodCommand.js +5 -0
- package/dist-cjs/commands/ListShardsCommand.js +5 -0
- package/dist-cjs/commands/ListStreamConsumersCommand.js +5 -0
- package/dist-cjs/commands/ListStreamsCommand.js +5 -0
- package/dist-cjs/commands/ListTagsForStreamCommand.js +5 -0
- package/dist-cjs/commands/MergeShardsCommand.js +5 -0
- package/dist-cjs/commands/PutRecordCommand.js +5 -0
- package/dist-cjs/commands/PutRecordsCommand.js +5 -0
- package/dist-cjs/commands/RegisterStreamConsumerCommand.js +5 -0
- package/dist-cjs/commands/RemoveTagsFromStreamCommand.js +5 -0
- package/dist-cjs/commands/SplitShardCommand.js +5 -0
- package/dist-cjs/commands/StartStreamEncryptionCommand.js +5 -0
- package/dist-cjs/commands/StopStreamEncryptionCommand.js +5 -0
- package/dist-cjs/commands/SubscribeToShardCommand.js +5 -0
- package/dist-cjs/commands/UpdateShardCountCommand.js +5 -0
- package/dist-cjs/commands/UpdateStreamModeCommand.js +5 -0
- package/dist-es/commands/AddTagsToStreamCommand.js +5 -0
- package/dist-es/commands/CreateStreamCommand.js +5 -0
- package/dist-es/commands/DecreaseStreamRetentionPeriodCommand.js +5 -0
- package/dist-es/commands/DeleteStreamCommand.js +5 -0
- package/dist-es/commands/DeregisterStreamConsumerCommand.js +5 -0
- package/dist-es/commands/DescribeLimitsCommand.js +5 -0
- package/dist-es/commands/DescribeStreamCommand.js +5 -0
- package/dist-es/commands/DescribeStreamConsumerCommand.js +5 -0
- package/dist-es/commands/DescribeStreamSummaryCommand.js +5 -0
- package/dist-es/commands/DisableEnhancedMonitoringCommand.js +5 -0
- package/dist-es/commands/EnableEnhancedMonitoringCommand.js +5 -0
- package/dist-es/commands/GetRecordsCommand.js +5 -0
- package/dist-es/commands/GetShardIteratorCommand.js +5 -0
- package/dist-es/commands/IncreaseStreamRetentionPeriodCommand.js +5 -0
- package/dist-es/commands/ListShardsCommand.js +5 -0
- package/dist-es/commands/ListStreamConsumersCommand.js +5 -0
- package/dist-es/commands/ListStreamsCommand.js +5 -0
- package/dist-es/commands/ListTagsForStreamCommand.js +5 -0
- package/dist-es/commands/MergeShardsCommand.js +5 -0
- package/dist-es/commands/PutRecordCommand.js +5 -0
- package/dist-es/commands/PutRecordsCommand.js +5 -0
- package/dist-es/commands/RegisterStreamConsumerCommand.js +5 -0
- package/dist-es/commands/RemoveTagsFromStreamCommand.js +5 -0
- package/dist-es/commands/SplitShardCommand.js +5 -0
- package/dist-es/commands/StartStreamEncryptionCommand.js +5 -0
- package/dist-es/commands/StopStreamEncryptionCommand.js +5 -0
- package/dist-es/commands/SubscribeToShardCommand.js +5 -0
- package/dist-es/commands/UpdateShardCountCommand.js +5 -0
- package/dist-es/commands/UpdateStreamModeCommand.js +5 -0
- package/package.json +35 -35
package/README.md
CHANGED
|
@@ -26,16 +26,16 @@ using your favorite package manager:
|
|
|
26
26
|
|
|
27
27
|
The AWS SDK is modulized by clients and commands.
|
|
28
28
|
To send a request, you only need to import the `KinesisClient` and
|
|
29
|
-
the commands you need, for example `
|
|
29
|
+
the commands you need, for example `ListShardsCommand`:
|
|
30
30
|
|
|
31
31
|
```js
|
|
32
32
|
// ES5 example
|
|
33
|
-
const { KinesisClient,
|
|
33
|
+
const { KinesisClient, ListShardsCommand } = require("@aws-sdk/client-kinesis");
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
```ts
|
|
37
37
|
// ES6+ example
|
|
38
|
-
import { KinesisClient,
|
|
38
|
+
import { KinesisClient, ListShardsCommand } from "@aws-sdk/client-kinesis";
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### Usage
|
|
@@ -54,7 +54,7 @@ const client = new KinesisClient({ region: "REGION" });
|
|
|
54
54
|
const params = {
|
|
55
55
|
/** input parameters */
|
|
56
56
|
};
|
|
57
|
-
const command = new
|
|
57
|
+
const command = new ListShardsCommand(params);
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
#### Async/await
|
|
@@ -133,7 +133,7 @@ const client = new AWS.Kinesis({ region: "REGION" });
|
|
|
133
133
|
|
|
134
134
|
// async/await.
|
|
135
135
|
try {
|
|
136
|
-
const data = await client.
|
|
136
|
+
const data = await client.listShards(params);
|
|
137
137
|
// process data.
|
|
138
138
|
} catch (error) {
|
|
139
139
|
// error handling.
|
|
@@ -141,7 +141,7 @@ try {
|
|
|
141
141
|
|
|
142
142
|
// Promises.
|
|
143
143
|
client
|
|
144
|
-
.
|
|
144
|
+
.listShards(params)
|
|
145
145
|
.then((data) => {
|
|
146
146
|
// process data.
|
|
147
147
|
})
|
|
@@ -150,7 +150,7 @@ client
|
|
|
150
150
|
});
|
|
151
151
|
|
|
152
152
|
// callbacks.
|
|
153
|
-
client.
|
|
153
|
+
client.listShards(params, (err, data) => {
|
|
154
154
|
// process err and data.
|
|
155
155
|
});
|
|
156
156
|
```
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class AddTagsToStreamCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class AddTagsToStreamCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "AddTagsToStream",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class CreateStreamCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -32,6 +33,10 @@ class CreateStreamCommand extends smithy_client_1.Command {
|
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "Kinesis_20131202",
|
|
38
|
+
operation: "CreateStream",
|
|
39
|
+
},
|
|
35
40
|
};
|
|
36
41
|
const { requestHandler } = configuration;
|
|
37
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class DecreaseStreamRetentionPeriodCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DecreaseStreamRetentionPeriodCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "DecreaseStreamRetentionPeriod",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class DeleteStreamCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DeleteStreamCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "DeleteStream",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class DeregisterStreamConsumerCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -35,6 +36,10 @@ class DeregisterStreamConsumerCommand extends smithy_client_1.Command {
|
|
|
35
36
|
commandName,
|
|
36
37
|
inputFilterSensitiveLog: (_) => _,
|
|
37
38
|
outputFilterSensitiveLog: (_) => _,
|
|
39
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
40
|
+
service: "Kinesis_20131202",
|
|
41
|
+
operation: "DeregisterStreamConsumer",
|
|
42
|
+
},
|
|
38
43
|
};
|
|
39
44
|
const { requestHandler } = configuration;
|
|
40
45
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class DescribeLimitsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -32,6 +33,10 @@ class DescribeLimitsCommand extends smithy_client_1.Command {
|
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "Kinesis_20131202",
|
|
38
|
+
operation: "DescribeLimits",
|
|
39
|
+
},
|
|
35
40
|
};
|
|
36
41
|
const { requestHandler } = configuration;
|
|
37
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class DescribeStreamCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DescribeStreamCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "DescribeStream",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class DescribeStreamConsumerCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -35,6 +36,10 @@ class DescribeStreamConsumerCommand extends smithy_client_1.Command {
|
|
|
35
36
|
commandName,
|
|
36
37
|
inputFilterSensitiveLog: (_) => _,
|
|
37
38
|
outputFilterSensitiveLog: (_) => _,
|
|
39
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
40
|
+
service: "Kinesis_20131202",
|
|
41
|
+
operation: "DescribeStreamConsumer",
|
|
42
|
+
},
|
|
38
43
|
};
|
|
39
44
|
const { requestHandler } = configuration;
|
|
40
45
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class DescribeStreamSummaryCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DescribeStreamSummaryCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "DescribeStreamSummary",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class DisableEnhancedMonitoringCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DisableEnhancedMonitoringCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "DisableEnhancedMonitoring",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class EnableEnhancedMonitoringCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class EnableEnhancedMonitoringCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "EnableEnhancedMonitoring",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class GetRecordsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class GetRecordsCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "GetRecords",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class GetShardIteratorCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class GetShardIteratorCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "GetShardIterator",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class IncreaseStreamRetentionPeriodCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class IncreaseStreamRetentionPeriodCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "IncreaseStreamRetentionPeriod",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class ListShardsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class ListShardsCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "ListShards",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class ListStreamConsumersCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class ListStreamConsumersCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "ListStreamConsumers",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class ListStreamsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -32,6 +33,10 @@ class ListStreamsCommand extends smithy_client_1.Command {
|
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "Kinesis_20131202",
|
|
38
|
+
operation: "ListStreams",
|
|
39
|
+
},
|
|
35
40
|
};
|
|
36
41
|
const { requestHandler } = configuration;
|
|
37
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class ListTagsForStreamCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class ListTagsForStreamCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "ListTagsForStream",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class MergeShardsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class MergeShardsCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "MergeShards",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class PutRecordCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class PutRecordCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "PutRecord",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class PutRecordsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class PutRecordsCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "PutRecords",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class RegisterStreamConsumerCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class RegisterStreamConsumerCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "RegisterStreamConsumer",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class RemoveTagsFromStreamCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class RemoveTagsFromStreamCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "RemoveTagsFromStream",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class SplitShardCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class SplitShardCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "SplitShard",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class StartStreamEncryptionCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class StartStreamEncryptionCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "StartStreamEncryption",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class StopStreamEncryptionCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class StopStreamEncryptionCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "StopStreamEncryption",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const models_0_1 = require("../models/models_0");
|
|
9
10
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
11
|
class SubscribeToShardCommand extends smithy_client_1.Command {
|
|
@@ -35,6 +36,10 @@ class SubscribeToShardCommand extends smithy_client_1.Command {
|
|
|
35
36
|
commandName,
|
|
36
37
|
inputFilterSensitiveLog: (_) => _,
|
|
37
38
|
outputFilterSensitiveLog: models_0_1.SubscribeToShardOutputFilterSensitiveLog,
|
|
39
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
40
|
+
service: "Kinesis_20131202",
|
|
41
|
+
operation: "SubscribeToShard",
|
|
42
|
+
},
|
|
38
43
|
};
|
|
39
44
|
const { requestHandler } = configuration;
|
|
40
45
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class UpdateShardCountCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class UpdateShardCountCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "UpdateShardCount",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
10
|
class UpdateStreamModeCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class UpdateStreamModeCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Kinesis_20131202",
|
|
40
|
+
operation: "UpdateStreamMode",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|