@aws-sdk/client-kinesis 3.169.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Kinesis.d.ts +526 -150
- package/dist-types/ts3.4/KinesisClient.d.ts +312 -105
- package/dist-types/ts3.4/commands/AddTagsToStreamCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateStreamCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DecreaseStreamRetentionPeriodCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteStreamCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeregisterStreamConsumerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeStreamConsumerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeStreamSummaryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisableEnhancedMonitoringCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/EnableEnhancedMonitoringCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/IncreaseStreamRetentionPeriodCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListShardsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListStreamConsumersCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForStreamCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/MergeShardsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutRecordsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/RegisterStreamConsumerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromStreamCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/SplitShardCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartStreamEncryptionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StopStreamEncryptionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/SubscribeToShardCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateShardCountCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateStreamModeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +29 -29
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/KinesisServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1073 -982
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListStreamConsumersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +356 -89
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -39
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -39
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForStreamExists.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForStreamNotExists.d.ts +13 -7
- package/package.json +38 -38
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Kinesis } from "../Kinesis";
|
|
3
|
-
import { KinesisClient } from "../KinesisClient";
|
|
4
|
-
export interface KinesisPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { Kinesis } from "../Kinesis";
|
|
3
|
+
import { KinesisClient } from "../KinesisClient";
|
|
4
|
+
export interface KinesisPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: Kinesis | KinesisClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListStreamConsumersCommandInput,
|
|
4
|
+
ListStreamConsumersCommandOutput,
|
|
5
|
+
} from "../commands/ListStreamConsumersCommand";
|
|
6
|
+
import { KinesisPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListStreamConsumers(
|
|
8
|
+
config: KinesisPaginationConfiguration,
|
|
9
|
+
input: ListStreamConsumersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListStreamConsumersCommandOutput>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListStreamConsumersPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListStreamConsumersPaginator";
|
|
@@ -1,89 +1,356 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
import {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
import {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
import {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
import {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
import {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import {
|
|
6
|
+
EventStreamSerdeContext as __EventStreamSerdeContext,
|
|
7
|
+
SerdeContext as __SerdeContext,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AddTagsToStreamCommandInput,
|
|
11
|
+
AddTagsToStreamCommandOutput,
|
|
12
|
+
} from "../commands/AddTagsToStreamCommand";
|
|
13
|
+
import {
|
|
14
|
+
CreateStreamCommandInput,
|
|
15
|
+
CreateStreamCommandOutput,
|
|
16
|
+
} from "../commands/CreateStreamCommand";
|
|
17
|
+
import {
|
|
18
|
+
DecreaseStreamRetentionPeriodCommandInput,
|
|
19
|
+
DecreaseStreamRetentionPeriodCommandOutput,
|
|
20
|
+
} from "../commands/DecreaseStreamRetentionPeriodCommand";
|
|
21
|
+
import {
|
|
22
|
+
DeleteStreamCommandInput,
|
|
23
|
+
DeleteStreamCommandOutput,
|
|
24
|
+
} from "../commands/DeleteStreamCommand";
|
|
25
|
+
import {
|
|
26
|
+
DeregisterStreamConsumerCommandInput,
|
|
27
|
+
DeregisterStreamConsumerCommandOutput,
|
|
28
|
+
} from "../commands/DeregisterStreamConsumerCommand";
|
|
29
|
+
import {
|
|
30
|
+
DescribeLimitsCommandInput,
|
|
31
|
+
DescribeLimitsCommandOutput,
|
|
32
|
+
} from "../commands/DescribeLimitsCommand";
|
|
33
|
+
import {
|
|
34
|
+
DescribeStreamCommandInput,
|
|
35
|
+
DescribeStreamCommandOutput,
|
|
36
|
+
} from "../commands/DescribeStreamCommand";
|
|
37
|
+
import {
|
|
38
|
+
DescribeStreamConsumerCommandInput,
|
|
39
|
+
DescribeStreamConsumerCommandOutput,
|
|
40
|
+
} from "../commands/DescribeStreamConsumerCommand";
|
|
41
|
+
import {
|
|
42
|
+
DescribeStreamSummaryCommandInput,
|
|
43
|
+
DescribeStreamSummaryCommandOutput,
|
|
44
|
+
} from "../commands/DescribeStreamSummaryCommand";
|
|
45
|
+
import {
|
|
46
|
+
DisableEnhancedMonitoringCommandInput,
|
|
47
|
+
DisableEnhancedMonitoringCommandOutput,
|
|
48
|
+
} from "../commands/DisableEnhancedMonitoringCommand";
|
|
49
|
+
import {
|
|
50
|
+
EnableEnhancedMonitoringCommandInput,
|
|
51
|
+
EnableEnhancedMonitoringCommandOutput,
|
|
52
|
+
} from "../commands/EnableEnhancedMonitoringCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetRecordsCommandInput,
|
|
55
|
+
GetRecordsCommandOutput,
|
|
56
|
+
} from "../commands/GetRecordsCommand";
|
|
57
|
+
import {
|
|
58
|
+
GetShardIteratorCommandInput,
|
|
59
|
+
GetShardIteratorCommandOutput,
|
|
60
|
+
} from "../commands/GetShardIteratorCommand";
|
|
61
|
+
import {
|
|
62
|
+
IncreaseStreamRetentionPeriodCommandInput,
|
|
63
|
+
IncreaseStreamRetentionPeriodCommandOutput,
|
|
64
|
+
} from "../commands/IncreaseStreamRetentionPeriodCommand";
|
|
65
|
+
import {
|
|
66
|
+
ListShardsCommandInput,
|
|
67
|
+
ListShardsCommandOutput,
|
|
68
|
+
} from "../commands/ListShardsCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListStreamConsumersCommandInput,
|
|
71
|
+
ListStreamConsumersCommandOutput,
|
|
72
|
+
} from "../commands/ListStreamConsumersCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListStreamsCommandInput,
|
|
75
|
+
ListStreamsCommandOutput,
|
|
76
|
+
} from "../commands/ListStreamsCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListTagsForStreamCommandInput,
|
|
79
|
+
ListTagsForStreamCommandOutput,
|
|
80
|
+
} from "../commands/ListTagsForStreamCommand";
|
|
81
|
+
import {
|
|
82
|
+
MergeShardsCommandInput,
|
|
83
|
+
MergeShardsCommandOutput,
|
|
84
|
+
} from "../commands/MergeShardsCommand";
|
|
85
|
+
import {
|
|
86
|
+
PutRecordCommandInput,
|
|
87
|
+
PutRecordCommandOutput,
|
|
88
|
+
} from "../commands/PutRecordCommand";
|
|
89
|
+
import {
|
|
90
|
+
PutRecordsCommandInput,
|
|
91
|
+
PutRecordsCommandOutput,
|
|
92
|
+
} from "../commands/PutRecordsCommand";
|
|
93
|
+
import {
|
|
94
|
+
RegisterStreamConsumerCommandInput,
|
|
95
|
+
RegisterStreamConsumerCommandOutput,
|
|
96
|
+
} from "../commands/RegisterStreamConsumerCommand";
|
|
97
|
+
import {
|
|
98
|
+
RemoveTagsFromStreamCommandInput,
|
|
99
|
+
RemoveTagsFromStreamCommandOutput,
|
|
100
|
+
} from "../commands/RemoveTagsFromStreamCommand";
|
|
101
|
+
import {
|
|
102
|
+
SplitShardCommandInput,
|
|
103
|
+
SplitShardCommandOutput,
|
|
104
|
+
} from "../commands/SplitShardCommand";
|
|
105
|
+
import {
|
|
106
|
+
StartStreamEncryptionCommandInput,
|
|
107
|
+
StartStreamEncryptionCommandOutput,
|
|
108
|
+
} from "../commands/StartStreamEncryptionCommand";
|
|
109
|
+
import {
|
|
110
|
+
StopStreamEncryptionCommandInput,
|
|
111
|
+
StopStreamEncryptionCommandOutput,
|
|
112
|
+
} from "../commands/StopStreamEncryptionCommand";
|
|
113
|
+
import {
|
|
114
|
+
SubscribeToShardCommandInput,
|
|
115
|
+
SubscribeToShardCommandOutput,
|
|
116
|
+
} from "../commands/SubscribeToShardCommand";
|
|
117
|
+
import {
|
|
118
|
+
UpdateShardCountCommandInput,
|
|
119
|
+
UpdateShardCountCommandOutput,
|
|
120
|
+
} from "../commands/UpdateShardCountCommand";
|
|
121
|
+
import {
|
|
122
|
+
UpdateStreamModeCommandInput,
|
|
123
|
+
UpdateStreamModeCommandOutput,
|
|
124
|
+
} from "../commands/UpdateStreamModeCommand";
|
|
125
|
+
export declare const serializeAws_json1_1AddTagsToStreamCommand: (
|
|
126
|
+
input: AddTagsToStreamCommandInput,
|
|
127
|
+
context: __SerdeContext
|
|
128
|
+
) => Promise<__HttpRequest>;
|
|
129
|
+
export declare const serializeAws_json1_1CreateStreamCommand: (
|
|
130
|
+
input: CreateStreamCommandInput,
|
|
131
|
+
context: __SerdeContext
|
|
132
|
+
) => Promise<__HttpRequest>;
|
|
133
|
+
export declare const serializeAws_json1_1DecreaseStreamRetentionPeriodCommand: (
|
|
134
|
+
input: DecreaseStreamRetentionPeriodCommandInput,
|
|
135
|
+
context: __SerdeContext
|
|
136
|
+
) => Promise<__HttpRequest>;
|
|
137
|
+
export declare const serializeAws_json1_1DeleteStreamCommand: (
|
|
138
|
+
input: DeleteStreamCommandInput,
|
|
139
|
+
context: __SerdeContext
|
|
140
|
+
) => Promise<__HttpRequest>;
|
|
141
|
+
export declare const serializeAws_json1_1DeregisterStreamConsumerCommand: (
|
|
142
|
+
input: DeregisterStreamConsumerCommandInput,
|
|
143
|
+
context: __SerdeContext
|
|
144
|
+
) => Promise<__HttpRequest>;
|
|
145
|
+
export declare const serializeAws_json1_1DescribeLimitsCommand: (
|
|
146
|
+
input: DescribeLimitsCommandInput,
|
|
147
|
+
context: __SerdeContext
|
|
148
|
+
) => Promise<__HttpRequest>;
|
|
149
|
+
export declare const serializeAws_json1_1DescribeStreamCommand: (
|
|
150
|
+
input: DescribeStreamCommandInput,
|
|
151
|
+
context: __SerdeContext
|
|
152
|
+
) => Promise<__HttpRequest>;
|
|
153
|
+
export declare const serializeAws_json1_1DescribeStreamConsumerCommand: (
|
|
154
|
+
input: DescribeStreamConsumerCommandInput,
|
|
155
|
+
context: __SerdeContext
|
|
156
|
+
) => Promise<__HttpRequest>;
|
|
157
|
+
export declare const serializeAws_json1_1DescribeStreamSummaryCommand: (
|
|
158
|
+
input: DescribeStreamSummaryCommandInput,
|
|
159
|
+
context: __SerdeContext
|
|
160
|
+
) => Promise<__HttpRequest>;
|
|
161
|
+
export declare const serializeAws_json1_1DisableEnhancedMonitoringCommand: (
|
|
162
|
+
input: DisableEnhancedMonitoringCommandInput,
|
|
163
|
+
context: __SerdeContext
|
|
164
|
+
) => Promise<__HttpRequest>;
|
|
165
|
+
export declare const serializeAws_json1_1EnableEnhancedMonitoringCommand: (
|
|
166
|
+
input: EnableEnhancedMonitoringCommandInput,
|
|
167
|
+
context: __SerdeContext
|
|
168
|
+
) => Promise<__HttpRequest>;
|
|
169
|
+
export declare const serializeAws_json1_1GetRecordsCommand: (
|
|
170
|
+
input: GetRecordsCommandInput,
|
|
171
|
+
context: __SerdeContext
|
|
172
|
+
) => Promise<__HttpRequest>;
|
|
173
|
+
export declare const serializeAws_json1_1GetShardIteratorCommand: (
|
|
174
|
+
input: GetShardIteratorCommandInput,
|
|
175
|
+
context: __SerdeContext
|
|
176
|
+
) => Promise<__HttpRequest>;
|
|
177
|
+
export declare const serializeAws_json1_1IncreaseStreamRetentionPeriodCommand: (
|
|
178
|
+
input: IncreaseStreamRetentionPeriodCommandInput,
|
|
179
|
+
context: __SerdeContext
|
|
180
|
+
) => Promise<__HttpRequest>;
|
|
181
|
+
export declare const serializeAws_json1_1ListShardsCommand: (
|
|
182
|
+
input: ListShardsCommandInput,
|
|
183
|
+
context: __SerdeContext
|
|
184
|
+
) => Promise<__HttpRequest>;
|
|
185
|
+
export declare const serializeAws_json1_1ListStreamConsumersCommand: (
|
|
186
|
+
input: ListStreamConsumersCommandInput,
|
|
187
|
+
context: __SerdeContext
|
|
188
|
+
) => Promise<__HttpRequest>;
|
|
189
|
+
export declare const serializeAws_json1_1ListStreamsCommand: (
|
|
190
|
+
input: ListStreamsCommandInput,
|
|
191
|
+
context: __SerdeContext
|
|
192
|
+
) => Promise<__HttpRequest>;
|
|
193
|
+
export declare const serializeAws_json1_1ListTagsForStreamCommand: (
|
|
194
|
+
input: ListTagsForStreamCommandInput,
|
|
195
|
+
context: __SerdeContext
|
|
196
|
+
) => Promise<__HttpRequest>;
|
|
197
|
+
export declare const serializeAws_json1_1MergeShardsCommand: (
|
|
198
|
+
input: MergeShardsCommandInput,
|
|
199
|
+
context: __SerdeContext
|
|
200
|
+
) => Promise<__HttpRequest>;
|
|
201
|
+
export declare const serializeAws_json1_1PutRecordCommand: (
|
|
202
|
+
input: PutRecordCommandInput,
|
|
203
|
+
context: __SerdeContext
|
|
204
|
+
) => Promise<__HttpRequest>;
|
|
205
|
+
export declare const serializeAws_json1_1PutRecordsCommand: (
|
|
206
|
+
input: PutRecordsCommandInput,
|
|
207
|
+
context: __SerdeContext
|
|
208
|
+
) => Promise<__HttpRequest>;
|
|
209
|
+
export declare const serializeAws_json1_1RegisterStreamConsumerCommand: (
|
|
210
|
+
input: RegisterStreamConsumerCommandInput,
|
|
211
|
+
context: __SerdeContext
|
|
212
|
+
) => Promise<__HttpRequest>;
|
|
213
|
+
export declare const serializeAws_json1_1RemoveTagsFromStreamCommand: (
|
|
214
|
+
input: RemoveTagsFromStreamCommandInput,
|
|
215
|
+
context: __SerdeContext
|
|
216
|
+
) => Promise<__HttpRequest>;
|
|
217
|
+
export declare const serializeAws_json1_1SplitShardCommand: (
|
|
218
|
+
input: SplitShardCommandInput,
|
|
219
|
+
context: __SerdeContext
|
|
220
|
+
) => Promise<__HttpRequest>;
|
|
221
|
+
export declare const serializeAws_json1_1StartStreamEncryptionCommand: (
|
|
222
|
+
input: StartStreamEncryptionCommandInput,
|
|
223
|
+
context: __SerdeContext
|
|
224
|
+
) => Promise<__HttpRequest>;
|
|
225
|
+
export declare const serializeAws_json1_1StopStreamEncryptionCommand: (
|
|
226
|
+
input: StopStreamEncryptionCommandInput,
|
|
227
|
+
context: __SerdeContext
|
|
228
|
+
) => Promise<__HttpRequest>;
|
|
229
|
+
export declare const serializeAws_json1_1SubscribeToShardCommand: (
|
|
230
|
+
input: SubscribeToShardCommandInput,
|
|
231
|
+
context: __SerdeContext
|
|
232
|
+
) => Promise<__HttpRequest>;
|
|
233
|
+
export declare const serializeAws_json1_1UpdateShardCountCommand: (
|
|
234
|
+
input: UpdateShardCountCommandInput,
|
|
235
|
+
context: __SerdeContext
|
|
236
|
+
) => Promise<__HttpRequest>;
|
|
237
|
+
export declare const serializeAws_json1_1UpdateStreamModeCommand: (
|
|
238
|
+
input: UpdateStreamModeCommandInput,
|
|
239
|
+
context: __SerdeContext
|
|
240
|
+
) => Promise<__HttpRequest>;
|
|
241
|
+
export declare const deserializeAws_json1_1AddTagsToStreamCommand: (
|
|
242
|
+
output: __HttpResponse,
|
|
243
|
+
context: __SerdeContext
|
|
244
|
+
) => Promise<AddTagsToStreamCommandOutput>;
|
|
245
|
+
export declare const deserializeAws_json1_1CreateStreamCommand: (
|
|
246
|
+
output: __HttpResponse,
|
|
247
|
+
context: __SerdeContext
|
|
248
|
+
) => Promise<CreateStreamCommandOutput>;
|
|
249
|
+
export declare const deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand: (
|
|
250
|
+
output: __HttpResponse,
|
|
251
|
+
context: __SerdeContext
|
|
252
|
+
) => Promise<DecreaseStreamRetentionPeriodCommandOutput>;
|
|
253
|
+
export declare const deserializeAws_json1_1DeleteStreamCommand: (
|
|
254
|
+
output: __HttpResponse,
|
|
255
|
+
context: __SerdeContext
|
|
256
|
+
) => Promise<DeleteStreamCommandOutput>;
|
|
257
|
+
export declare const deserializeAws_json1_1DeregisterStreamConsumerCommand: (
|
|
258
|
+
output: __HttpResponse,
|
|
259
|
+
context: __SerdeContext
|
|
260
|
+
) => Promise<DeregisterStreamConsumerCommandOutput>;
|
|
261
|
+
export declare const deserializeAws_json1_1DescribeLimitsCommand: (
|
|
262
|
+
output: __HttpResponse,
|
|
263
|
+
context: __SerdeContext
|
|
264
|
+
) => Promise<DescribeLimitsCommandOutput>;
|
|
265
|
+
export declare const deserializeAws_json1_1DescribeStreamCommand: (
|
|
266
|
+
output: __HttpResponse,
|
|
267
|
+
context: __SerdeContext
|
|
268
|
+
) => Promise<DescribeStreamCommandOutput>;
|
|
269
|
+
export declare const deserializeAws_json1_1DescribeStreamConsumerCommand: (
|
|
270
|
+
output: __HttpResponse,
|
|
271
|
+
context: __SerdeContext
|
|
272
|
+
) => Promise<DescribeStreamConsumerCommandOutput>;
|
|
273
|
+
export declare const deserializeAws_json1_1DescribeStreamSummaryCommand: (
|
|
274
|
+
output: __HttpResponse,
|
|
275
|
+
context: __SerdeContext
|
|
276
|
+
) => Promise<DescribeStreamSummaryCommandOutput>;
|
|
277
|
+
export declare const deserializeAws_json1_1DisableEnhancedMonitoringCommand: (
|
|
278
|
+
output: __HttpResponse,
|
|
279
|
+
context: __SerdeContext
|
|
280
|
+
) => Promise<DisableEnhancedMonitoringCommandOutput>;
|
|
281
|
+
export declare const deserializeAws_json1_1EnableEnhancedMonitoringCommand: (
|
|
282
|
+
output: __HttpResponse,
|
|
283
|
+
context: __SerdeContext
|
|
284
|
+
) => Promise<EnableEnhancedMonitoringCommandOutput>;
|
|
285
|
+
export declare const deserializeAws_json1_1GetRecordsCommand: (
|
|
286
|
+
output: __HttpResponse,
|
|
287
|
+
context: __SerdeContext
|
|
288
|
+
) => Promise<GetRecordsCommandOutput>;
|
|
289
|
+
export declare const deserializeAws_json1_1GetShardIteratorCommand: (
|
|
290
|
+
output: __HttpResponse,
|
|
291
|
+
context: __SerdeContext
|
|
292
|
+
) => Promise<GetShardIteratorCommandOutput>;
|
|
293
|
+
export declare const deserializeAws_json1_1IncreaseStreamRetentionPeriodCommand: (
|
|
294
|
+
output: __HttpResponse,
|
|
295
|
+
context: __SerdeContext
|
|
296
|
+
) => Promise<IncreaseStreamRetentionPeriodCommandOutput>;
|
|
297
|
+
export declare const deserializeAws_json1_1ListShardsCommand: (
|
|
298
|
+
output: __HttpResponse,
|
|
299
|
+
context: __SerdeContext
|
|
300
|
+
) => Promise<ListShardsCommandOutput>;
|
|
301
|
+
export declare const deserializeAws_json1_1ListStreamConsumersCommand: (
|
|
302
|
+
output: __HttpResponse,
|
|
303
|
+
context: __SerdeContext
|
|
304
|
+
) => Promise<ListStreamConsumersCommandOutput>;
|
|
305
|
+
export declare const deserializeAws_json1_1ListStreamsCommand: (
|
|
306
|
+
output: __HttpResponse,
|
|
307
|
+
context: __SerdeContext
|
|
308
|
+
) => Promise<ListStreamsCommandOutput>;
|
|
309
|
+
export declare const deserializeAws_json1_1ListTagsForStreamCommand: (
|
|
310
|
+
output: __HttpResponse,
|
|
311
|
+
context: __SerdeContext
|
|
312
|
+
) => Promise<ListTagsForStreamCommandOutput>;
|
|
313
|
+
export declare const deserializeAws_json1_1MergeShardsCommand: (
|
|
314
|
+
output: __HttpResponse,
|
|
315
|
+
context: __SerdeContext
|
|
316
|
+
) => Promise<MergeShardsCommandOutput>;
|
|
317
|
+
export declare const deserializeAws_json1_1PutRecordCommand: (
|
|
318
|
+
output: __HttpResponse,
|
|
319
|
+
context: __SerdeContext
|
|
320
|
+
) => Promise<PutRecordCommandOutput>;
|
|
321
|
+
export declare const deserializeAws_json1_1PutRecordsCommand: (
|
|
322
|
+
output: __HttpResponse,
|
|
323
|
+
context: __SerdeContext
|
|
324
|
+
) => Promise<PutRecordsCommandOutput>;
|
|
325
|
+
export declare const deserializeAws_json1_1RegisterStreamConsumerCommand: (
|
|
326
|
+
output: __HttpResponse,
|
|
327
|
+
context: __SerdeContext
|
|
328
|
+
) => Promise<RegisterStreamConsumerCommandOutput>;
|
|
329
|
+
export declare const deserializeAws_json1_1RemoveTagsFromStreamCommand: (
|
|
330
|
+
output: __HttpResponse,
|
|
331
|
+
context: __SerdeContext
|
|
332
|
+
) => Promise<RemoveTagsFromStreamCommandOutput>;
|
|
333
|
+
export declare const deserializeAws_json1_1SplitShardCommand: (
|
|
334
|
+
output: __HttpResponse,
|
|
335
|
+
context: __SerdeContext
|
|
336
|
+
) => Promise<SplitShardCommandOutput>;
|
|
337
|
+
export declare const deserializeAws_json1_1StartStreamEncryptionCommand: (
|
|
338
|
+
output: __HttpResponse,
|
|
339
|
+
context: __SerdeContext
|
|
340
|
+
) => Promise<StartStreamEncryptionCommandOutput>;
|
|
341
|
+
export declare const deserializeAws_json1_1StopStreamEncryptionCommand: (
|
|
342
|
+
output: __HttpResponse,
|
|
343
|
+
context: __SerdeContext
|
|
344
|
+
) => Promise<StopStreamEncryptionCommandOutput>;
|
|
345
|
+
export declare const deserializeAws_json1_1SubscribeToShardCommand: (
|
|
346
|
+
output: __HttpResponse,
|
|
347
|
+
context: __SerdeContext & __EventStreamSerdeContext
|
|
348
|
+
) => Promise<SubscribeToShardCommandOutput>;
|
|
349
|
+
export declare const deserializeAws_json1_1UpdateShardCountCommand: (
|
|
350
|
+
output: __HttpResponse,
|
|
351
|
+
context: __SerdeContext
|
|
352
|
+
) => Promise<UpdateShardCountCommandOutput>;
|
|
353
|
+
export declare const deserializeAws_json1_1UpdateStreamModeCommand: (
|
|
354
|
+
output: __HttpResponse,
|
|
355
|
+
context: __SerdeContext
|
|
356
|
+
) => Promise<UpdateStreamModeCommandOutput>;
|
|
@@ -1,39 +1,67 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { KinesisClientConfig } from "./KinesisClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { KinesisClientConfig } from "./KinesisClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|