@aws-sdk/client-dynamodb-streams 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/DynamoDBStreams.d.ts +72 -25
- package/dist-types/ts3.4/DynamoDBStreamsClient.d.ts +129 -77
- package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +32 -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/ListStreamsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/DynamoDBStreamsServiceException.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 +351 -404
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +53 -14
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-dynamodb-streams
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-dynamodb-streams
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-dynamodb-streams
|
|
@@ -1,25 +1,72 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeStreamCommandInput,
|
|
4
|
+
DescribeStreamCommandOutput,
|
|
5
|
+
} from "./commands/DescribeStreamCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetRecordsCommandInput,
|
|
8
|
+
GetRecordsCommandOutput,
|
|
9
|
+
} from "./commands/GetRecordsCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetShardIteratorCommandInput,
|
|
12
|
+
GetShardIteratorCommandOutput,
|
|
13
|
+
} from "./commands/GetShardIteratorCommand";
|
|
14
|
+
import {
|
|
15
|
+
ListStreamsCommandInput,
|
|
16
|
+
ListStreamsCommandOutput,
|
|
17
|
+
} from "./commands/ListStreamsCommand";
|
|
18
|
+
import { DynamoDBStreamsClient } from "./DynamoDBStreamsClient";
|
|
19
|
+
export declare class DynamoDBStreams extends DynamoDBStreamsClient {
|
|
20
|
+
describeStream(
|
|
21
|
+
args: DescribeStreamCommandInput,
|
|
22
|
+
options?: __HttpHandlerOptions
|
|
23
|
+
): Promise<DescribeStreamCommandOutput>;
|
|
24
|
+
describeStream(
|
|
25
|
+
args: DescribeStreamCommandInput,
|
|
26
|
+
cb: (err: any, data?: DescribeStreamCommandOutput) => void
|
|
27
|
+
): void;
|
|
28
|
+
describeStream(
|
|
29
|
+
args: DescribeStreamCommandInput,
|
|
30
|
+
options: __HttpHandlerOptions,
|
|
31
|
+
cb: (err: any, data?: DescribeStreamCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
getRecords(
|
|
34
|
+
args: GetRecordsCommandInput,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Promise<GetRecordsCommandOutput>;
|
|
37
|
+
getRecords(
|
|
38
|
+
args: GetRecordsCommandInput,
|
|
39
|
+
cb: (err: any, data?: GetRecordsCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
getRecords(
|
|
42
|
+
args: GetRecordsCommandInput,
|
|
43
|
+
options: __HttpHandlerOptions,
|
|
44
|
+
cb: (err: any, data?: GetRecordsCommandOutput) => void
|
|
45
|
+
): void;
|
|
46
|
+
getShardIterator(
|
|
47
|
+
args: GetShardIteratorCommandInput,
|
|
48
|
+
options?: __HttpHandlerOptions
|
|
49
|
+
): Promise<GetShardIteratorCommandOutput>;
|
|
50
|
+
getShardIterator(
|
|
51
|
+
args: GetShardIteratorCommandInput,
|
|
52
|
+
cb: (err: any, data?: GetShardIteratorCommandOutput) => void
|
|
53
|
+
): void;
|
|
54
|
+
getShardIterator(
|
|
55
|
+
args: GetShardIteratorCommandInput,
|
|
56
|
+
options: __HttpHandlerOptions,
|
|
57
|
+
cb: (err: any, data?: GetShardIteratorCommandOutput) => void
|
|
58
|
+
): void;
|
|
59
|
+
listStreams(
|
|
60
|
+
args: ListStreamsCommandInput,
|
|
61
|
+
options?: __HttpHandlerOptions
|
|
62
|
+
): Promise<ListStreamsCommandOutput>;
|
|
63
|
+
listStreams(
|
|
64
|
+
args: ListStreamsCommandInput,
|
|
65
|
+
cb: (err: any, data?: ListStreamsCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
listStreams(
|
|
68
|
+
args: ListStreamsCommandInput,
|
|
69
|
+
options: __HttpHandlerOptions,
|
|
70
|
+
cb: (err: any, data?: ListStreamsCommandOutput) => void
|
|
71
|
+
): void;
|
|
72
|
+
}
|
|
@@ -1,77 +1,129 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
declare type
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
DescribeStreamCommandInput,
|
|
47
|
+
DescribeStreamCommandOutput,
|
|
48
|
+
} from "./commands/DescribeStreamCommand";
|
|
49
|
+
import {
|
|
50
|
+
GetRecordsCommandInput,
|
|
51
|
+
GetRecordsCommandOutput,
|
|
52
|
+
} from "./commands/GetRecordsCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetShardIteratorCommandInput,
|
|
55
|
+
GetShardIteratorCommandOutput,
|
|
56
|
+
} from "./commands/GetShardIteratorCommand";
|
|
57
|
+
import {
|
|
58
|
+
ListStreamsCommandInput,
|
|
59
|
+
ListStreamsCommandOutput,
|
|
60
|
+
} from "./commands/ListStreamsCommand";
|
|
61
|
+
export declare type ServiceInputTypes =
|
|
62
|
+
| DescribeStreamCommandInput
|
|
63
|
+
| GetRecordsCommandInput
|
|
64
|
+
| GetShardIteratorCommandInput
|
|
65
|
+
| ListStreamsCommandInput;
|
|
66
|
+
export declare type ServiceOutputTypes =
|
|
67
|
+
| DescribeStreamCommandOutput
|
|
68
|
+
| GetRecordsCommandOutput
|
|
69
|
+
| GetShardIteratorCommandOutput
|
|
70
|
+
| ListStreamsCommandOutput;
|
|
71
|
+
export interface ClientDefaults
|
|
72
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
73
|
+
requestHandler?: __HttpHandler;
|
|
74
|
+
sha256?: __HashConstructor;
|
|
75
|
+
urlParser?: __UrlParser;
|
|
76
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
77
|
+
streamCollector?: __StreamCollector;
|
|
78
|
+
base64Decoder?: __Decoder;
|
|
79
|
+
base64Encoder?: __Encoder;
|
|
80
|
+
utf8Decoder?: __Decoder;
|
|
81
|
+
utf8Encoder?: __Encoder;
|
|
82
|
+
runtime?: string;
|
|
83
|
+
disableHostPrefix?: boolean;
|
|
84
|
+
maxAttempts?: number | __Provider<number>;
|
|
85
|
+
retryMode?: string | __Provider<string>;
|
|
86
|
+
logger?: __Logger;
|
|
87
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
88
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
89
|
+
serviceId?: string;
|
|
90
|
+
region?: string | __Provider<string>;
|
|
91
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
92
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
93
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
94
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
95
|
+
}
|
|
96
|
+
declare type DynamoDBStreamsClientConfigType = Partial<
|
|
97
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
98
|
+
> &
|
|
99
|
+
ClientDefaults &
|
|
100
|
+
RegionInputConfig &
|
|
101
|
+
EndpointsInputConfig &
|
|
102
|
+
RetryInputConfig &
|
|
103
|
+
HostHeaderInputConfig &
|
|
104
|
+
AwsAuthInputConfig &
|
|
105
|
+
UserAgentInputConfig;
|
|
106
|
+
export interface DynamoDBStreamsClientConfig
|
|
107
|
+
extends DynamoDBStreamsClientConfigType {}
|
|
108
|
+
declare type DynamoDBStreamsClientResolvedConfigType =
|
|
109
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
110
|
+
Required<ClientDefaults> &
|
|
111
|
+
RegionResolvedConfig &
|
|
112
|
+
EndpointsResolvedConfig &
|
|
113
|
+
RetryResolvedConfig &
|
|
114
|
+
HostHeaderResolvedConfig &
|
|
115
|
+
AwsAuthResolvedConfig &
|
|
116
|
+
UserAgentResolvedConfig;
|
|
117
|
+
export interface DynamoDBStreamsClientResolvedConfig
|
|
118
|
+
extends DynamoDBStreamsClientResolvedConfigType {}
|
|
119
|
+
export declare class DynamoDBStreamsClient extends __Client<
|
|
120
|
+
__HttpHandlerOptions,
|
|
121
|
+
ServiceInputTypes,
|
|
122
|
+
ServiceOutputTypes,
|
|
123
|
+
DynamoDBStreamsClientResolvedConfig
|
|
124
|
+
> {
|
|
125
|
+
readonly config: DynamoDBStreamsClientResolvedConfig;
|
|
126
|
+
constructor(configuration: DynamoDBStreamsClientConfig);
|
|
127
|
+
destroy(): void;
|
|
128
|
+
}
|
|
129
|
+
export {};
|
|
@@ -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
|
+
DynamoDBStreamsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DynamoDBStreamsClient";
|
|
13
|
+
import { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0";
|
|
14
|
+
export interface DescribeStreamCommandInput extends DescribeStreamInput {}
|
|
15
|
+
export interface DescribeStreamCommandOutput
|
|
16
|
+
extends DescribeStreamOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DescribeStreamCommand extends $Command<
|
|
19
|
+
DescribeStreamCommandInput,
|
|
20
|
+
DescribeStreamCommandOutput,
|
|
21
|
+
DynamoDBStreamsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DescribeStreamCommandInput;
|
|
24
|
+
constructor(input: DescribeStreamCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: DynamoDBStreamsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DescribeStreamCommandInput, DescribeStreamCommandOutput>;
|
|
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
|
+
DynamoDBStreamsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DynamoDBStreamsClient";
|
|
13
|
+
import { GetRecordsInput, GetRecordsOutput } from "../models/models_0";
|
|
14
|
+
export interface GetRecordsCommandInput extends GetRecordsInput {}
|
|
15
|
+
export interface GetRecordsCommandOutput
|
|
16
|
+
extends GetRecordsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetRecordsCommand extends $Command<
|
|
19
|
+
GetRecordsCommandInput,
|
|
20
|
+
GetRecordsCommandOutput,
|
|
21
|
+
DynamoDBStreamsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetRecordsCommandInput;
|
|
24
|
+
constructor(input: GetRecordsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: DynamoDBStreamsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetRecordsCommandInput, GetRecordsCommandOutput>;
|
|
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
|
+
DynamoDBStreamsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DynamoDBStreamsClient";
|
|
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
|
+
export declare class GetShardIteratorCommand extends $Command<
|
|
22
|
+
GetShardIteratorCommandInput,
|
|
23
|
+
GetShardIteratorCommandOutput,
|
|
24
|
+
DynamoDBStreamsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetShardIteratorCommandInput;
|
|
27
|
+
constructor(input: GetShardIteratorCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: DynamoDBStreamsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetShardIteratorCommandInput, GetShardIteratorCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
DynamoDBStreamsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DynamoDBStreamsClient";
|
|
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
|
+
DynamoDBStreamsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListStreamsCommandInput;
|
|
24
|
+
constructor(input: ListStreamsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: DynamoDBStreamsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListStreamsCommandInput, ListStreamsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./DescribeStreamCommand";
|
|
2
|
-
export * from "./GetRecordsCommand";
|
|
3
|
-
export * from "./GetShardIteratorCommand";
|
|
4
|
-
export * from "./ListStreamsCommand";
|
|
1
|
+
export * from "./DescribeStreamCommand";
|
|
2
|
+
export * from "./GetRecordsCommand";
|
|
3
|
+
export * from "./GetShardIteratorCommand";
|
|
4
|
+
export * from "./ListStreamsCommand";
|
|
@@ -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,5 +1,5 @@
|
|
|
1
|
-
export * from "./DynamoDBStreams";
|
|
2
|
-
export * from "./DynamoDBStreamsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { DynamoDBStreamsServiceException } from "./models/DynamoDBStreamsServiceException";
|
|
1
|
+
export * from "./DynamoDBStreams";
|
|
2
|
+
export * from "./DynamoDBStreamsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { DynamoDBStreamsServiceException } from "./models/DynamoDBStreamsServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class DynamoDBStreamsServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|