@aws-sdk/client-firehose 3.477.0 → 3.481.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 (53) hide show
  1. package/dist-cjs/commands/CreateDeliveryStreamCommand.js +18 -41
  2. package/dist-cjs/commands/DeleteDeliveryStreamCommand.js +18 -41
  3. package/dist-cjs/commands/DescribeDeliveryStreamCommand.js +18 -41
  4. package/dist-cjs/commands/ListDeliveryStreamsCommand.js +18 -41
  5. package/dist-cjs/commands/ListTagsForDeliveryStreamCommand.js +18 -41
  6. package/dist-cjs/commands/PutRecordBatchCommand.js +18 -41
  7. package/dist-cjs/commands/PutRecordCommand.js +18 -41
  8. package/dist-cjs/commands/StartDeliveryStreamEncryptionCommand.js +18 -41
  9. package/dist-cjs/commands/StopDeliveryStreamEncryptionCommand.js +18 -41
  10. package/dist-cjs/commands/TagDeliveryStreamCommand.js +18 -41
  11. package/dist-cjs/commands/UntagDeliveryStreamCommand.js +18 -41
  12. package/dist-cjs/commands/UpdateDestinationCommand.js +18 -41
  13. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  14. package/dist-es/commands/CreateDeliveryStreamCommand.js +18 -41
  15. package/dist-es/commands/DeleteDeliveryStreamCommand.js +18 -41
  16. package/dist-es/commands/DescribeDeliveryStreamCommand.js +18 -41
  17. package/dist-es/commands/ListDeliveryStreamsCommand.js +18 -41
  18. package/dist-es/commands/ListTagsForDeliveryStreamCommand.js +18 -41
  19. package/dist-es/commands/PutRecordBatchCommand.js +18 -41
  20. package/dist-es/commands/PutRecordCommand.js +18 -41
  21. package/dist-es/commands/StartDeliveryStreamEncryptionCommand.js +18 -41
  22. package/dist-es/commands/StopDeliveryStreamEncryptionCommand.js +18 -41
  23. package/dist-es/commands/TagDeliveryStreamCommand.js +18 -41
  24. package/dist-es/commands/UntagDeliveryStreamCommand.js +18 -41
  25. package/dist-es/commands/UpdateDestinationCommand.js +18 -41
  26. package/dist-es/endpoint/EndpointParameters.js +6 -0
  27. package/dist-types/commands/CreateDeliveryStreamCommand.d.ts +6 -21
  28. package/dist-types/commands/DeleteDeliveryStreamCommand.d.ts +6 -21
  29. package/dist-types/commands/DescribeDeliveryStreamCommand.d.ts +6 -21
  30. package/dist-types/commands/ListDeliveryStreamsCommand.d.ts +6 -21
  31. package/dist-types/commands/ListTagsForDeliveryStreamCommand.d.ts +6 -21
  32. package/dist-types/commands/PutRecordBatchCommand.d.ts +6 -21
  33. package/dist-types/commands/PutRecordCommand.d.ts +6 -21
  34. package/dist-types/commands/StartDeliveryStreamEncryptionCommand.d.ts +6 -21
  35. package/dist-types/commands/StopDeliveryStreamEncryptionCommand.d.ts +6 -21
  36. package/dist-types/commands/TagDeliveryStreamCommand.d.ts +6 -21
  37. package/dist-types/commands/UntagDeliveryStreamCommand.d.ts +6 -21
  38. package/dist-types/commands/UpdateDestinationCommand.d.ts +6 -21
  39. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  40. package/dist-types/ts3.4/commands/CreateDeliveryStreamCommand.d.ts +12 -24
  41. package/dist-types/ts3.4/commands/DeleteDeliveryStreamCommand.d.ts +12 -24
  42. package/dist-types/ts3.4/commands/DescribeDeliveryStreamCommand.d.ts +12 -24
  43. package/dist-types/ts3.4/commands/ListDeliveryStreamsCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/commands/ListTagsForDeliveryStreamCommand.d.ts +12 -24
  45. package/dist-types/ts3.4/commands/PutRecordBatchCommand.d.ts +14 -23
  46. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +14 -23
  47. package/dist-types/ts3.4/commands/StartDeliveryStreamEncryptionCommand.d.ts +12 -24
  48. package/dist-types/ts3.4/commands/StopDeliveryStreamEncryptionCommand.d.ts +12 -24
  49. package/dist-types/ts3.4/commands/TagDeliveryStreamCommand.d.ts +14 -23
  50. package/dist-types/ts3.4/commands/UntagDeliveryStreamCommand.d.ts +14 -23
  51. package/dist-types/ts3.4/commands/UpdateDestinationCommand.d.ts +14 -23
  52. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  53. package/package.json +10 -10
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_PutRecordCommand, se_PutRecordCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class PutRecordCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, PutRecordCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "FirehoseClient";
26
- const commandName = "PutRecordCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "Firehose_20150804",
35
- operation: "PutRecord",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_PutRecordCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_PutRecordCommand(output, context);
46
- }
7
+ export class PutRecordCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("Firehose_20150804", "PutRecord", {})
19
+ .n("FirehoseClient", "PutRecordCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_PutRecordCommand)
22
+ .de(de_PutRecordCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_StartDeliveryStreamEncryptionCommand, se_StartDeliveryStreamEncryptionCommand, } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class StartDeliveryStreamEncryptionCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, StartDeliveryStreamEncryptionCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "FirehoseClient";
26
- const commandName = "StartDeliveryStreamEncryptionCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "Firehose_20150804",
35
- operation: "StartDeliveryStreamEncryption",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_StartDeliveryStreamEncryptionCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_StartDeliveryStreamEncryptionCommand(output, context);
46
- }
7
+ export class StartDeliveryStreamEncryptionCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("Firehose_20150804", "StartDeliveryStreamEncryption", {})
19
+ .n("FirehoseClient", "StartDeliveryStreamEncryptionCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_StartDeliveryStreamEncryptionCommand)
22
+ .de(de_StartDeliveryStreamEncryptionCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_StopDeliveryStreamEncryptionCommand, se_StopDeliveryStreamEncryptionCommand, } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class StopDeliveryStreamEncryptionCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, StopDeliveryStreamEncryptionCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "FirehoseClient";
26
- const commandName = "StopDeliveryStreamEncryptionCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "Firehose_20150804",
35
- operation: "StopDeliveryStreamEncryption",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_StopDeliveryStreamEncryptionCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_StopDeliveryStreamEncryptionCommand(output, context);
46
- }
7
+ export class StopDeliveryStreamEncryptionCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("Firehose_20150804", "StopDeliveryStreamEncryption", {})
19
+ .n("FirehoseClient", "StopDeliveryStreamEncryptionCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_StopDeliveryStreamEncryptionCommand)
22
+ .de(de_StopDeliveryStreamEncryptionCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_TagDeliveryStreamCommand, se_TagDeliveryStreamCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class TagDeliveryStreamCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, TagDeliveryStreamCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "FirehoseClient";
26
- const commandName = "TagDeliveryStreamCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "Firehose_20150804",
35
- operation: "TagDeliveryStream",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_TagDeliveryStreamCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_TagDeliveryStreamCommand(output, context);
46
- }
7
+ export class TagDeliveryStreamCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("Firehose_20150804", "TagDeliveryStream", {})
19
+ .n("FirehoseClient", "TagDeliveryStreamCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_TagDeliveryStreamCommand)
22
+ .de(de_TagDeliveryStreamCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UntagDeliveryStreamCommand, se_UntagDeliveryStreamCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class UntagDeliveryStreamCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, UntagDeliveryStreamCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "FirehoseClient";
26
- const commandName = "UntagDeliveryStreamCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "Firehose_20150804",
35
- operation: "UntagDeliveryStream",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_UntagDeliveryStreamCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_UntagDeliveryStreamCommand(output, context);
46
- }
7
+ export class UntagDeliveryStreamCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("Firehose_20150804", "UntagDeliveryStream", {})
19
+ .n("FirehoseClient", "UntagDeliveryStreamCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UntagDeliveryStreamCommand)
22
+ .de(de_UntagDeliveryStreamCommand)
23
+ .build() {
47
24
  }
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { UpdateDestinationInputFilterSensitiveLog, } from "../models/models_0";
6
6
  import { de_UpdateDestinationCommand, se_UpdateDestinationCommand } from "../protocols/Aws_json1_1";
7
7
  export { $Command };
8
- export class UpdateDestinationCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdateDestinationCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "FirehoseClient";
27
- const commandName = "UpdateDestinationCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: UpdateDestinationInputFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "Firehose_20150804",
36
- operation: "UpdateDestination",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_UpdateDestinationCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_UpdateDestinationCommand(output, context);
47
- }
8
+ export class UpdateDestinationCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Firehose_20150804", "UpdateDestination", {})
20
+ .n("FirehoseClient", "UpdateDestinationCommand")
21
+ .f(UpdateDestinationInputFilterSensitiveLog, void 0)
22
+ .ser(se_UpdateDestinationCommand)
23
+ .de(de_UpdateDestinationCommand)
24
+ .build() {
48
25
  }
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
6
6
  defaultSigningName: "firehose",
7
7
  };
8
8
  };
