@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,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 { PutRecordBatchInput, PutRecordBatchOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface PutRecordBatchCommandInput extends PutRecordBatchInput {
21
20
  */
22
21
  export interface PutRecordBatchCommandOutput extends PutRecordBatchOutput, __MetadataBearer {
23
22
  }
23
+ declare const PutRecordBatchCommand_base: {
24
+ new (input: PutRecordBatchCommandInput): import("@smithy/smithy-client").CommandImpl<PutRecordBatchCommandInput, PutRecordBatchCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Writes multiple data records into a delivery stream in a single call, which can
@@ -139,23 +142,5 @@ export interface PutRecordBatchCommandOutput extends PutRecordBatchOutput, __Met
139
142
  * <p>Base exception class for all service exceptions from Firehose service.</p>
140
143
  *
141
144
  */
142
- export declare class PutRecordBatchCommand extends $Command<PutRecordBatchCommandInput, PutRecordBatchCommandOutput, FirehoseClientResolvedConfig> {
143
- readonly input: PutRecordBatchCommandInput;
144
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
145
- /**
146
- * @public
147
- */
148
- constructor(input: PutRecordBatchCommandInput);
149
- /**
150
- * @internal
151
- */
152
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecordBatchCommandInput, PutRecordBatchCommandOutput>;
153
- /**
154
- * @internal
155
- */
156
- private serialize;
157
- /**
158
- * @internal
159
- */
160
- private deserialize;
145
+ export declare class PutRecordBatchCommand extends PutRecordBatchCommand_base {
161
146
  }
@@ -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 { PutRecordInput, PutRecordOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface PutRecordCommandInput extends PutRecordInput {
21
20
  */
22
21
  export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBearer {
23
22
  }
23
+ declare const PutRecordCommand_base: {
24
+ new (input: PutRecordCommandInput): import("@smithy/smithy-client").CommandImpl<PutRecordCommandInput, PutRecordCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Writes a single data record into an Amazon Kinesis Data Firehose delivery stream. To
@@ -112,23 +115,5 @@ export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBeare
112
115
  * <p>Base exception class for all service exceptions from Firehose service.</p>
113
116
  *
114
117
  */
115
- export declare class PutRecordCommand extends $Command<PutRecordCommandInput, PutRecordCommandOutput, FirehoseClientResolvedConfig> {
116
- readonly input: PutRecordCommandInput;
117
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
118
- /**
119
- * @public
120
- */
121
- constructor(input: PutRecordCommandInput);
122
- /**
123
- * @internal
124
- */
125
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecordCommandInput, PutRecordCommandOutput>;
126
- /**
127
- * @internal
128
- */
129
- private serialize;
130
- /**
131
- * @internal
132
- */
133
- private deserialize;
118
+ export declare class PutRecordCommand extends PutRecordCommand_base {
134
119
  }
@@ -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 { StartDeliveryStreamEncryptionInput, StartDeliveryStreamEncryptionOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface StartDeliveryStreamEncryptionCommandInput extends StartDelivery
21
20
  */
22
21
  export interface StartDeliveryStreamEncryptionCommandOutput extends StartDeliveryStreamEncryptionOutput, __MetadataBearer {
23
22
  }
23
+ declare const StartDeliveryStreamEncryptionCommand_base: {
24
+ new (input: StartDeliveryStreamEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Enables server-side encryption (SSE) for the delivery stream. </p>
@@ -108,23 +111,5 @@ export interface StartDeliveryStreamEncryptionCommandOutput extends StartDeliver
108
111
  * <p>Base exception class for all service exceptions from Firehose service.</p>
109
112
  *
110
113
  */
111
- export declare class StartDeliveryStreamEncryptionCommand extends $Command<StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig> {
112
- readonly input: StartDeliveryStreamEncryptionCommandInput;
113
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
114
- /**
115
- * @public
116
- */
117
- constructor(input: StartDeliveryStreamEncryptionCommandInput);
118
- /**
119
- * @internal
120
- */
121
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput>;
122
- /**
123
- * @internal
124
- */
125
- private serialize;
126
- /**
127
- * @internal
128
- */
129
- private deserialize;
114
+ export declare class StartDeliveryStreamEncryptionCommand extends StartDeliveryStreamEncryptionCommand_base {
130
115
  }
@@ -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 { StopDeliveryStreamEncryptionInput, StopDeliveryStreamEncryptionOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface StopDeliveryStreamEncryptionCommandInput extends StopDeliverySt
21
20
  */
22
21
  export interface StopDeliveryStreamEncryptionCommandOutput extends StopDeliveryStreamEncryptionOutput, __MetadataBearer {
23
22
  }
23
+ declare const StopDeliveryStreamEncryptionCommand_base: {
24
+ new (input: StopDeliveryStreamEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Disables server-side encryption (SSE) for the delivery stream. </p>
@@ -80,23 +83,5 @@ export interface StopDeliveryStreamEncryptionCommandOutput extends StopDeliveryS
80
83
  * <p>Base exception class for all service exceptions from Firehose service.</p>
81
84
  *
82
85
  */
83
- export declare class StopDeliveryStreamEncryptionCommand extends $Command<StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig> {
84
- readonly input: StopDeliveryStreamEncryptionCommandInput;
85
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
- /**
87
- * @public
88
- */
89
- constructor(input: StopDeliveryStreamEncryptionCommandInput);
90
- /**
91
- * @internal
92
- */
93
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput>;
94
- /**
95
- * @internal
96
- */
97
- private serialize;
98
- /**
99
- * @internal
100
- */
101
- private deserialize;
86
+ export declare class StopDeliveryStreamEncryptionCommand extends StopDeliveryStreamEncryptionCommand_base {
102
87
  }
@@ -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 { TagDeliveryStreamInput, TagDeliveryStreamOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagDeliveryStreamCommandInput extends TagDeliveryStreamInput {
21
20
  */
22
21
  export interface TagDeliveryStreamCommandOutput extends TagDeliveryStreamOutput, __MetadataBearer {
23
22
  }
23
+ declare const TagDeliveryStreamCommand_base: {
24
+ new (input: TagDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Adds or updates tags for the specified delivery stream. A tag is a key-value pair
@@ -76,23 +79,5 @@ export interface TagDeliveryStreamCommandOutput extends TagDeliveryStreamOutput,
76
79
  * <p>Base exception class for all service exceptions from Firehose service.</p>
77
80
  *
78
81
  */
79
- export declare class TagDeliveryStreamCommand extends $Command<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
80
- readonly input: TagDeliveryStreamCommandInput;
81
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
- /**
83
- * @public
84
- */
85
- constructor(input: TagDeliveryStreamCommandInput);
86
- /**
87
- * @internal
88
- */
89
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput>;
90
- /**
91
- * @internal
92
- */
93
- private serialize;
94
- /**
95
- * @internal
96
- */
97
- private deserialize;
82
+ export declare class TagDeliveryStreamCommand extends TagDeliveryStreamCommand_base {
98
83
  }
@@ -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 { UntagDeliveryStreamInput, UntagDeliveryStreamOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagDeliveryStreamCommandInput extends UntagDeliveryStreamInpu
21
20
  */
22
21
  export interface UntagDeliveryStreamCommandOutput extends UntagDeliveryStreamOutput, __MetadataBearer {
23
22
  }
23
+ declare const UntagDeliveryStreamCommand_base: {
24
+ new (input: UntagDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes tags from the specified delivery stream. Removed tags are deleted, and you
@@ -67,23 +70,5 @@ export interface UntagDeliveryStreamCommandOutput extends UntagDeliveryStreamOut
67
70
  * <p>Base exception class for all service exceptions from Firehose service.</p>
68
71
  *
69
72
  */
70
- export declare class UntagDeliveryStreamCommand extends $Command<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
71
- readonly input: UntagDeliveryStreamCommandInput;
72
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
- /**
74
- * @public
75
- */
76
- constructor(input: UntagDeliveryStreamCommandInput);
77
- /**
78
- * @internal
79
- */
80
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput>;
81
- /**
82
- * @internal
83
- */
84
- private serialize;
85
- /**
86
- * @internal
87
- */
88
- private deserialize;
73
+ export declare class UntagDeliveryStreamCommand extends UntagDeliveryStreamCommand_base {
89
74
  }
@@ -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 { UpdateDestinationInput, UpdateDestinationOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateDestinationCommandInput extends UpdateDestinationInput {
21
20
  */
22
21
  export interface UpdateDestinationCommandOutput extends UpdateDestinationOutput, __MetadataBearer {
23
22
  }
23
+ declare const UpdateDestinationCommand_base: {
24
+ new (input: UpdateDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDestinationCommandInput, UpdateDestinationCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Updates the specified destination of the specified delivery stream.</p>
@@ -450,23 +453,5 @@ export interface UpdateDestinationCommandOutput extends UpdateDestinationOutput,
450
453
  * <p>Base exception class for all service exceptions from Firehose service.</p>
451
454
  *
452
455
  */
453
- export declare class UpdateDestinationCommand extends $Command<UpdateDestinationCommandInput, UpdateDestinationCommandOutput, FirehoseClientResolvedConfig> {
454
- readonly input: UpdateDestinationCommandInput;
455
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
456
- /**
457
- * @public
458
- */
459
- constructor(input: UpdateDestinationCommandInput);
460
- /**
461
- * @internal
462
- */
463
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDestinationCommandInput, UpdateDestinationCommandOutput>;
464
- /**
465
- * @internal
466
- */
467
- private serialize;
468
- /**
469
- * @internal
470
- */
471
- private deserialize;
456
+ export declare class UpdateDestinationCommand extends UpdateDestinationCommand_base {
472
457
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  FirehoseClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface CreateDeliveryStreamCommandInput
21
15
  export interface CreateDeliveryStreamCommandOutput
22
16
  extends CreateDeliveryStreamOutput,
23
17
  __MetadataBearer {}
24
- export declare class CreateDeliveryStreamCommand extends $Command<
25
- CreateDeliveryStreamCommandInput,
26
- CreateDeliveryStreamCommandOutput,
27
- FirehoseClientResolvedConfig
28
- > {
29
- readonly input: CreateDeliveryStreamCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: CreateDeliveryStreamCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: FirehoseClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const CreateDeliveryStreamCommand_base: {
19
+ new (
20
+ input: CreateDeliveryStreamCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  CreateDeliveryStreamCommandInput,
38
- CreateDeliveryStreamCommandOutput
23
+ CreateDeliveryStreamCommandOutput,
24
+ FirehoseClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class CreateDeliveryStreamCommand extends CreateDeliveryStreamCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  FirehoseClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface DeleteDeliveryStreamCommandInput
21
15
  export interface DeleteDeliveryStreamCommandOutput
22
16
  extends DeleteDeliveryStreamOutput,
23
17
  __MetadataBearer {}
24
- export declare class DeleteDeliveryStreamCommand extends $Command<
25
- DeleteDeliveryStreamCommandInput,
26
- DeleteDeliveryStreamCommandOutput,
27
- FirehoseClientResolvedConfig
28
- > {
29
- readonly input: DeleteDeliveryStreamCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: DeleteDeliveryStreamCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: FirehoseClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const DeleteDeliveryStreamCommand_base: {
19
+ new (
20
+ input: DeleteDeliveryStreamCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  DeleteDeliveryStreamCommandInput,
38
- DeleteDeliveryStreamCommandOutput
23
+ DeleteDeliveryStreamCommandOutput,
24
+ FirehoseClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DeleteDeliveryStreamCommand extends DeleteDeliveryStreamCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  FirehoseClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface DescribeDeliveryStreamCommandInput
21
15
  export interface DescribeDeliveryStreamCommandOutput
22
16
  extends DescribeDeliveryStreamOutput,
23
17
  __MetadataBearer {}
24
- export declare class DescribeDeliveryStreamCommand extends $Command<
25
- DescribeDeliveryStreamCommandInput,
26
- DescribeDeliveryStreamCommandOutput,
27
- FirehoseClientResolvedConfig
28
- > {
29
- readonly input: DescribeDeliveryStreamCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: DescribeDeliveryStreamCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: FirehoseClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const DescribeDeliveryStreamCommand_base: {
19
+ new (
20
+ input: DescribeDeliveryStreamCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  DescribeDeliveryStreamCommandInput,
38
- DescribeDeliveryStreamCommandOutput
23
+ DescribeDeliveryStreamCommandOutput,
24
+ FirehoseClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DescribeDeliveryStreamCommand extends DescribeDeliveryStreamCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  FirehoseClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,19 +15,16 @@ export interface ListDeliveryStreamsCommandInput
21
15
  export interface ListDeliveryStreamsCommandOutput
22
16
  extends ListDeliveryStreamsOutput,
23
17
  __MetadataBearer {}
24
- export declare class ListDeliveryStreamsCommand extends $Command<
25
- ListDeliveryStreamsCommandInput,
26
- ListDeliveryStreamsCommandOutput,
27
- FirehoseClientResolvedConfig
28
- > {
29
- readonly input: ListDeliveryStreamsCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListDeliveryStreamsCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: FirehoseClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const ListDeliveryStreamsCommand_base: {
19
+ new (
20
+ input: ListDeliveryStreamsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListDeliveryStreamsCommandInput,
23
+ ListDeliveryStreamsCommandOutput,
24
+ FirehoseClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListDeliveryStreamsCommand extends ListDeliveryStreamsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  FirehoseClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface ListTagsForDeliveryStreamCommandInput
21
15
  export interface ListTagsForDeliveryStreamCommandOutput
22
16
  extends ListTagsForDeliveryStreamOutput,
23
17
  __MetadataBearer {}
24
- export declare class ListTagsForDeliveryStreamCommand extends $Command<
25
- ListTagsForDeliveryStreamCommandInput,
26
- ListTagsForDeliveryStreamCommandOutput,
27
- FirehoseClientResolvedConfig
28
- > {
29
- readonly input: ListTagsForDeliveryStreamCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListTagsForDeliveryStreamCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: FirehoseClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const ListTagsForDeliveryStreamCommand_base: {
19
+ new (
20
+ input: ListTagsForDeliveryStreamCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  ListTagsForDeliveryStreamCommandInput,
38
- ListTagsForDeliveryStreamCommandOutput
23
+ ListTagsForDeliveryStreamCommandOutput,
24
+ FirehoseClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListTagsForDeliveryStreamCommand extends ListTagsForDeliveryStreamCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  FirehoseClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface PutRecordBatchCommandInput extends PutRecordBatchInput {}
17
11
  export interface PutRecordBatchCommandOutput
18
12
  extends PutRecordBatchOutput,
19
13
  __MetadataBearer {}
20
- export declare class PutRecordBatchCommand extends $Command<
21
- PutRecordBatchCommandInput,
22
- PutRecordBatchCommandOutput,
23
- FirehoseClientResolvedConfig
24
- > {
25
- readonly input: PutRecordBatchCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: PutRecordBatchCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: FirehoseClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<PutRecordBatchCommandInput, PutRecordBatchCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const PutRecordBatchCommand_base: {
15
+ new (
16
+ input: PutRecordBatchCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ PutRecordBatchCommandInput,
19
+ PutRecordBatchCommandOutput,
20
+ FirehoseClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class PutRecordBatchCommand extends PutRecordBatchCommand_base {}