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