@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Kinesis.d.ts +497 -150
- package/dist-types/ts3.4/KinesisClient.d.ts +286 -105
- package/dist-types/ts3.4/commands/AddTagsToStreamCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/CreateStreamCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DecreaseStreamRetentionPeriodCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteStreamCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeregisterStreamConsumerCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeStreamConsumerCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeStreamSummaryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DisableEnhancedMonitoringCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/EnableEnhancedMonitoringCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/IncreaseStreamRetentionPeriodCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListShardsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListStreamConsumersCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForStreamCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/MergeShardsCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutRecordsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RegisterStreamConsumerCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromStreamCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SplitShardCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/StartStreamEncryptionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopStreamEncryptionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SubscribeToShardCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateShardCountCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateStreamModeCommand.d.ts +30 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +808 -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 +66 -39
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -39
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForStreamExists.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForStreamNotExists.d.ts +11 -7
- package/package.json +38 -38
|
@@ -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 { 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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
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
|
+
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
|
+
}
|