@aws-sdk/client-kinesis 3.489.0 → 3.495.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/Kinesis.js +1 -75
- package/dist-cjs/KinesisClient.js +1 -45
- package/dist-cjs/commands/AddTagsToStreamCommand.js +1 -30
- package/dist-cjs/commands/CreateStreamCommand.js +1 -28
- package/dist-cjs/commands/DecreaseStreamRetentionPeriodCommand.js +1 -30
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -30
- package/dist-cjs/commands/DeleteStreamCommand.js +1 -30
- package/dist-cjs/commands/DeregisterStreamConsumerCommand.js +1 -31
- package/dist-cjs/commands/DescribeLimitsCommand.js +1 -28
- package/dist-cjs/commands/DescribeStreamCommand.js +1 -30
- package/dist-cjs/commands/DescribeStreamConsumerCommand.js +1 -31
- package/dist-cjs/commands/DescribeStreamSummaryCommand.js +1 -30
- package/dist-cjs/commands/DisableEnhancedMonitoringCommand.js +1 -30
- package/dist-cjs/commands/EnableEnhancedMonitoringCommand.js +1 -30
- package/dist-cjs/commands/GetRecordsCommand.js +1 -30
- package/dist-cjs/commands/GetResourcePolicyCommand.js +1 -30
- package/dist-cjs/commands/GetShardIteratorCommand.js +1 -30
- package/dist-cjs/commands/IncreaseStreamRetentionPeriodCommand.js +1 -30
- package/dist-cjs/commands/ListShardsCommand.js +1 -30
- package/dist-cjs/commands/ListStreamConsumersCommand.js +1 -30
- package/dist-cjs/commands/ListStreamsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForStreamCommand.js +1 -30
- package/dist-cjs/commands/MergeShardsCommand.js +1 -30
- package/dist-cjs/commands/PutRecordCommand.js +1 -30
- package/dist-cjs/commands/PutRecordsCommand.js +1 -30
- package/dist-cjs/commands/PutResourcePolicyCommand.js +1 -30
- package/dist-cjs/commands/RegisterStreamConsumerCommand.js +1 -30
- package/dist-cjs/commands/RemoveTagsFromStreamCommand.js +1 -30
- package/dist-cjs/commands/SplitShardCommand.js +1 -30
- package/dist-cjs/commands/StartStreamEncryptionCommand.js +1 -30
- package/dist-cjs/commands/StopStreamEncryptionCommand.js +1 -30
- package/dist-cjs/commands/SubscribeToShardCommand.js +1 -35
- package/dist-cjs/commands/UpdateShardCountCommand.js +1 -30
- package/dist-cjs/commands/UpdateStreamModeCommand.js +1 -30
- package/dist-cjs/commands/index.js +1 -35
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3504 -12
- package/dist-cjs/models/KinesisServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -315
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListStreamConsumersPaginator.js +1 -7
- package/dist-cjs/pagination/ListStreamsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -6
- package/dist-cjs/protocols/Aws_json1_1.js +1 -2209
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/dist-cjs/waiters/index.js +1 -5
- package/dist-cjs/waiters/waitForStreamExists.js +1 -36
- package/dist-cjs/waiters/waitForStreamNotExists.js +1 -30
- package/package.json +44 -44
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListShardsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class ListShardsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "ListShards", {})
|
|
24
|
-
.n("KinesisClient", "ListShardsCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_ListShardsCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_ListShardsCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.ListShardsCommand = ListShardsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListStreamConsumersCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class ListStreamConsumersCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "ListStreamConsumers", {})
|
|
24
|
-
.n("KinesisClient", "ListStreamConsumersCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_ListStreamConsumersCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_ListStreamConsumersCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.ListStreamConsumersCommand = ListStreamConsumersCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListStreamsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class ListStreamsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Kinesis_20131202", "ListStreams", {})
|
|
22
|
-
.n("KinesisClient", "ListStreamsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_ListStreamsCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_ListStreamsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.ListStreamsCommand = ListStreamsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListTagsForStreamCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class ListTagsForStreamCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "ListTagsForStream", {})
|
|
24
|
-
.n("KinesisClient", "ListTagsForStreamCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_ListTagsForStreamCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_ListTagsForStreamCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.ListTagsForStreamCommand = ListTagsForStreamCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MergeShardsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class MergeShardsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "MergeShards", {})
|
|
24
|
-
.n("KinesisClient", "MergeShardsCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_MergeShardsCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_MergeShardsCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.MergeShardsCommand = MergeShardsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PutRecordCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class PutRecordCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `data` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "PutRecord", {})
|
|
24
|
-
.n("KinesisClient", "PutRecordCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_PutRecordCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_PutRecordCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.PutRecordCommand = PutRecordCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PutRecordsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class PutRecordsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `data` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "PutRecords", {})
|
|
24
|
-
.n("KinesisClient", "PutRecordsCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_PutRecordsCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_PutRecordsCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.PutRecordsCommand = PutRecordsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PutResourcePolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class PutResourcePolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
ResourceARN: { type: "contextParams", name: "ResourceARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "PutResourcePolicy", {})
|
|
24
|
-
.n("KinesisClient", "PutResourcePolicyCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_PutResourcePolicyCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_PutResourcePolicyCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RegisterStreamConsumerCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class RegisterStreamConsumerCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "RegisterStreamConsumer", {})
|
|
24
|
-
.n("KinesisClient", "RegisterStreamConsumerCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_RegisterStreamConsumerCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_RegisterStreamConsumerCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.RegisterStreamConsumerCommand = RegisterStreamConsumerCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RemoveTagsFromStreamCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class RemoveTagsFromStreamCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "RemoveTagsFromStream", {})
|
|
24
|
-
.n("KinesisClient", "RemoveTagsFromStreamCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_RemoveTagsFromStreamCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_RemoveTagsFromStreamCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.RemoveTagsFromStreamCommand = RemoveTagsFromStreamCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SplitShardCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class SplitShardCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "SplitShard", {})
|
|
24
|
-
.n("KinesisClient", "SplitShardCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_SplitShardCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_SplitShardCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.SplitShardCommand = SplitShardCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StartStreamEncryptionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class StartStreamEncryptionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "StartStreamEncryption", {})
|
|
24
|
-
.n("KinesisClient", "StartStreamEncryptionCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_StartStreamEncryptionCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_StartStreamEncryptionCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.StartStreamEncryptionCommand = StartStreamEncryptionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StopStreamEncryptionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class StopStreamEncryptionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "StopStreamEncryption", {})
|
|
24
|
-
.n("KinesisClient", "StopStreamEncryptionCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_StopStreamEncryptionCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_StopStreamEncryptionCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.StopStreamEncryptionCommand = StopStreamEncryptionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,35 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SubscribeToShardCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
11
|
-
class SubscribeToShardCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
OperationType: { type: "staticContextParams", value: `data` },
|
|
16
|
-
ConsumerARN: { type: "contextParams", name: "ConsumerARN" },
|
|
17
|
-
})
|
|
18
|
-
.m(function (Command, cs, config, o) {
|
|
19
|
-
return [
|
|
20
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
21
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
22
|
-
];
|
|
23
|
-
})
|
|
24
|
-
.s("Kinesis_20131202", "SubscribeToShard", {
|
|
25
|
-
eventStream: {
|
|
26
|
-
output: true,
|
|
27
|
-
},
|
|
28
|
-
})
|
|
29
|
-
.n("KinesisClient", "SubscribeToShardCommand")
|
|
30
|
-
.f(void 0, models_0_1.SubscribeToShardOutputFilterSensitiveLog)
|
|
31
|
-
.ser(Aws_json1_1_1.se_SubscribeToShardCommand)
|
|
32
|
-
.de(Aws_json1_1_1.de_SubscribeToShardCommand)
|
|
33
|
-
.build() {
|
|
34
|
-
}
|
|
35
|
-
exports.SubscribeToShardCommand = SubscribeToShardCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateShardCountCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdateShardCountCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "UpdateShardCount", {})
|
|
24
|
-
.n("KinesisClient", "UpdateShardCountCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_UpdateShardCountCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_UpdateShardCountCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.UpdateShardCountCommand = UpdateShardCountCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateStreamModeCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdateStreamModeCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
OperationType: { type: "staticContextParams", value: `control` },
|
|
15
|
-
StreamARN: { type: "contextParams", name: "StreamARN" },
|
|
16
|
-
})
|
|
17
|
-
.m(function (Command, cs, config, o) {
|
|
18
|
-
return [
|
|
19
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
20
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
21
|
-
];
|
|
22
|
-
})
|
|
23
|
-
.s("Kinesis_20131202", "UpdateStreamMode", {})
|
|
24
|
-
.n("KinesisClient", "UpdateStreamModeCommand")
|
|
25
|
-
.f(void 0, void 0)
|
|
26
|
-
.ser(Aws_json1_1_1.se_UpdateStreamModeCommand)
|
|
27
|
-
.de(Aws_json1_1_1.de_UpdateStreamModeCommand)
|
|
28
|
-
.build() {
|
|
29
|
-
}
|
|
30
|
-
exports.UpdateStreamModeCommand = UpdateStreamModeCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,35 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./AddTagsToStreamCommand"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./CreateStreamCommand"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./DecreaseStreamRetentionPeriodCommand"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./DeleteResourcePolicyCommand"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./DeleteStreamCommand"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./DeregisterStreamConsumerCommand"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./DescribeLimitsCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./DescribeStreamCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./DescribeStreamConsumerCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./DescribeStreamSummaryCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./DisableEnhancedMonitoringCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./EnableEnhancedMonitoringCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./GetRecordsCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./GetResourcePolicyCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./GetShardIteratorCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./IncreaseStreamRetentionPeriodCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./ListShardsCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./ListStreamConsumersCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./ListStreamsCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./ListTagsForStreamCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./MergeShardsCommand"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./PutRecordCommand"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./PutRecordsCommand"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./PutResourcePolicyCommand"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./RegisterStreamConsumerCommand"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./RemoveTagsFromStreamCommand"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./SplitShardCommand"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./StartStreamEncryptionCommand"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./StopStreamEncryptionCommand"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./SubscribeToShardCommand"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./UpdateShardCountCommand"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./UpdateStreamModeCommand"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
-
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
return {
|
|
6
|
-
...options,
|
|
7
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
-
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
9
|
-
defaultSigningName: "kinesis",
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
-
exports.commonParams = {
|
|
14
|
-
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
-
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
-
Region: { type: "builtInParams", name: "region" },
|
|
17
|
-
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("./index.js");
|