@aws-sdk/client-kinesis 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/CHANGELOG.md +16 -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,17 +1,37 @@
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 { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
4
- import { SubscribeToShardInput, SubscribeToShardOutput } from "../models/models_0";
5
- export interface SubscribeToShardCommandInput extends SubscribeToShardInput {
6
- }
7
- export interface SubscribeToShardCommandOutput extends SubscribeToShardOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class SubscribeToShardCommand extends $Command<SubscribeToShardCommandInput, SubscribeToShardCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: SubscribeToShardCommandInput;
12
- constructor(input: SubscribeToShardCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SubscribeToShardCommandInput, SubscribeToShardCommandOutput>;
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
+ KinesisClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisClient";
13
+ import {
14
+ SubscribeToShardInput,
15
+ SubscribeToShardOutput,
16
+ } from "../models/models_0";
17
+ export interface SubscribeToShardCommandInput extends SubscribeToShardInput {}
18
+ export interface SubscribeToShardCommandOutput
19
+ extends SubscribeToShardOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class SubscribeToShardCommand extends $Command<
23
+ SubscribeToShardCommandInput,
24
+ SubscribeToShardCommandOutput,
25
+ KinesisClientResolvedConfig
26
+ > {
27
+ readonly input: SubscribeToShardCommandInput;
28
+ constructor(input: SubscribeToShardCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: KinesisClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<SubscribeToShardCommandInput, SubscribeToShardCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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 { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
4
- import { UpdateShardCountInput, UpdateShardCountOutput } from "../models/models_0";
5
- export interface UpdateShardCountCommandInput extends UpdateShardCountInput {
6
- }
7
- export interface UpdateShardCountCommandOutput extends UpdateShardCountOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateShardCountCommand extends $Command<UpdateShardCountCommandInput, UpdateShardCountCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: UpdateShardCountCommandInput;
12
- constructor(input: UpdateShardCountCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateShardCountCommandInput, UpdateShardCountCommandOutput>;
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
+ KinesisClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisClient";
13
+ import {
14
+ UpdateShardCountInput,
15
+ UpdateShardCountOutput,
16
+ } from "../models/models_0";
17
+ export interface UpdateShardCountCommandInput extends UpdateShardCountInput {}
18
+ export interface UpdateShardCountCommandOutput
19
+ extends UpdateShardCountOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateShardCountCommand extends $Command<
23
+ UpdateShardCountCommandInput,
24
+ UpdateShardCountCommandOutput,
25
+ KinesisClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateShardCountCommandInput;
28
+ constructor(input: UpdateShardCountCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: KinesisClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateShardCountCommandInput, UpdateShardCountCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,32 @@
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 { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
4
- import { UpdateStreamModeInput } from "../models/models_0";
5
- export interface UpdateStreamModeCommandInput extends UpdateStreamModeInput {
6
- }
7
- export interface UpdateStreamModeCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateStreamModeCommand extends $Command<UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: UpdateStreamModeCommandInput;
12
- constructor(input: UpdateStreamModeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput>;
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
+ KinesisClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisClient";
13
+ import { UpdateStreamModeInput } from "../models/models_0";
14
+ export interface UpdateStreamModeCommandInput extends UpdateStreamModeInput {}
15
+ export interface UpdateStreamModeCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class UpdateStreamModeCommand extends $Command<
18
+ UpdateStreamModeCommandInput,
19
+ UpdateStreamModeCommandOutput,
20
+ KinesisClientResolvedConfig
21
+ > {
22
+ readonly input: UpdateStreamModeCommandInput;
23
+ constructor(input: UpdateStreamModeCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KinesisClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,29 +1,29 @@
1
- export * from "./AddTagsToStreamCommand";
2
- export * from "./CreateStreamCommand";
3
- export * from "./DecreaseStreamRetentionPeriodCommand";
4
- export * from "./DeleteStreamCommand";
5
- export * from "./DeregisterStreamConsumerCommand";
6
- export * from "./DescribeLimitsCommand";
7
- export * from "./DescribeStreamCommand";
8
- export * from "./DescribeStreamConsumerCommand";
9
- export * from "./DescribeStreamSummaryCommand";
10
- export * from "./DisableEnhancedMonitoringCommand";
11
- export * from "./EnableEnhancedMonitoringCommand";
12
- export * from "./GetRecordsCommand";
13
- export * from "./GetShardIteratorCommand";
14
- export * from "./IncreaseStreamRetentionPeriodCommand";
15
- export * from "./ListShardsCommand";
16
- export * from "./ListStreamConsumersCommand";
17
- export * from "./ListStreamsCommand";
18
- export * from "./ListTagsForStreamCommand";
19
- export * from "./MergeShardsCommand";
20
- export * from "./PutRecordCommand";
21
- export * from "./PutRecordsCommand";
22
- export * from "./RegisterStreamConsumerCommand";
23
- export * from "./RemoveTagsFromStreamCommand";
24
- export * from "./SplitShardCommand";
25
- export * from "./StartStreamEncryptionCommand";
26
- export * from "./StopStreamEncryptionCommand";
27
- export * from "./SubscribeToShardCommand";
28
- export * from "./UpdateShardCountCommand";
29
- export * from "./UpdateStreamModeCommand";
1
+ export * from "./AddTagsToStreamCommand";
2
+ export * from "./CreateStreamCommand";
3
+ export * from "./DecreaseStreamRetentionPeriodCommand";
4
+ export * from "./DeleteStreamCommand";
5
+ export * from "./DeregisterStreamConsumerCommand";
6
+ export * from "./DescribeLimitsCommand";
7
+ export * from "./DescribeStreamCommand";
8
+ export * from "./DescribeStreamConsumerCommand";
9
+ export * from "./DescribeStreamSummaryCommand";
10
+ export * from "./DisableEnhancedMonitoringCommand";
11
+ export * from "./EnableEnhancedMonitoringCommand";
12
+ export * from "./GetRecordsCommand";
13
+ export * from "./GetShardIteratorCommand";
14
+ export * from "./IncreaseStreamRetentionPeriodCommand";
15
+ export * from "./ListShardsCommand";
16
+ export * from "./ListStreamConsumersCommand";
17
+ export * from "./ListStreamsCommand";
18
+ export * from "./ListTagsForStreamCommand";
19
+ export * from "./MergeShardsCommand";
20
+ export * from "./PutRecordCommand";
21
+ export * from "./PutRecordsCommand";
22
+ export * from "./RegisterStreamConsumerCommand";
23
+ export * from "./RemoveTagsFromStreamCommand";
24
+ export * from "./SplitShardCommand";
25
+ export * from "./StartStreamEncryptionCommand";
26
+ export * from "./StopStreamEncryptionCommand";
27
+ export * from "./SubscribeToShardCommand";
28
+ export * from "./UpdateShardCountCommand";
29
+ export * from "./UpdateStreamModeCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,7 +1,7 @@
1
- export * from "./Kinesis";
2
- export * from "./KinesisClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export * from "./waiters";
7
- export { KinesisServiceException } from "./models/KinesisServiceException";
1
+ export * from "./Kinesis";
2
+ export * from "./KinesisClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
7
+ export { KinesisServiceException } from "./models/KinesisServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class KinesisServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class KinesisServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";