@aws-sdk/client-firehose 3.490.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.
Files changed (31) hide show
  1. package/dist-cjs/Firehose.js +1 -35
  2. package/dist-cjs/FirehoseClient.js +1 -43
  3. package/dist-cjs/commands/CreateDeliveryStreamCommand.js +1 -29
  4. package/dist-cjs/commands/DeleteDeliveryStreamCommand.js +1 -28
  5. package/dist-cjs/commands/DescribeDeliveryStreamCommand.js +1 -29
  6. package/dist-cjs/commands/ListDeliveryStreamsCommand.js +1 -28
  7. package/dist-cjs/commands/ListTagsForDeliveryStreamCommand.js +1 -28
  8. package/dist-cjs/commands/PutRecordBatchCommand.js +1 -28
  9. package/dist-cjs/commands/PutRecordCommand.js +1 -28
  10. package/dist-cjs/commands/StartDeliveryStreamEncryptionCommand.js +1 -28
  11. package/dist-cjs/commands/StopDeliveryStreamEncryptionCommand.js +1 -28
  12. package/dist-cjs/commands/TagDeliveryStreamCommand.js +1 -28
  13. package/dist-cjs/commands/UntagDeliveryStreamCommand.js +1 -28
  14. package/dist-cjs/commands/UpdateDestinationCommand.js +1 -29
  15. package/dist-cjs/commands/index.js +1 -15
  16. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  17. package/dist-cjs/extensionConfiguration.js +1 -2
  18. package/dist-cjs/index.js +1904 -10
  19. package/dist-cjs/models/FirehoseServiceException.js +1 -12
  20. package/dist-cjs/models/index.js +1 -4
  21. package/dist-cjs/models/models_0.js +1 -372
  22. package/dist-cjs/protocols/Aws_json1_1.js +1 -952
  23. package/dist-cjs/runtimeExtensions.js +1 -22
  24. package/dist-es/models/models_0.js +75 -0
  25. package/dist-es/protocols/Aws_json1_1.js +3 -0
  26. package/dist-types/commands/CreateDeliveryStreamCommand.d.ts +27 -0
  27. package/dist-types/commands/DescribeDeliveryStreamCommand.d.ts +25 -0
  28. package/dist-types/commands/UpdateDestinationCommand.d.ts +24 -0
  29. package/dist-types/models/models_0.d.ts +396 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +98 -0
  31. package/package.json +39 -39
