@aws-sdk/client-firehose 3.168.0 → 3.170.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 (27) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Firehose.d.ts +220 -65
  3. package/dist-types/ts3.4/FirehoseClient.d.ts +201 -85
  4. package/dist-types/ts3.4/commands/CreateDeliveryStreamCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/DeleteDeliveryStreamCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DescribeDeliveryStreamCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/ListDeliveryStreamsCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/ListTagsForDeliveryStreamCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/PutRecordBatchCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/StartDeliveryStreamEncryptionCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/StopDeliveryStreamEncryptionCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/TagDeliveryStreamCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/UntagDeliveryStreamCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/UpdateDestinationCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +5 -5
  19. package/dist-types/ts3.4/models/FirehoseServiceException.d.ts +8 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +1445 -1340
  22. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +149 -38
  23. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  24. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  25. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  26. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  27. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-firehose
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-firehose
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-firehose
@@ -1,65 +1,220 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput } from "./commands/CreateDeliveryStreamCommand";
3
- import { DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput } from "./commands/DeleteDeliveryStreamCommand";
4
- import { DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput } from "./commands/DescribeDeliveryStreamCommand";
5
- import { ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput } from "./commands/ListDeliveryStreamsCommand";
6
- import { ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput } from "./commands/ListTagsForDeliveryStreamCommand";
7
- import { PutRecordBatchCommandInput, PutRecordBatchCommandOutput } from "./commands/PutRecordBatchCommand";
8
- import { PutRecordCommandInput, PutRecordCommandOutput } from "./commands/PutRecordCommand";
9
- import { StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput } from "./commands/StartDeliveryStreamEncryptionCommand";
10
- import { StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput } from "./commands/StopDeliveryStreamEncryptionCommand";
11
- import { TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput } from "./commands/TagDeliveryStreamCommand";
12
- import { UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput } from "./commands/UntagDeliveryStreamCommand";
13
- import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from "./commands/UpdateDestinationCommand";
14
- import { FirehoseClient } from "./FirehoseClient";
15
-
16
- export declare class Firehose extends FirehoseClient {
17
-
18
- createDeliveryStream(args: CreateDeliveryStreamCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeliveryStreamCommandOutput>;
19
- createDeliveryStream(args: CreateDeliveryStreamCommandInput, cb: (err: any, data?: CreateDeliveryStreamCommandOutput) => void): void;
20
- createDeliveryStream(args: CreateDeliveryStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeliveryStreamCommandOutput) => void): void;
21
-
22
- deleteDeliveryStream(args: DeleteDeliveryStreamCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDeliveryStreamCommandOutput>;
23
- deleteDeliveryStream(args: DeleteDeliveryStreamCommandInput, cb: (err: any, data?: DeleteDeliveryStreamCommandOutput) => void): void;
24
- deleteDeliveryStream(args: DeleteDeliveryStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeliveryStreamCommandOutput) => void): void;
25
-
26
- describeDeliveryStream(args: DescribeDeliveryStreamCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDeliveryStreamCommandOutput>;
27
- describeDeliveryStream(args: DescribeDeliveryStreamCommandInput, cb: (err: any, data?: DescribeDeliveryStreamCommandOutput) => void): void;
28
- describeDeliveryStream(args: DescribeDeliveryStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDeliveryStreamCommandOutput) => void): void;
29
-
30
- listDeliveryStreams(args: ListDeliveryStreamsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeliveryStreamsCommandOutput>;
31
- listDeliveryStreams(args: ListDeliveryStreamsCommandInput, cb: (err: any, data?: ListDeliveryStreamsCommandOutput) => void): void;
32
- listDeliveryStreams(args: ListDeliveryStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeliveryStreamsCommandOutput) => void): void;
33
-
34
- listTagsForDeliveryStream(args: ListTagsForDeliveryStreamCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForDeliveryStreamCommandOutput>;
35
- listTagsForDeliveryStream(args: ListTagsForDeliveryStreamCommandInput, cb: (err: any, data?: ListTagsForDeliveryStreamCommandOutput) => void): void;
36
- listTagsForDeliveryStream(args: ListTagsForDeliveryStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForDeliveryStreamCommandOutput) => void): void;
37
-
38
- putRecord(args: PutRecordCommandInput, options?: __HttpHandlerOptions): Promise<PutRecordCommandOutput>;
39
- putRecord(args: PutRecordCommandInput, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
40
- putRecord(args: PutRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
41
-
42
- putRecordBatch(args: PutRecordBatchCommandInput, options?: __HttpHandlerOptions): Promise<PutRecordBatchCommandOutput>;
43
- putRecordBatch(args: PutRecordBatchCommandInput, cb: (err: any, data?: PutRecordBatchCommandOutput) => void): void;
44
- putRecordBatch(args: PutRecordBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecordBatchCommandOutput) => void): void;
45
-
46
- startDeliveryStreamEncryption(args: StartDeliveryStreamEncryptionCommandInput, options?: __HttpHandlerOptions): Promise<StartDeliveryStreamEncryptionCommandOutput>;
47
- startDeliveryStreamEncryption(args: StartDeliveryStreamEncryptionCommandInput, cb: (err: any, data?: StartDeliveryStreamEncryptionCommandOutput) => void): void;
48
- startDeliveryStreamEncryption(args: StartDeliveryStreamEncryptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeliveryStreamEncryptionCommandOutput) => void): void;
49
-
50
- stopDeliveryStreamEncryption(args: StopDeliveryStreamEncryptionCommandInput, options?: __HttpHandlerOptions): Promise<StopDeliveryStreamEncryptionCommandOutput>;
51
- stopDeliveryStreamEncryption(args: StopDeliveryStreamEncryptionCommandInput, cb: (err: any, data?: StopDeliveryStreamEncryptionCommandOutput) => void): void;
52
- stopDeliveryStreamEncryption(args: StopDeliveryStreamEncryptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDeliveryStreamEncryptionCommandOutput) => void): void;
53
-
54
- tagDeliveryStream(args: TagDeliveryStreamCommandInput, options?: __HttpHandlerOptions): Promise<TagDeliveryStreamCommandOutput>;
55
- tagDeliveryStream(args: TagDeliveryStreamCommandInput, cb: (err: any, data?: TagDeliveryStreamCommandOutput) => void): void;
56
- tagDeliveryStream(args: TagDeliveryStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagDeliveryStreamCommandOutput) => void): void;
57
-
58
- untagDeliveryStream(args: UntagDeliveryStreamCommandInput, options?: __HttpHandlerOptions): Promise<UntagDeliveryStreamCommandOutput>;
59
- untagDeliveryStream(args: UntagDeliveryStreamCommandInput, cb: (err: any, data?: UntagDeliveryStreamCommandOutput) => void): void;
60
- untagDeliveryStream(args: UntagDeliveryStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagDeliveryStreamCommandOutput) => void): void;
61
-
62
- updateDestination(args: UpdateDestinationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDestinationCommandOutput>;
63
- updateDestination(args: UpdateDestinationCommandInput, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
64
- updateDestination(args: UpdateDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
65
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateDeliveryStreamCommandInput,
4
+ CreateDeliveryStreamCommandOutput,
5
+ } from "./commands/CreateDeliveryStreamCommand";
6
+ import {
7
+ DeleteDeliveryStreamCommandInput,
8
+ DeleteDeliveryStreamCommandOutput,
9
+ } from "./commands/DeleteDeliveryStreamCommand";
10
+ import {
11
+ DescribeDeliveryStreamCommandInput,
12
+ DescribeDeliveryStreamCommandOutput,
13
+ } from "./commands/DescribeDeliveryStreamCommand";
14
+ import {
15
+ ListDeliveryStreamsCommandInput,
16
+ ListDeliveryStreamsCommandOutput,
17
+ } from "./commands/ListDeliveryStreamsCommand";
18
+ import {
19
+ ListTagsForDeliveryStreamCommandInput,
20
+ ListTagsForDeliveryStreamCommandOutput,
21
+ } from "./commands/ListTagsForDeliveryStreamCommand";
22
+ import {
23
+ PutRecordBatchCommandInput,
24
+ PutRecordBatchCommandOutput,
25
+ } from "./commands/PutRecordBatchCommand";
26
+ import {
27
+ PutRecordCommandInput,
28
+ PutRecordCommandOutput,
29
+ } from "./commands/PutRecordCommand";
30
+ import {
31
+ StartDeliveryStreamEncryptionCommandInput,
32
+ StartDeliveryStreamEncryptionCommandOutput,
33
+ } from "./commands/StartDeliveryStreamEncryptionCommand";
34
+ import {
35
+ StopDeliveryStreamEncryptionCommandInput,
36
+ StopDeliveryStreamEncryptionCommandOutput,
37
+ } from "./commands/StopDeliveryStreamEncryptionCommand";
38
+ import {
39
+ TagDeliveryStreamCommandInput,
40
+ TagDeliveryStreamCommandOutput,
41
+ } from "./commands/TagDeliveryStreamCommand";
42
+ import {
43
+ UntagDeliveryStreamCommandInput,
44
+ UntagDeliveryStreamCommandOutput,
45
+ } from "./commands/UntagDeliveryStreamCommand";
46
+ import {
47
+ UpdateDestinationCommandInput,
48
+ UpdateDestinationCommandOutput,
49
+ } from "./commands/UpdateDestinationCommand";
50
+ import { FirehoseClient } from "./FirehoseClient";
51
+
52
+ export declare class Firehose extends FirehoseClient {
53
+ createDeliveryStream(
54
+ args: CreateDeliveryStreamCommandInput,
55
+ options?: __HttpHandlerOptions
56
+ ): Promise<CreateDeliveryStreamCommandOutput>;
57
+ createDeliveryStream(
58
+ args: CreateDeliveryStreamCommandInput,
59
+ cb: (err: any, data?: CreateDeliveryStreamCommandOutput) => void
60
+ ): void;
61
+ createDeliveryStream(
62
+ args: CreateDeliveryStreamCommandInput,
63
+ options: __HttpHandlerOptions,
64
+ cb: (err: any, data?: CreateDeliveryStreamCommandOutput) => void
65
+ ): void;
66
+
67
+ deleteDeliveryStream(
68
+ args: DeleteDeliveryStreamCommandInput,
69
+ options?: __HttpHandlerOptions
70
+ ): Promise<DeleteDeliveryStreamCommandOutput>;
71
+ deleteDeliveryStream(
72
+ args: DeleteDeliveryStreamCommandInput,
73
+ cb: (err: any, data?: DeleteDeliveryStreamCommandOutput) => void
74
+ ): void;
75
+ deleteDeliveryStream(
76
+ args: DeleteDeliveryStreamCommandInput,
77
+ options: __HttpHandlerOptions,
78
+ cb: (err: any, data?: DeleteDeliveryStreamCommandOutput) => void
79
+ ): void;
80
+
81
+ describeDeliveryStream(
82
+ args: DescribeDeliveryStreamCommandInput,
83
+ options?: __HttpHandlerOptions
84
+ ): Promise<DescribeDeliveryStreamCommandOutput>;
85
+ describeDeliveryStream(
86
+ args: DescribeDeliveryStreamCommandInput,
87
+ cb: (err: any, data?: DescribeDeliveryStreamCommandOutput) => void
88
+ ): void;
89
+ describeDeliveryStream(
90
+ args: DescribeDeliveryStreamCommandInput,
91
+ options: __HttpHandlerOptions,
92
+ cb: (err: any, data?: DescribeDeliveryStreamCommandOutput) => void
93
+ ): void;
94
+
95
+ listDeliveryStreams(
96
+ args: ListDeliveryStreamsCommandInput,
97
+ options?: __HttpHandlerOptions
98
+ ): Promise<ListDeliveryStreamsCommandOutput>;
99
+ listDeliveryStreams(
100
+ args: ListDeliveryStreamsCommandInput,
101
+ cb: (err: any, data?: ListDeliveryStreamsCommandOutput) => void
102
+ ): void;
103
+ listDeliveryStreams(
104
+ args: ListDeliveryStreamsCommandInput,
105
+ options: __HttpHandlerOptions,
106
+ cb: (err: any, data?: ListDeliveryStreamsCommandOutput) => void
107
+ ): void;
108
+
109
+ listTagsForDeliveryStream(
110
+ args: ListTagsForDeliveryStreamCommandInput,
111
+ options?: __HttpHandlerOptions
112
+ ): Promise<ListTagsForDeliveryStreamCommandOutput>;
113
+ listTagsForDeliveryStream(
114
+ args: ListTagsForDeliveryStreamCommandInput,
115
+ cb: (err: any, data?: ListTagsForDeliveryStreamCommandOutput) => void
116
+ ): void;
117
+ listTagsForDeliveryStream(
118
+ args: ListTagsForDeliveryStreamCommandInput,
119
+ options: __HttpHandlerOptions,
120
+ cb: (err: any, data?: ListTagsForDeliveryStreamCommandOutput) => void
121
+ ): void;
122
+
123
+ putRecord(
124
+ args: PutRecordCommandInput,
125
+ options?: __HttpHandlerOptions
126
+ ): Promise<PutRecordCommandOutput>;
127
+ putRecord(
128
+ args: PutRecordCommandInput,
129
+ cb: (err: any, data?: PutRecordCommandOutput) => void
130
+ ): void;
131
+ putRecord(
132
+ args: PutRecordCommandInput,
133
+ options: __HttpHandlerOptions,
134
+ cb: (err: any, data?: PutRecordCommandOutput) => void
135
+ ): void;
136
+
137
+ putRecordBatch(
138
+ args: PutRecordBatchCommandInput,
139
+ options?: __HttpHandlerOptions
140
+ ): Promise<PutRecordBatchCommandOutput>;
141
+ putRecordBatch(
142
+ args: PutRecordBatchCommandInput,
143
+ cb: (err: any, data?: PutRecordBatchCommandOutput) => void
144
+ ): void;
145
+ putRecordBatch(
146
+ args: PutRecordBatchCommandInput,
147
+ options: __HttpHandlerOptions,
148
+ cb: (err: any, data?: PutRecordBatchCommandOutput) => void
149
+ ): void;
150
+
151
+ startDeliveryStreamEncryption(
152
+ args: StartDeliveryStreamEncryptionCommandInput,
153
+ options?: __HttpHandlerOptions
154
+ ): Promise<StartDeliveryStreamEncryptionCommandOutput>;
155
+ startDeliveryStreamEncryption(
156
+ args: StartDeliveryStreamEncryptionCommandInput,
157
+ cb: (err: any, data?: StartDeliveryStreamEncryptionCommandOutput) => void
158
+ ): void;
159
+ startDeliveryStreamEncryption(
160
+ args: StartDeliveryStreamEncryptionCommandInput,
161
+ options: __HttpHandlerOptions,
162
+ cb: (err: any, data?: StartDeliveryStreamEncryptionCommandOutput) => void
163
+ ): void;
164
+
165
+ stopDeliveryStreamEncryption(
166
+ args: StopDeliveryStreamEncryptionCommandInput,
167
+ options?: __HttpHandlerOptions
168
+ ): Promise<StopDeliveryStreamEncryptionCommandOutput>;
169
+ stopDeliveryStreamEncryption(
170
+ args: StopDeliveryStreamEncryptionCommandInput,
171
+ cb: (err: any, data?: StopDeliveryStreamEncryptionCommandOutput) => void
172
+ ): void;
173
+ stopDeliveryStreamEncryption(
174
+ args: StopDeliveryStreamEncryptionCommandInput,
175
+ options: __HttpHandlerOptions,
176
+ cb: (err: any, data?: StopDeliveryStreamEncryptionCommandOutput) => void
177
+ ): void;
178
+
179
+ tagDeliveryStream(
180
+ args: TagDeliveryStreamCommandInput,
181
+ options?: __HttpHandlerOptions
182
+ ): Promise<TagDeliveryStreamCommandOutput>;
183
+ tagDeliveryStream(
184
+ args: TagDeliveryStreamCommandInput,
185
+ cb: (err: any, data?: TagDeliveryStreamCommandOutput) => void
186
+ ): void;
187
+ tagDeliveryStream(
188
+ args: TagDeliveryStreamCommandInput,
189
+ options: __HttpHandlerOptions,
190
+ cb: (err: any, data?: TagDeliveryStreamCommandOutput) => void
191
+ ): void;
192
+
193
+ untagDeliveryStream(
194
+ args: UntagDeliveryStreamCommandInput,
195
+ options?: __HttpHandlerOptions
196
+ ): Promise<UntagDeliveryStreamCommandOutput>;
197
+ untagDeliveryStream(
198
+ args: UntagDeliveryStreamCommandInput,
199
+ cb: (err: any, data?: UntagDeliveryStreamCommandOutput) => void
200
+ ): void;
201
+ untagDeliveryStream(
202
+ args: UntagDeliveryStreamCommandInput,
203
+ options: __HttpHandlerOptions,
204
+ cb: (err: any, data?: UntagDeliveryStreamCommandOutput) => void
205
+ ): void;
206
+
207
+ updateDestination(
208
+ args: UpdateDestinationCommandInput,
209
+ options?: __HttpHandlerOptions
210
+ ): Promise<UpdateDestinationCommandOutput>;
211
+ updateDestination(
212
+ args: UpdateDestinationCommandInput,
213
+ cb: (err: any, data?: UpdateDestinationCommandOutput) => void
214
+ ): void;
215
+ updateDestination(
216
+ args: UpdateDestinationCommandInput,
217
+ options: __HttpHandlerOptions,
218
+ cb: (err: any, data?: UpdateDestinationCommandOutput) => void
219
+ ): void;
220
+ }
@@ -1,85 +1,201 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput } from "./commands/CreateDeliveryStreamCommand";
10
- import { DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput } from "./commands/DeleteDeliveryStreamCommand";
11
- import { DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput } from "./commands/DescribeDeliveryStreamCommand";
12
- import { ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput } from "./commands/ListDeliveryStreamsCommand";
13
- import { ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput } from "./commands/ListTagsForDeliveryStreamCommand";
14
- import { PutRecordBatchCommandInput, PutRecordBatchCommandOutput } from "./commands/PutRecordBatchCommand";
15
- import { PutRecordCommandInput, PutRecordCommandOutput } from "./commands/PutRecordCommand";
16
- import { StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput } from "./commands/StartDeliveryStreamEncryptionCommand";
17
- import { StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput } from "./commands/StopDeliveryStreamEncryptionCommand";
18
- import { TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput } from "./commands/TagDeliveryStreamCommand";
19
- import { UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput } from "./commands/UntagDeliveryStreamCommand";
20
- import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from "./commands/UpdateDestinationCommand";
21
- export declare type ServiceInputTypes = CreateDeliveryStreamCommandInput | DeleteDeliveryStreamCommandInput | DescribeDeliveryStreamCommandInput | ListDeliveryStreamsCommandInput | ListTagsForDeliveryStreamCommandInput | PutRecordBatchCommandInput | PutRecordCommandInput | StartDeliveryStreamEncryptionCommandInput | StopDeliveryStreamEncryptionCommandInput | TagDeliveryStreamCommandInput | UntagDeliveryStreamCommandInput | UpdateDestinationCommandInput;
22
- export declare type ServiceOutputTypes = CreateDeliveryStreamCommandOutput | DeleteDeliveryStreamCommandOutput | DescribeDeliveryStreamCommandOutput | ListDeliveryStreamsCommandOutput | ListTagsForDeliveryStreamCommandOutput | PutRecordBatchCommandOutput | PutRecordCommandOutput | StartDeliveryStreamEncryptionCommandOutput | StopDeliveryStreamEncryptionCommandOutput | TagDeliveryStreamCommandOutput | UntagDeliveryStreamCommandOutput | UpdateDestinationCommandOutput;
23
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
24
-
25
- requestHandler?: __HttpHandler;
26
-
27
- sha256?: __HashConstructor;
28
-
29
- urlParser?: __UrlParser;
30
-
31
- bodyLengthChecker?: __BodyLengthCalculator;
32
-
33
- streamCollector?: __StreamCollector;
34
-
35
- base64Decoder?: __Decoder;
36
-
37
- base64Encoder?: __Encoder;
38
-
39
- utf8Decoder?: __Decoder;
40
-
41
- utf8Encoder?: __Encoder;
42
-
43
- runtime?: string;
44
-
45
- disableHostPrefix?: boolean;
46
-
47
- maxAttempts?: number | __Provider<number>;
48
-
49
- retryMode?: string | __Provider<string>;
50
-
51
- logger?: __Logger;
52
-
53
- useDualstackEndpoint?: boolean | __Provider<boolean>;
54
-
55
- useFipsEndpoint?: boolean | __Provider<boolean>;
56
-
57
- serviceId?: string;
58
-
59
- region?: string | __Provider<string>;
60
-
61
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
62
-
63
- regionInfoProvider?: RegionInfoProvider;
64
-
65
- defaultUserAgentProvider?: Provider<__UserAgent>;
66
-
67
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
68
- }
69
- declare type FirehoseClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
70
-
71
- export interface FirehoseClientConfig extends FirehoseClientConfigType {
72
- }
73
- declare type FirehoseClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
74
-
75
- export interface FirehoseClientResolvedConfig extends FirehoseClientResolvedConfigType {
76
- }
77
-
78
- export declare class FirehoseClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, FirehoseClientResolvedConfig> {
79
-
80
- readonly config: FirehoseClientResolvedConfig;
81
- constructor(configuration: FirehoseClientConfig);
82
-
83
- destroy(): void;
84
- }
85
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateDeliveryStreamCommandInput,
47
+ CreateDeliveryStreamCommandOutput,
48
+ } from "./commands/CreateDeliveryStreamCommand";
49
+ import {
50
+ DeleteDeliveryStreamCommandInput,
51
+ DeleteDeliveryStreamCommandOutput,
52
+ } from "./commands/DeleteDeliveryStreamCommand";
53
+ import {
54
+ DescribeDeliveryStreamCommandInput,
55
+ DescribeDeliveryStreamCommandOutput,
56
+ } from "./commands/DescribeDeliveryStreamCommand";
57
+ import {
58
+ ListDeliveryStreamsCommandInput,
59
+ ListDeliveryStreamsCommandOutput,
60
+ } from "./commands/ListDeliveryStreamsCommand";
61
+ import {
62
+ ListTagsForDeliveryStreamCommandInput,
63
+ ListTagsForDeliveryStreamCommandOutput,
64
+ } from "./commands/ListTagsForDeliveryStreamCommand";
65
+ import {
66
+ PutRecordBatchCommandInput,
67
+ PutRecordBatchCommandOutput,
68
+ } from "./commands/PutRecordBatchCommand";
69
+ import {
70
+ PutRecordCommandInput,
71
+ PutRecordCommandOutput,
72
+ } from "./commands/PutRecordCommand";
73
+ import {
74
+ StartDeliveryStreamEncryptionCommandInput,
75
+ StartDeliveryStreamEncryptionCommandOutput,
76
+ } from "./commands/StartDeliveryStreamEncryptionCommand";
77
+ import {
78
+ StopDeliveryStreamEncryptionCommandInput,
79
+ StopDeliveryStreamEncryptionCommandOutput,
80
+ } from "./commands/StopDeliveryStreamEncryptionCommand";
81
+ import {
82
+ TagDeliveryStreamCommandInput,
83
+ TagDeliveryStreamCommandOutput,
84
+ } from "./commands/TagDeliveryStreamCommand";
85
+ import {
86
+ UntagDeliveryStreamCommandInput,
87
+ UntagDeliveryStreamCommandOutput,
88
+ } from "./commands/UntagDeliveryStreamCommand";
89
+ import {
90
+ UpdateDestinationCommandInput,
91
+ UpdateDestinationCommandOutput,
92
+ } from "./commands/UpdateDestinationCommand";
93
+ export declare type ServiceInputTypes =
94
+ | CreateDeliveryStreamCommandInput
95
+ | DeleteDeliveryStreamCommandInput
96
+ | DescribeDeliveryStreamCommandInput
97
+ | ListDeliveryStreamsCommandInput
98
+ | ListTagsForDeliveryStreamCommandInput
99
+ | PutRecordBatchCommandInput
100
+ | PutRecordCommandInput
101
+ | StartDeliveryStreamEncryptionCommandInput
102
+ | StopDeliveryStreamEncryptionCommandInput
103
+ | TagDeliveryStreamCommandInput
104
+ | UntagDeliveryStreamCommandInput
105
+ | UpdateDestinationCommandInput;
106
+ export declare type ServiceOutputTypes =
107
+ | CreateDeliveryStreamCommandOutput
108
+ | DeleteDeliveryStreamCommandOutput
109
+ | DescribeDeliveryStreamCommandOutput
110
+ | ListDeliveryStreamsCommandOutput
111
+ | ListTagsForDeliveryStreamCommandOutput
112
+ | PutRecordBatchCommandOutput
113
+ | PutRecordCommandOutput
114
+ | StartDeliveryStreamEncryptionCommandOutput
115
+ | StopDeliveryStreamEncryptionCommandOutput
116
+ | TagDeliveryStreamCommandOutput
117
+ | UntagDeliveryStreamCommandOutput
118
+ | UpdateDestinationCommandOutput;
119
+ export interface ClientDefaults
120
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
121
+ requestHandler?: __HttpHandler;
122
+
123
+ sha256?: __HashConstructor;
124
+
125
+ urlParser?: __UrlParser;
126
+
127
+ bodyLengthChecker?: __BodyLengthCalculator;
128
+
129
+ streamCollector?: __StreamCollector;
130
+
131
+ base64Decoder?: __Decoder;
132
+
133
+ base64Encoder?: __Encoder;
134
+
135
+ utf8Decoder?: __Decoder;
136
+
137
+ utf8Encoder?: __Encoder;
138
+
139
+ runtime?: string;
140
+
141
+ disableHostPrefix?: boolean;
142
+
143
+ maxAttempts?: number | __Provider<number>;
144
+
145
+ retryMode?: string | __Provider<string>;
146
+
147
+ logger?: __Logger;
148
+
149
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
150
+
151
+ useFipsEndpoint?: boolean | __Provider<boolean>;
152
+
153
+ serviceId?: string;
154
+
155
+ region?: string | __Provider<string>;
156
+
157
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
158
+
159
+ regionInfoProvider?: RegionInfoProvider;
160
+
161
+ defaultUserAgentProvider?: Provider<__UserAgent>;
162
+
163
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
164
+ }
165
+ declare type FirehoseClientConfigType = Partial<
166
+ __SmithyConfiguration<__HttpHandlerOptions>
167
+ > &
168
+ ClientDefaults &
169
+ RegionInputConfig &
170
+ EndpointsInputConfig &
171
+ RetryInputConfig &
172
+ HostHeaderInputConfig &
173
+ AwsAuthInputConfig &
174
+ UserAgentInputConfig;
175
+
176
+ export interface FirehoseClientConfig extends FirehoseClientConfigType {}
177
+ declare type FirehoseClientResolvedConfigType =
178
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
179
+ Required<ClientDefaults> &
180
+ RegionResolvedConfig &
181
+ EndpointsResolvedConfig &
182
+ RetryResolvedConfig &
183
+ HostHeaderResolvedConfig &
184
+ AwsAuthResolvedConfig &
185
+ UserAgentResolvedConfig;
186
+
187
+ export interface FirehoseClientResolvedConfig
188
+ extends FirehoseClientResolvedConfigType {}
189
+
190
+ export declare class FirehoseClient extends __Client<
191
+ __HttpHandlerOptions,
192
+ ServiceInputTypes,
193
+ ServiceOutputTypes,
194
+ FirehoseClientResolvedConfig
195
+ > {
196
+ readonly config: FirehoseClientResolvedConfig;
197
+ constructor(configuration: FirehoseClientConfig);
198
+
199
+ destroy(): void;
200
+ }
201
+ export {};
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { CreateDeliveryStreamInput, CreateDeliveryStreamOutput } from "../models/models_0";
5
- export interface CreateDeliveryStreamCommandInput extends CreateDeliveryStreamInput {
6
- }
7
- export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateDeliveryStreamCommand extends $Command<CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: CreateDeliveryStreamCommandInput;
12
- constructor(input: CreateDeliveryStreamCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ CreateDeliveryStreamInput,
15
+ CreateDeliveryStreamOutput,
16
+ } from "../models/models_0";
17
+ export interface CreateDeliveryStreamCommandInput
18
+ extends CreateDeliveryStreamInput {}
19
+ export interface CreateDeliveryStreamCommandOutput
20
+ extends CreateDeliveryStreamOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateDeliveryStreamCommand extends $Command<
24
+ CreateDeliveryStreamCommandInput,
25
+ CreateDeliveryStreamCommandOutput,
26
+ FirehoseClientResolvedConfig
27
+ > {
28
+ readonly input: CreateDeliveryStreamCommandInput;
29
+ constructor(input: CreateDeliveryStreamCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: FirehoseClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateDeliveryStreamCommandInput,
37
+ CreateDeliveryStreamCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }