@aws-sdk/client-kinesis 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 (50) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Kinesis.d.ts +497 -150
  3. package/dist-types/ts3.4/KinesisClient.d.ts +286 -105
  4. package/dist-types/ts3.4/commands/AddTagsToStreamCommand.d.ts +30 -17
  5. package/dist-types/ts3.4/commands/CreateStreamCommand.d.ts +30 -17
  6. package/dist-types/ts3.4/commands/DecreaseStreamRetentionPeriodCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DeleteStreamCommand.d.ts +30 -17
  8. package/dist-types/ts3.4/commands/DeregisterStreamConsumerCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DescribeStreamConsumerCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeStreamSummaryCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DisableEnhancedMonitoringCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/EnableEnhancedMonitoringCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/IncreaseStreamRetentionPeriodCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/ListShardsCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/ListStreamConsumersCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/ListTagsForStreamCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/MergeShardsCommand.d.ts +30 -17
  23. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/PutRecordsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/RegisterStreamConsumerCommand.d.ts +39 -17
  26. package/dist-types/ts3.4/commands/RemoveTagsFromStreamCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/SplitShardCommand.d.ts +30 -17
  28. package/dist-types/ts3.4/commands/StartStreamEncryptionCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/StopStreamEncryptionCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/SubscribeToShardCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/UpdateShardCountCommand.d.ts +35 -17
  32. package/dist-types/ts3.4/commands/UpdateStreamModeCommand.d.ts +30 -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 +7 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +808 -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 +66 -39
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -39
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -38
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  47. package/dist-types/ts3.4/waiters/index.d.ts +2 -2
  48. package/dist-types/ts3.4/waiters/waitForStreamExists.d.ts +11 -7
  49. package/dist-types/ts3.4/waiters/waitForStreamNotExists.d.ts +11 -7
  50. package/package.json +38 -38