9
+ export const commonParams = {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
5
4
  import { CreateDeliveryStreamInput, CreateDeliveryStreamOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CreateDeliveryStreamCommandInput extends CreateDeliveryStreamIn
21
20
  */
22
21
  export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamOutput, __MetadataBearer {
23
22
  }
23
+ declare const CreateDeliveryStreamCommand_base: {
24
+ new (input: CreateDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Creates a Kinesis Data Firehose delivery stream.</p>
@@ -552,23 +555,5 @@ export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamO
552
555
  * <p>Base exception class for all service exceptions from Firehose service.</p>
553
556
  *
554
557
  */
555
- export declare class CreateDeliveryStreamCommand extends $Command<CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
556
- readonly input: CreateDeliveryStreamCommandInput;
557
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
558
- /**
559
- * @public
560
- */
561
- constructor(input: CreateDeliveryStreamCommandInput);
562
- /**
563
- * @internal
564
- */
565
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput>;
566
- /**
567
- * @internal
568
- */
569
- private serialize;
570
- /**
571
- * @internal
572
- */
573
- private deserialize;
558
+ export declare class CreateDeliveryStreamCommand extends CreateDeliveryStreamCommand_base {
574
559
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
5
4
  import { DeleteDeliveryStreamInput, DeleteDeliveryStreamOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeleteDeliveryStreamCommandInput extends DeleteDeliveryStreamIn
21
20
  */
22
21
  export interface DeleteDeliveryStreamCommandOutput extends DeleteDeliveryStreamOutput, __MetadataBearer {
23
22
  }
23
+ declare const DeleteDeliveryStreamCommand_base: {
24
+ new (input: DeleteDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Deletes a delivery stream and its data.</p>
@@ -65,23 +68,5 @@ export interface DeleteDeliveryStreamCommandOutput extends DeleteDeliveryStreamO
65
68
  * <p>Base exception class for all service exceptions from Firehose service.</p>
66
69
  *
67
70
  */
68
- export declare class DeleteDeliveryStreamCommand extends $Command<DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
69
- readonly input: DeleteDeliveryStreamCommandInput;
70
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
- /**
72
- * @public
73
- */
74
- constructor(input: DeleteDeliveryStreamCommandInput);
75
- /**
76
- * @internal
77
- */
78
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput>;
79
- /**
80
- * @internal
81
- */
82
- private serialize;
83
- /**
84
- * @internal
85
- */
86
- private deserialize;
71
+ export declare class DeleteDeliveryStreamCommand extends DeleteDeliveryStreamCommand_base {
87
72
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
5
4
  import { DescribeDeliveryStreamInput, DescribeDeliveryStreamOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DescribeDeliveryStreamCommandInput extends DescribeDeliveryStre
21
20
  */
22
21
  export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStreamOutput, __MetadataBearer {
23
22
  }
23
+ declare const DescribeDeliveryStreamCommand_base: {
24
+ new (input: DescribeDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Describes the specified delivery stream and its status. For example, after your
@@ -500,23 +503,5 @@ export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStr
500
503
  * <p>Base exception class for all service exceptions from Firehose service.</p>
501
504
  *
502
505
  */
503
- export declare class DescribeDeliveryStreamCommand extends $Command<DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
504
- readonly input: DescribeDeliveryStreamCommandInput;
505
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
506
- /**
507
- * @public
508
- */
509
- constructor(input: DescribeDeliveryStreamCommandInput);
510
- /**
511
- * @internal
512
- */
513
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput>;
514
- /**
515
- * @internal
516
- */
517
- private serialize;
518
- /**
519
- * @internal
520
- */
521
- private deserialize;
506
+ export declare class DescribeDeliveryStreamCommand extends DescribeDeliveryStreamCommand_base {
522
507
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
5
4
  import { ListDeliveryStreamsInput, ListDeliveryStreamsOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListDeliveryStreamsCommandInput extends ListDeliveryStreamsInpu
21
20
  */
22
21
  export interface ListDeliveryStreamsCommandOutput extends ListDeliveryStreamsOutput, __MetadataBearer {
23
22
  }
23
+ declare const ListDeliveryStreamsCommand_base: {
24
+ new (input: ListDeliveryStreamsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists your delivery streams in alphabetical order of their names.</p>
@@ -63,23 +66,5 @@ export interface ListDeliveryStreamsCommandOutput extends ListDeliveryStreamsOut
63
66
  * <p>Base exception class for all service exceptions from Firehose service.</p>
64
67
  *
65
68
  */
66
- export declare class ListDeliveryStreamsCommand extends $Command<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput, FirehoseClientResolvedConfig> {
67
- readonly input: ListDeliveryStreamsCommandInput;
68
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
- /**
70
- * @public
71
- */
72
- constructor(input: ListDeliveryStreamsCommandInput);
73
- /**
74
- * @internal
75
- */
76
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput>;
77
- /**
78
- * @internal
79
- */
80
- private serialize;
81
- /**
82
- * @internal
83
- */
84
- private deserialize;
69
+ export declare class ListDeliveryStreamsCommand extends ListDeliveryStreamsCommand_base {
85
70
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
5
4
  import { ListTagsForDeliveryStreamInput, ListTagsForDeliveryStreamOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTagsForDeliveryStreamCommandInput extends ListTagsForDelive
21
20
  */
22
21
  export interface ListTagsForDeliveryStreamCommandOutput extends ListTagsForDeliveryStreamOutput, __MetadataBearer {
23
22
  }
23
+ declare const ListTagsForDeliveryStreamCommand_base: {
24
+ new (input: ListTagsForDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists the tags for the specified delivery stream. This operation has a limit of five
@@ -69,23 +72,5 @@ export interface ListTagsForDeliveryStreamCommandOutput extends ListTagsForDeliv
69
72
  * <p>Base exception class for all service exceptions from Firehose service.</p>
70
73
  *
71
74
  */
72
- export declare class ListTagsForDeliveryStreamCommand extends $Command<ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
73
- readonly input: ListTagsForDeliveryStreamCommandInput;
74
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
- /**
76
- * @public
77
- */
78
- constructor(input: ListTagsForDeliveryStreamCommandInput);
79
- /**
80
- * @internal
81
- */
82
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput>;
83
- /**
84
- * @internal
85
- */
86
- private serialize;
87
- /**
88
- * @internal
89
- */
90
- private deserialize;
75
+ export declare class ListTagsForDeliveryStreamCommand extends ListTagsForDeliveryStreamCommand_base {
91
76
  }