@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.
Files changed (50) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Kinesis.d.ts +526 -150
  3. package/dist-types/ts3.4/KinesisClient.d.ts +312 -105
  4. package/dist-types/ts3.4/commands/AddTagsToStreamCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateStreamCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DecreaseStreamRetentionPeriodCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/DeleteStreamCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeregisterStreamConsumerCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DescribeStreamConsumerCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeStreamSummaryCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DisableEnhancedMonitoringCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/EnableEnhancedMonitoringCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/IncreaseStreamRetentionPeriodCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/ListShardsCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/ListStreamConsumersCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListTagsForStreamCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/MergeShardsCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/PutRecordsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/RegisterStreamConsumerCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/RemoveTagsFromStreamCommand.d.ts +36 -17
  27. package/dist-types/ts3.4/commands/SplitShardCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/StartStreamEncryptionCommand.d.ts +36 -17
  29. package/dist-types/ts3.4/commands/StopStreamEncryptionCommand.d.ts +36 -17
  30. package/dist-types/ts3.4/commands/SubscribeToShardCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/UpdateShardCountCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/UpdateStreamModeCommand.d.ts +32 -17
  33. package/dist-types/ts3.4/commands/index.d.ts +29 -29
  34. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  35. package/dist-types/ts3.4/index.d.ts +7 -7
  36. package/dist-types/ts3.4/models/KinesisServiceException.d.ts +8 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +1073 -982
  39. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  40. package/dist-types/ts3.4/pagination/ListStreamConsumersPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  42. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +356 -89
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -39
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -39
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -38
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  47. package/dist-types/ts3.4/waiters/index.d.ts +2 -2
  48. package/dist-types/ts3.4/waiters/waitForStreamExists.d.ts +13 -7
  49. package/dist-types/ts3.4/waiters/waitForStreamNotExists.d.ts +13 -7
  50. 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 extends PaginationConfiguration {
5
- client: Kinesis | KinesisClient;
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 { ListStreamConsumersCommandInput, ListStreamConsumersCommandOutput } from "../commands/ListStreamConsumersCommand";
3
- import { KinesisPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListStreamConsumers(config: KinesisPaginationConfiguration, input: ListStreamConsumersCommandInput, ...additionalArguments: any): Paginator<ListStreamConsumersCommandOutput>;
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 { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { EventStreamSerdeContext as __EventStreamSerdeContext, SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { AddTagsToStreamCommandInput, AddTagsToStreamCommandOutput } from "../commands/AddTagsToStreamCommand";
4
- import { CreateStreamCommandInput, CreateStreamCommandOutput } from "../commands/CreateStreamCommand";
5
- import { DecreaseStreamRetentionPeriodCommandInput, DecreaseStreamRetentionPeriodCommandOutput } from "../commands/DecreaseStreamRetentionPeriodCommand";
6
- import { DeleteStreamCommandInput, DeleteStreamCommandOutput } from "../commands/DeleteStreamCommand";
7
- import { DeregisterStreamConsumerCommandInput, DeregisterStreamConsumerCommandOutput } from "../commands/DeregisterStreamConsumerCommand";
8
- import { DescribeLimitsCommandInput, DescribeLimitsCommandOutput } from "../commands/DescribeLimitsCommand";
9
- import { DescribeStreamCommandInput, DescribeStreamCommandOutput } from "../commands/DescribeStreamCommand";
10
- import { DescribeStreamConsumerCommandInput, DescribeStreamConsumerCommandOutput } from "../commands/DescribeStreamConsumerCommand";
11
- import { DescribeStreamSummaryCommandInput, DescribeStreamSummaryCommandOutput } from "../commands/DescribeStreamSummaryCommand";
12
- import { DisableEnhancedMonitoringCommandInput, DisableEnhancedMonitoringCommandOutput } from "../commands/DisableEnhancedMonitoringCommand";
13
- import { EnableEnhancedMonitoringCommandInput, EnableEnhancedMonitoringCommandOutput } from "../commands/EnableEnhancedMonitoringCommand";
14
- import { GetRecordsCommandInput, GetRecordsCommandOutput } from "../commands/GetRecordsCommand";
15
- import { GetShardIteratorCommandInput, GetShardIteratorCommandOutput } from "../commands/GetShardIteratorCommand";
16
- import { IncreaseStreamRetentionPeriodCommandInput, IncreaseStreamRetentionPeriodCommandOutput } from "../commands/IncreaseStreamRetentionPeriodCommand";
17
- import { ListShardsCommandInput, ListShardsCommandOutput } from "../commands/ListShardsCommand";
18
- import { ListStreamConsumersCommandInput, ListStreamConsumersCommandOutput } from "../commands/ListStreamConsumersCommand";
19
- import { ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand";
20
- import { ListTagsForStreamCommandInput, ListTagsForStreamCommandOutput } from "../commands/ListTagsForStreamCommand";
21
- import { MergeShardsCommandInput, MergeShardsCommandOutput } from "../commands/MergeShardsCommand";
22
- import { PutRecordCommandInput, PutRecordCommandOutput } from "../commands/PutRecordCommand";
23
- import { PutRecordsCommandInput, PutRecordsCommandOutput } from "../commands/PutRecordsCommand";
24
- import { RegisterStreamConsumerCommandInput, RegisterStreamConsumerCommandOutput } from "../commands/RegisterStreamConsumerCommand";
25
- import { RemoveTagsFromStreamCommandInput, RemoveTagsFromStreamCommandOutput } from "../commands/RemoveTagsFromStreamCommand";
26
- import { SplitShardCommandInput, SplitShardCommandOutput } from "../commands/SplitShardCommand";
27
- import { StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput } from "../commands/StartStreamEncryptionCommand";
28
- import { StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput } from "../commands/StopStreamEncryptionCommand";
29
- import { SubscribeToShardCommandInput, SubscribeToShardCommandOutput } from "../commands/SubscribeToShardCommand";
30
- import { UpdateShardCountCommandInput, UpdateShardCountCommandOutput } from "../commands/UpdateShardCountCommand";
31
- import { UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput } from "../commands/UpdateStreamModeCommand";
32
- export declare const serializeAws_json1_1AddTagsToStreamCommand: (input: AddTagsToStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_json1_1CreateStreamCommand: (input: CreateStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_json1_1DecreaseStreamRetentionPeriodCommand: (input: DecreaseStreamRetentionPeriodCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_json1_1DeleteStreamCommand: (input: DeleteStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_json1_1DeregisterStreamConsumerCommand: (input: DeregisterStreamConsumerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_json1_1DescribeLimitsCommand: (input: DescribeLimitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_json1_1DescribeStreamCommand: (input: DescribeStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_json1_1DescribeStreamConsumerCommand: (input: DescribeStreamConsumerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_json1_1DescribeStreamSummaryCommand: (input: DescribeStreamSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_json1_1DisableEnhancedMonitoringCommand: (input: DisableEnhancedMonitoringCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_json1_1EnableEnhancedMonitoringCommand: (input: EnableEnhancedMonitoringCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_json1_1GetRecordsCommand: (input: GetRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_json1_1GetShardIteratorCommand: (input: GetShardIteratorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_json1_1IncreaseStreamRetentionPeriodCommand: (input: IncreaseStreamRetentionPeriodCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_json1_1ListShardsCommand: (input: ListShardsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_json1_1ListStreamConsumersCommand: (input: ListStreamConsumersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_json1_1ListStreamsCommand: (input: ListStreamsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_json1_1ListTagsForStreamCommand: (input: ListTagsForStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_json1_1MergeShardsCommand: (input: MergeShardsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_json1_1PutRecordCommand: (input: PutRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_json1_1PutRecordsCommand: (input: PutRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_json1_1RegisterStreamConsumerCommand: (input: RegisterStreamConsumerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_json1_1RemoveTagsFromStreamCommand: (input: RemoveTagsFromStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_json1_1SplitShardCommand: (input: SplitShardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_json1_1StartStreamEncryptionCommand: (input: StartStreamEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const serializeAws_json1_1StopStreamEncryptionCommand: (input: StopStreamEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- export declare const serializeAws_json1_1SubscribeToShardCommand: (input: SubscribeToShardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
- export declare const serializeAws_json1_1UpdateShardCountCommand: (input: UpdateShardCountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
- export declare const serializeAws_json1_1UpdateStreamModeCommand: (input: UpdateStreamModeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
- export declare const deserializeAws_json1_1AddTagsToStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddTagsToStreamCommandOutput>;
62
- export declare const deserializeAws_json1_1CreateStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamCommandOutput>;
63
- export declare const deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DecreaseStreamRetentionPeriodCommandOutput>;
64
- export declare const deserializeAws_json1_1DeleteStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStreamCommandOutput>;
65
- export declare const deserializeAws_json1_1DeregisterStreamConsumerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterStreamConsumerCommandOutput>;
66
- export declare const deserializeAws_json1_1DescribeLimitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLimitsCommandOutput>;
67
- export declare const deserializeAws_json1_1DescribeStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStreamCommandOutput>;
68
- export declare const deserializeAws_json1_1DescribeStreamConsumerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStreamConsumerCommandOutput>;
69
- export declare const deserializeAws_json1_1DescribeStreamSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStreamSummaryCommandOutput>;
70
- export declare const deserializeAws_json1_1DisableEnhancedMonitoringCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableEnhancedMonitoringCommandOutput>;
71
- export declare const deserializeAws_json1_1EnableEnhancedMonitoringCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableEnhancedMonitoringCommandOutput>;
72
- export declare const deserializeAws_json1_1GetRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecordsCommandOutput>;
73
- export declare const deserializeAws_json1_1GetShardIteratorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetShardIteratorCommandOutput>;
74
- export declare const deserializeAws_json1_1IncreaseStreamRetentionPeriodCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IncreaseStreamRetentionPeriodCommandOutput>;
75
- export declare const deserializeAws_json1_1ListShardsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListShardsCommandOutput>;
76
- export declare const deserializeAws_json1_1ListStreamConsumersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamConsumersCommandOutput>;
77
- export declare const deserializeAws_json1_1ListStreamsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamsCommandOutput>;
78
- export declare const deserializeAws_json1_1ListTagsForStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForStreamCommandOutput>;
79
- export declare const deserializeAws_json1_1MergeShardsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<MergeShardsCommandOutput>;
80
- export declare const deserializeAws_json1_1PutRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRecordCommandOutput>;
81
- export declare const deserializeAws_json1_1PutRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRecordsCommandOutput>;
82
- export declare const deserializeAws_json1_1RegisterStreamConsumerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterStreamConsumerCommandOutput>;
83
- export declare const deserializeAws_json1_1RemoveTagsFromStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveTagsFromStreamCommandOutput>;
84
- export declare const deserializeAws_json1_1SplitShardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SplitShardCommandOutput>;
85
- export declare const deserializeAws_json1_1StartStreamEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartStreamEncryptionCommandOutput>;
86
- export declare const deserializeAws_json1_1StopStreamEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopStreamEncryptionCommandOutput>;
87
- export declare const deserializeAws_json1_1SubscribeToShardCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise<SubscribeToShardCommandOutput>;
88
- export declare const deserializeAws_json1_1UpdateShardCountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateShardCountCommandOutput>;
89
- export declare const deserializeAws_json1_1UpdateStreamModeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStreamModeCommandOutput>;
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
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
13
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
- region: string | import("@aws-sdk/types").Provider<any>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
- retryMode: string | import("@aws-sdk/types").Provider<string>;
17
- sha256: import("@aws-sdk/types").HashConstructor;
18
- streamCollector: import("@aws-sdk/types").StreamCollector;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- utf8Decoder: import("@aws-sdk/types").Decoder;
22
- utf8Encoder: import("@aws-sdk/types").Encoder;
23
- apiVersion: string;
24
- urlParser: import("@aws-sdk/types").UrlParser;
25
- disableHostPrefix: boolean;
26
- logger: import("@aws-sdk/types").Logger;
27
- serviceId: string;
28
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
29
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
30
- tls?: boolean | undefined;
31
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
- signingEscapePath?: boolean | undefined;
35
- systemClockOffset?: number | undefined;
36
- signingRegion?: string | undefined;
37
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
38
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
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
+ };