@@ -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 { ListStreamsInput, ListStreamsOutput } from "../models/models_0";
5
- export interface ListStreamsCommandInput extends ListStreamsInput {
6
- }
7
- export interface ListStreamsCommandOutput extends ListStreamsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListStreamsCommand extends $Command<ListStreamsCommandInput, ListStreamsCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: ListStreamsCommandInput;
12
- constructor(input: ListStreamsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStreamsCommandInput, ListStreamsCommandOutput>;
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 { ListStreamsInput, ListStreamsOutput } from "../models/models_0";
14
+ export interface ListStreamsCommandInput extends ListStreamsInput {}
15
+ export interface ListStreamsCommandOutput
16
+ extends ListStreamsOutput,
17
+ __MetadataBearer {}
18
+ export declare class ListStreamsCommand extends $Command<
19
+ ListStreamsCommandInput,
20
+ ListStreamsCommandOutput,
21
+ KinesisClientResolvedConfig
22
+ > {
23
+ readonly input: ListStreamsCommandInput;
24
+ constructor(input: ListStreamsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KinesisClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListStreamsCommandInput, ListStreamsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { ListTagsForStreamInput, ListTagsForStreamOutput } from "../models/models_0";
5
- export interface ListTagsForStreamCommandInput extends ListTagsForStreamInput {
6
- }
7
- export interface ListTagsForStreamCommandOutput extends ListTagsForStreamOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForStreamCommand extends $Command<ListTagsForStreamCommandInput, ListTagsForStreamCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: ListTagsForStreamCommandInput;
12
- constructor(input: ListTagsForStreamCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForStreamCommandInput, ListTagsForStreamCommandOutput>;
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
+ ListTagsForStreamInput,
15
+ ListTagsForStreamOutput,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForStreamCommandInput extends ListTagsForStreamInput {}
18
+ export interface ListTagsForStreamCommandOutput
19
+ extends ListTagsForStreamOutput,
20
+ __MetadataBearer {}
21
+ export declare class ListTagsForStreamCommand extends $Command<
22
+ ListTagsForStreamCommandInput,
23
+ ListTagsForStreamCommandOutput,
24
+ KinesisClientResolvedConfig
25
+ > {
26
+ readonly input: ListTagsForStreamCommandInput;
27
+ constructor(input: ListTagsForStreamCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KinesisClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListTagsForStreamCommandInput, ListTagsForStreamCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,30 @@
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 { MergeShardsInput } from "../models/models_0";
5
- export interface MergeShardsCommandInput extends MergeShardsInput {
6
- }
7
- export interface MergeShardsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class MergeShardsCommand extends $Command<MergeShardsCommandInput, MergeShardsCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: MergeShardsCommandInput;
12
- constructor(input: MergeShardsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<MergeShardsCommandInput, MergeShardsCommandOutput>;
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 { MergeShardsInput } from "../models/models_0";
14
+ export interface MergeShardsCommandInput extends MergeShardsInput {}
15
+ export interface MergeShardsCommandOutput extends __MetadataBearer {}
16
+ export declare class MergeShardsCommand extends $Command<
17
+ MergeShardsCommandInput,
18
+ MergeShardsCommandOutput,
19
+ KinesisClientResolvedConfig
20
+ > {
21
+ readonly input: MergeShardsCommandInput;
22
+ constructor(input: MergeShardsCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: KinesisClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<MergeShardsCommandInput, MergeShardsCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -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 { PutRecordInput, PutRecordOutput } from "../models/models_0";
5
- export interface PutRecordCommandInput extends PutRecordInput {
6
- }
7
- export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class PutRecordCommand extends $Command<PutRecordCommandInput, PutRecordCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: PutRecordCommandInput;
12
- constructor(input: PutRecordCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecordCommandInput, PutRecordCommandOutput>;
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 { PutRecordInput, PutRecordOutput } from "../models/models_0";
14
+ export interface PutRecordCommandInput extends PutRecordInput {}
15
+ export interface PutRecordCommandOutput
16
+ extends PutRecordOutput,
17
+ __MetadataBearer {}
18
+ export declare class PutRecordCommand extends $Command<
19
+ PutRecordCommandInput,
20
+ PutRecordCommandOutput,
21
+ KinesisClientResolvedConfig
22
+ > {
23
+ readonly input: PutRecordCommandInput;
24
+ constructor(input: PutRecordCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KinesisClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<PutRecordCommandInput, PutRecordCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { PutRecordsInput, PutRecordsOutput } from "../models/models_0";
5
- export interface PutRecordsCommandInput extends PutRecordsInput {
6
- }
7
- export interface PutRecordsCommandOutput extends PutRecordsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class PutRecordsCommand extends $Command<PutRecordsCommandInput, PutRecordsCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: PutRecordsCommandInput;
12
- constructor(input: PutRecordsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecordsCommandInput, PutRecordsCommandOutput>;
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 { PutRecordsInput, PutRecordsOutput } from "../models/models_0";
14
+ export interface PutRecordsCommandInput extends PutRecordsInput {}
15
+ export interface PutRecordsCommandOutput
16
+ extends PutRecordsOutput,
17
+ __MetadataBearer {}
18
+ export declare class PutRecordsCommand extends $Command<
19
+ PutRecordsCommandInput,
20
+ PutRecordsCommandOutput,
21
+ KinesisClientResolvedConfig
22
+ > {
23
+ readonly input: PutRecordsCommandInput;
24
+ constructor(input: PutRecordsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KinesisClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<PutRecordsCommandInput, PutRecordsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
4
- import { RegisterStreamConsumerInput, RegisterStreamConsumerOutput } from "../models/models_0";
5
- export interface RegisterStreamConsumerCommandInput extends RegisterStreamConsumerInput {
6
- }
7
- export interface RegisterStreamConsumerCommandOutput extends RegisterStreamConsumerOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class RegisterStreamConsumerCommand extends $Command<RegisterStreamConsumerCommandInput, RegisterStreamConsumerCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: RegisterStreamConsumerCommandInput;
12
- constructor(input: RegisterStreamConsumerCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterStreamConsumerCommandInput, RegisterStreamConsumerCommandOutput>;
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
+ RegisterStreamConsumerInput,
15
+ RegisterStreamConsumerOutput,
16
+ } from "../models/models_0";
17
+ export interface RegisterStreamConsumerCommandInput
18
+ extends RegisterStreamConsumerInput {}
19
+ export interface RegisterStreamConsumerCommandOutput
20
+ extends RegisterStreamConsumerOutput,
21
+ __MetadataBearer {}
22
+ export declare class RegisterStreamConsumerCommand extends $Command<
23
+ RegisterStreamConsumerCommandInput,
24
+ RegisterStreamConsumerCommandOutput,
25
+ KinesisClientResolvedConfig
26
+ > {
27
+ readonly input: RegisterStreamConsumerCommandInput;
28
+ constructor(input: RegisterStreamConsumerCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KinesisClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ RegisterStreamConsumerCommandInput,
35
+ RegisterStreamConsumerCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,34 @@
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 { RemoveTagsFromStreamInput } from "../models/models_0";
5
- export interface RemoveTagsFromStreamCommandInput extends RemoveTagsFromStreamInput {
6
- }
7
- export interface RemoveTagsFromStreamCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveTagsFromStreamCommand extends $Command<RemoveTagsFromStreamCommandInput, RemoveTagsFromStreamCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: RemoveTagsFromStreamCommandInput;
12
- constructor(input: RemoveTagsFromStreamCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsFromStreamCommandInput, RemoveTagsFromStreamCommandOutput>;
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 { RemoveTagsFromStreamInput } from "../models/models_0";
14
+ export interface RemoveTagsFromStreamCommandInput
15
+ extends RemoveTagsFromStreamInput {}
16
+ export interface RemoveTagsFromStreamCommandOutput extends __MetadataBearer {}
17
+ export declare class RemoveTagsFromStreamCommand extends $Command<
18
+ RemoveTagsFromStreamCommandInput,
19
+ RemoveTagsFromStreamCommandOutput,
20
+ KinesisClientResolvedConfig
21
+ > {
22
+ readonly input: RemoveTagsFromStreamCommandInput;
23
+ constructor(input: RemoveTagsFromStreamCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: KinesisClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ RemoveTagsFromStreamCommandInput,
30
+ RemoveTagsFromStreamCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,30 @@
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 { SplitShardInput } from "../models/models_0";
5
- export interface SplitShardCommandInput extends SplitShardInput {
6
- }
7
- export interface SplitShardCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class SplitShardCommand extends $Command<SplitShardCommandInput, SplitShardCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: SplitShardCommandInput;
12
- constructor(input: SplitShardCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SplitShardCommandInput, SplitShardCommandOutput>;
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 { SplitShardInput } from "../models/models_0";
14
+ export interface SplitShardCommandInput extends SplitShardInput {}
15
+ export interface SplitShardCommandOutput extends __MetadataBearer {}
16
+ export declare class SplitShardCommand extends $Command<
17
+ SplitShardCommandInput,
18
+ SplitShardCommandOutput,
19
+ KinesisClientResolvedConfig
20
+ > {
21
+ readonly input: SplitShardCommandInput;
22
+ constructor(input: SplitShardCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: KinesisClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<SplitShardCommandInput, SplitShardCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,34 @@
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 { StartStreamEncryptionInput } from "../models/models_0";
5
- export interface StartStreamEncryptionCommandInput extends StartStreamEncryptionInput {
6
- }
7
- export interface StartStreamEncryptionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class StartStreamEncryptionCommand extends $Command<StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: StartStreamEncryptionCommandInput;
12
- constructor(input: StartStreamEncryptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput>;
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 { StartStreamEncryptionInput } from "../models/models_0";
14
+ export interface StartStreamEncryptionCommandInput
15
+ extends StartStreamEncryptionInput {}
16
+ export interface StartStreamEncryptionCommandOutput extends __MetadataBearer {}
17
+ export declare class StartStreamEncryptionCommand extends $Command<
18
+ StartStreamEncryptionCommandInput,
19
+ StartStreamEncryptionCommandOutput,
20
+ KinesisClientResolvedConfig
21
+ > {
22
+ readonly input: StartStreamEncryptionCommandInput;
23
+ constructor(input: StartStreamEncryptionCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: KinesisClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ StartStreamEncryptionCommandInput,
30
+ StartStreamEncryptionCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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 { StopStreamEncryptionInput } from "../models/models_0";
5
- export interface StopStreamEncryptionCommandInput extends StopStreamEncryptionInput {
6
- }
7
- export interface StopStreamEncryptionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class StopStreamEncryptionCommand extends $Command<StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput, KinesisClientResolvedConfig> {
11
- readonly input: StopStreamEncryptionCommandInput;
12
- constructor(input: StopStreamEncryptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput>;
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 { StopStreamEncryptionInput } from "../models/models_0";
14
+ export interface StopStreamEncryptionCommandInput
15
+ extends StopStreamEncryptionInput {}
16
+ export interface StopStreamEncryptionCommandOutput extends __MetadataBearer {}
17
+ export declare class StopStreamEncryptionCommand extends $Command<
18
+ StopStreamEncryptionCommandInput,
19
+ StopStreamEncryptionCommandOutput,
20
+ KinesisClientResolvedConfig
21
+ > {
22
+ readonly input: StopStreamEncryptionCommandInput;
23
+ constructor(input: StopStreamEncryptionCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: KinesisClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ StopStreamEncryptionCommandInput,
30
+ StopStreamEncryptionCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,35 @@
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
+ export declare class SubscribeToShardCommand extends $Command<
22
+ SubscribeToShardCommandInput,
23
+ SubscribeToShardCommandOutput,
24
+ KinesisClientResolvedConfig
25
+ > {
26
+ readonly input: SubscribeToShardCommandInput;
27
+ constructor(input: SubscribeToShardCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KinesisClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<SubscribeToShardCommandInput, SubscribeToShardCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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
+ export declare class UpdateShardCountCommand extends $Command<
22
+ UpdateShardCountCommandInput,
23
+ UpdateShardCountCommandOutput,
24
+ KinesisClientResolvedConfig
25
+ > {
26
+ readonly input: UpdateShardCountCommandInput;
27
+ constructor(input: UpdateShardCountCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KinesisClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateShardCountCommandInput, UpdateShardCountCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }