@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.
- package/CHANGELOG.md +8 -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 { DeregisterStreamConsumerInput } from "../models/models_0";
|
|
14
|
+
export interface DeregisterStreamConsumerCommandInput
|
|
15
|
+
extends DeregisterStreamConsumerInput {}
|
|
16
|
+
export interface DeregisterStreamConsumerCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeregisterStreamConsumerCommand extends $Command<
|
|
20
|
+
DeregisterStreamConsumerCommandInput,
|
|
21
|
+
DeregisterStreamConsumerCommandOutput,
|
|
22
|
+
KinesisClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeregisterStreamConsumerCommandInput;
|
|
25
|
+
constructor(input: DeregisterStreamConsumerCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: KinesisClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeregisterStreamConsumerCommandInput,
|
|
33
|
+
DeregisterStreamConsumerCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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 { DescribeLimitsInput, DescribeLimitsOutput } from "../models/models_0";
|
|
14
|
+
export interface DescribeLimitsCommandInput extends DescribeLimitsInput {}
|
|
15
|
+
export interface DescribeLimitsCommandOutput
|
|
16
|
+
extends DescribeLimitsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DescribeLimitsCommand extends $Command<
|
|
20
|
+
DescribeLimitsCommandInput,
|
|
21
|
+
DescribeLimitsCommandOutput,
|
|
22
|
+
KinesisClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeLimitsCommandInput;
|
|
25
|
+
constructor(input: DescribeLimitsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: KinesisClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DescribeLimitsCommandInput, DescribeLimitsCommandOutput>;
|
|
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 { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0";
|
|
14
|
+
export interface DescribeStreamCommandInput extends DescribeStreamInput {}
|
|
15
|
+
export interface DescribeStreamCommandOutput
|
|
16
|
+
extends DescribeStreamOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DescribeStreamCommand extends $Command<
|
|
20
|
+
DescribeStreamCommandInput,
|
|
21
|
+
DescribeStreamCommandOutput,
|
|
22
|
+
KinesisClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeStreamCommandInput;
|
|
25
|
+
constructor(input: DescribeStreamCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: KinesisClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DescribeStreamCommandInput, DescribeStreamCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
DescribeStreamConsumerInput,
|
|
15
|
+
DescribeStreamConsumerOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeStreamConsumerCommandInput
|
|
18
|
+
extends DescribeStreamConsumerInput {}
|
|
19
|
+
export interface DescribeStreamConsumerCommandOutput
|
|
20
|
+
extends DescribeStreamConsumerOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeStreamConsumerCommand extends $Command<
|
|
24
|
+
DescribeStreamConsumerCommandInput,
|
|
25
|
+
DescribeStreamConsumerCommandOutput,
|
|
26
|
+
KinesisClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeStreamConsumerCommandInput;
|
|
29
|
+
constructor(input: DescribeStreamConsumerCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeStreamConsumerCommandInput,
|
|
37
|
+
DescribeStreamConsumerCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
DescribeStreamSummaryInput,
|
|
15
|
+
DescribeStreamSummaryOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeStreamSummaryCommandInput
|
|
18
|
+
extends DescribeStreamSummaryInput {}
|
|
19
|
+
export interface DescribeStreamSummaryCommandOutput
|
|
20
|
+
extends DescribeStreamSummaryOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeStreamSummaryCommand extends $Command<
|
|
24
|
+
DescribeStreamSummaryCommandInput,
|
|
25
|
+
DescribeStreamSummaryCommandOutput,
|
|
26
|
+
KinesisClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeStreamSummaryCommandInput;
|
|
29
|
+
constructor(input: DescribeStreamSummaryCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeStreamSummaryCommandInput,
|
|
37
|
+
DescribeStreamSummaryCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
DisableEnhancedMonitoringInput,
|
|
15
|
+
EnhancedMonitoringOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DisableEnhancedMonitoringCommandInput
|
|
18
|
+
extends DisableEnhancedMonitoringInput {}
|
|
19
|
+
export interface DisableEnhancedMonitoringCommandOutput
|
|
20
|
+
extends EnhancedMonitoringOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DisableEnhancedMonitoringCommand extends $Command<
|
|
24
|
+
DisableEnhancedMonitoringCommandInput,
|
|
25
|
+
DisableEnhancedMonitoringCommandOutput,
|
|
26
|
+
KinesisClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DisableEnhancedMonitoringCommandInput;
|
|
29
|
+
constructor(input: DisableEnhancedMonitoringCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DisableEnhancedMonitoringCommandInput,
|
|
37
|
+
DisableEnhancedMonitoringCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
EnableEnhancedMonitoringInput,
|
|
15
|
+
EnhancedMonitoringOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface EnableEnhancedMonitoringCommandInput
|
|
18
|
+
extends EnableEnhancedMonitoringInput {}
|
|
19
|
+
export interface EnableEnhancedMonitoringCommandOutput
|
|
20
|
+
extends EnhancedMonitoringOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class EnableEnhancedMonitoringCommand extends $Command<
|
|
24
|
+
EnableEnhancedMonitoringCommandInput,
|
|
25
|
+
EnableEnhancedMonitoringCommandOutput,
|
|
26
|
+
KinesisClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: EnableEnhancedMonitoringCommandInput;
|
|
29
|
+
constructor(input: EnableEnhancedMonitoringCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
EnableEnhancedMonitoringCommandInput,
|
|
37
|
+
EnableEnhancedMonitoringCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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 { GetRecordsInput, GetRecordsOutput } from "../models/models_0";
|
|
14
|
+
export interface GetRecordsCommandInput extends GetRecordsInput {}
|
|
15
|
+
export interface GetRecordsCommandOutput
|
|
16
|
+
extends GetRecordsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetRecordsCommand extends $Command<
|
|
20
|
+
GetRecordsCommandInput,
|
|
21
|
+
GetRecordsCommandOutput,
|
|
22
|
+
KinesisClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetRecordsCommandInput;
|
|
25
|
+
constructor(input: GetRecordsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: KinesisClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetRecordsCommandInput, GetRecordsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -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
|
+
GetShardIteratorInput,
|
|
15
|
+
GetShardIteratorOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetShardIteratorCommandInput extends GetShardIteratorInput {}
|
|
18
|
+
export interface GetShardIteratorCommandOutput
|
|
19
|
+
extends GetShardIteratorOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetShardIteratorCommand extends $Command<
|
|
23
|
+
GetShardIteratorCommandInput,
|
|
24
|
+
GetShardIteratorCommandOutput,
|
|
25
|
+
KinesisClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetShardIteratorCommandInput;
|
|
28
|
+
constructor(input: GetShardIteratorCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: KinesisClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetShardIteratorCommandInput, GetShardIteratorCommandOutput>;
|
|
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 { IncreaseStreamRetentionPeriodInput } from "../models/models_0";
|
|
14
|
+
export interface IncreaseStreamRetentionPeriodCommandInput
|
|
15
|
+
extends IncreaseStreamRetentionPeriodInput {}
|
|
16
|
+
export interface IncreaseStreamRetentionPeriodCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class IncreaseStreamRetentionPeriodCommand extends $Command<
|
|
20
|
+
IncreaseStreamRetentionPeriodCommandInput,
|
|
21
|
+
IncreaseStreamRetentionPeriodCommandOutput,
|
|
22
|
+
KinesisClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: IncreaseStreamRetentionPeriodCommandInput;
|
|
25
|
+
constructor(input: IncreaseStreamRetentionPeriodCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: KinesisClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
IncreaseStreamRetentionPeriodCommandInput,
|
|
33
|
+
IncreaseStreamRetentionPeriodCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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 { ListShardsInput, ListShardsOutput } from "../models/models_0";
|
|
14
|
+
export interface ListShardsCommandInput extends ListShardsInput {}
|
|
15
|
+
export interface ListShardsCommandOutput
|
|
16
|
+
extends ListShardsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListShardsCommand extends $Command<
|
|
20
|
+
ListShardsCommandInput,
|
|
21
|
+
ListShardsCommandOutput,
|
|
22
|
+
KinesisClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListShardsCommandInput;
|
|
25
|
+
constructor(input: ListShardsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: KinesisClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListShardsCommandInput, ListShardsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|