@@ -1,35 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Firehose = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const CreateDeliveryStreamCommand_1 = require("./commands/CreateDeliveryStreamCommand");
6
- const DeleteDeliveryStreamCommand_1 = require("./commands/DeleteDeliveryStreamCommand");
7
- const DescribeDeliveryStreamCommand_1 = require("./commands/DescribeDeliveryStreamCommand");
8
- const ListDeliveryStreamsCommand_1 = require("./commands/ListDeliveryStreamsCommand");
9
- const ListTagsForDeliveryStreamCommand_1 = require("./commands/ListTagsForDeliveryStreamCommand");
10
- const PutRecordBatchCommand_1 = require("./commands/PutRecordBatchCommand");
11
- const PutRecordCommand_1 = require("./commands/PutRecordCommand");
12
- const StartDeliveryStreamEncryptionCommand_1 = require("./commands/StartDeliveryStreamEncryptionCommand");
13
- const StopDeliveryStreamEncryptionCommand_1 = require("./commands/StopDeliveryStreamEncryptionCommand");
14
- const TagDeliveryStreamCommand_1 = require("./commands/TagDeliveryStreamCommand");
15
- const UntagDeliveryStreamCommand_1 = require("./commands/UntagDeliveryStreamCommand");
16
- const UpdateDestinationCommand_1 = require("./commands/UpdateDestinationCommand");
17
- const FirehoseClient_1 = require("./FirehoseClient");
18
- const commands = {
19
- CreateDeliveryStreamCommand: CreateDeliveryStreamCommand_1.CreateDeliveryStreamCommand,
20
- DeleteDeliveryStreamCommand: DeleteDeliveryStreamCommand_1.DeleteDeliveryStreamCommand,
21
- DescribeDeliveryStreamCommand: DescribeDeliveryStreamCommand_1.DescribeDeliveryStreamCommand,
22
- ListDeliveryStreamsCommand: ListDeliveryStreamsCommand_1.ListDeliveryStreamsCommand,
23
- ListTagsForDeliveryStreamCommand: ListTagsForDeliveryStreamCommand_1.ListTagsForDeliveryStreamCommand,
24
- PutRecordCommand: PutRecordCommand_1.PutRecordCommand,
25
- PutRecordBatchCommand: PutRecordBatchCommand_1.PutRecordBatchCommand,
26
- StartDeliveryStreamEncryptionCommand: StartDeliveryStreamEncryptionCommand_1.StartDeliveryStreamEncryptionCommand,
27
- StopDeliveryStreamEncryptionCommand: StopDeliveryStreamEncryptionCommand_1.StopDeliveryStreamEncryptionCommand,
28
- TagDeliveryStreamCommand: TagDeliveryStreamCommand_1.TagDeliveryStreamCommand,
29
- UntagDeliveryStreamCommand: UntagDeliveryStreamCommand_1.UntagDeliveryStreamCommand,
30
- UpdateDestinationCommand: UpdateDestinationCommand_1.UpdateDestinationCommand,
31
- };
32
- class Firehose extends FirehoseClient_1.FirehoseClient {
33
- }
34
- exports.Firehose = Firehose;
35
- (0, smithy_client_1.createAggregatedClient)(commands, Firehose);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FirehoseClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
16
- const runtimeConfig_1 = require("./runtimeConfig");
17
- const runtimeExtensions_1 = require("./runtimeExtensions");
18
- class FirehoseClient extends smithy_client_1.Client {
19
- constructor(...[configuration]) {
20
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
22
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
23
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
24
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
25
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
26
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
27
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
28
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
29
- super(_config_8);
30
- this.config = _config_8;
31
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- }
39
- destroy() {
40
- super.destroy();
41
- }
42
- }
43
- exports.FirehoseClient = FirehoseClient;
1
+ module.exports = require("./index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateDeliveryStreamCommand = 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 CreateDeliveryStreamCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("Firehose_20150804", "CreateDeliveryStream", {})
23
- .n("FirehoseClient", "CreateDeliveryStreamCommand")
24
- .f(models_0_1.CreateDeliveryStreamInputFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_1_1.se_CreateDeliveryStreamCommand)
26
- .de(Aws_json1_1_1.de_CreateDeliveryStreamCommand)
27
- .build() {
28
- }
29
- exports.CreateDeliveryStreamCommand = CreateDeliveryStreamCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteDeliveryStreamCommand = 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 DeleteDeliveryStreamCommand 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("Firehose_20150804", "DeleteDeliveryStream", {})
22
- .n("FirehoseClient", "DeleteDeliveryStreamCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DeleteDeliveryStreamCommand)
25
- .de(Aws_json1_1_1.de_DeleteDeliveryStreamCommand)
26
- .build() {
27
- }
28
- exports.DeleteDeliveryStreamCommand = DeleteDeliveryStreamCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeDeliveryStreamCommand = 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 DescribeDeliveryStreamCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("Firehose_20150804", "DescribeDeliveryStream", {})
23
- .n("FirehoseClient", "DescribeDeliveryStreamCommand")
24
- .f(void 0, models_0_1.DescribeDeliveryStreamOutputFilterSensitiveLog)
25
- .ser(Aws_json1_1_1.se_DescribeDeliveryStreamCommand)
26
- .de(Aws_json1_1_1.de_DescribeDeliveryStreamCommand)
27
- .build() {
28
- }
29
- exports.DescribeDeliveryStreamCommand = DescribeDeliveryStreamCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListDeliveryStreamsCommand = 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 ListDeliveryStreamsCommand 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("Firehose_20150804", "ListDeliveryStreams", {})
22
- .n("FirehoseClient", "ListDeliveryStreamsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListDeliveryStreamsCommand)
25
- .de(Aws_json1_1_1.de_ListDeliveryStreamsCommand)
26
- .build() {
27
- }
28
- exports.ListDeliveryStreamsCommand = ListDeliveryStreamsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForDeliveryStreamCommand = 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 ListTagsForDeliveryStreamCommand 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("Firehose_20150804", "ListTagsForDeliveryStream", {})
22
- .n("FirehoseClient", "ListTagsForDeliveryStreamCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListTagsForDeliveryStreamCommand)
25
- .de(Aws_json1_1_1.de_ListTagsForDeliveryStreamCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForDeliveryStreamCommand = ListTagsForDeliveryStreamCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutRecordBatchCommand = 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 PutRecordBatchCommand 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("Firehose_20150804", "PutRecordBatch", {})
22
- .n("FirehoseClient", "PutRecordBatchCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_PutRecordBatchCommand)
25
- .de(Aws_json1_1_1.de_PutRecordBatchCommand)
26
- .build() {
27
- }
28
- exports.PutRecordBatchCommand = PutRecordBatchCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
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
- })
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("Firehose_20150804", "PutRecord", {})
22
- .n("FirehoseClient", "PutRecordCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_PutRecordCommand)
25
- .de(Aws_json1_1_1.de_PutRecordCommand)
26
- .build() {
27
- }
28
- exports.PutRecordCommand = PutRecordCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StartDeliveryStreamEncryptionCommand = 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 StartDeliveryStreamEncryptionCommand 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("Firehose_20150804", "StartDeliveryStreamEncryption", {})
22
- .n("FirehoseClient", "StartDeliveryStreamEncryptionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_StartDeliveryStreamEncryptionCommand)
25
- .de(Aws_json1_1_1.de_StartDeliveryStreamEncryptionCommand)
26
- .build() {
27
- }
28
- exports.StartDeliveryStreamEncryptionCommand = StartDeliveryStreamEncryptionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StopDeliveryStreamEncryptionCommand = 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 StopDeliveryStreamEncryptionCommand 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("Firehose_20150804", "StopDeliveryStreamEncryption", {})
22
- .n("FirehoseClient", "StopDeliveryStreamEncryptionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_StopDeliveryStreamEncryptionCommand)
25
- .de(Aws_json1_1_1.de_StopDeliveryStreamEncryptionCommand)
26
- .build() {
27
- }
28
- exports.StopDeliveryStreamEncryptionCommand = StopDeliveryStreamEncryptionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagDeliveryStreamCommand = 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 TagDeliveryStreamCommand 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("Firehose_20150804", "TagDeliveryStream", {})
22
- .n("FirehoseClient", "TagDeliveryStreamCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_TagDeliveryStreamCommand)
25
- .de(Aws_json1_1_1.de_TagDeliveryStreamCommand)
26
- .build() {
27
- }
28
- exports.TagDeliveryStreamCommand = TagDeliveryStreamCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagDeliveryStreamCommand = 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 UntagDeliveryStreamCommand 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("Firehose_20150804", "UntagDeliveryStream", {})
22
- .n("FirehoseClient", "UntagDeliveryStreamCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_UntagDeliveryStreamCommand)
25
- .de(Aws_json1_1_1.de_UntagDeliveryStreamCommand)
26
- .build() {
27
- }
28
- exports.UntagDeliveryStreamCommand = UntagDeliveryStreamCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateDestinationCommand = 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 UpdateDestinationCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("Firehose_20150804", "UpdateDestination", {})
23
- .n("FirehoseClient", "UpdateDestinationCommand")
24
- .f(models_0_1.UpdateDestinationInputFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_1_1.se_UpdateDestinationCommand)
26
- .de(Aws_json1_1_1.de_UpdateDestinationCommand)
27
- .build() {
28
- }
29
- exports.UpdateDestinationCommand = UpdateDestinationCommand;
1
+ module.exports = require("../index.js");
@@ -1,15 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./CreateDeliveryStreamCommand"), exports);
5
- tslib_1.__exportStar(require("./DeleteDeliveryStreamCommand"), exports);
6
- tslib_1.__exportStar(require("./DescribeDeliveryStreamCommand"), exports);
7
- tslib_1.__exportStar(require("./ListDeliveryStreamsCommand"), exports);
8
- tslib_1.__exportStar(require("./ListTagsForDeliveryStreamCommand"), exports);
9
- tslib_1.__exportStar(require("./PutRecordBatchCommand"), exports);
10
- tslib_1.__exportStar(require("./PutRecordCommand"), exports);
11
- tslib_1.__exportStar(require("./StartDeliveryStreamEncryptionCommand"), exports);
12
- tslib_1.__exportStar(require("./StopDeliveryStreamEncryptionCommand"), exports);
13
- tslib_1.__exportStar(require("./TagDeliveryStreamCommand"), exports);
14
- tslib_1.__exportStar(require("./UntagDeliveryStreamCommand"), exports);
15
- tslib_1.__exportStar(require("./UpdateDestinationCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
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: "firehose",
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
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");