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