@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.
- package/CHANGELOG.md +16 -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,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|