@aws-sdk/client-dynamodb-streams 3.1077.0 → 3.1079.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/dist-cjs/index.js +12 -43
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/DescribeStreamCommand.js +2 -14
- package/dist-es/commands/GetRecordsCommand.js +2 -14
- package/dist-es/commands/GetShardIteratorCommand.js +2 -14
- package/dist-es/commands/ListStreamsCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/DescribeStreamCommand.d.ts +3 -8
- package/dist-types/commands/GetRecordsCommand.d.ts +3 -8
- package/dist-types/commands/GetShardIteratorCommand.d.ts +3 -8
- package/dist-types/commands/ListStreamsCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +9 -9
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1078.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -606,52 +607,20 @@ class DynamoDBStreamsClient extends Client {
|
|
|
606
607
|
}
|
|
607
608
|
}
|
|
608
609
|
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
})
|
|
615
|
-
.s("DynamoDBStreams_20120810", "DescribeStream", {})
|
|
616
|
-
.n("DynamoDBStreamsClient", "DescribeStreamCommand")
|
|
617
|
-
.sc(DescribeStream$)
|
|
618
|
-
.build() {
|
|
610
|
+
const command = makeBuilder(commonParams, "DynamoDBStreams_20120810", "DynamoDBStreamsClient", getEndpointPlugin);
|
|
611
|
+
const _ep0 = {};
|
|
612
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
613
|
+
|
|
614
|
+
class DescribeStreamCommand extends command(_ep0, _mw0, "DescribeStream", DescribeStream$) {
|
|
619
615
|
}
|
|
620
616
|
|
|
621
|
-
class GetRecordsCommand extends
|
|
622
|
-
.classBuilder()
|
|
623
|
-
.ep(commonParams)
|
|
624
|
-
.m(function (Command, cs, config, o) {
|
|
625
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
626
|
-
})
|
|
627
|
-
.s("DynamoDBStreams_20120810", "GetRecords", {})
|
|
628
|
-
.n("DynamoDBStreamsClient", "GetRecordsCommand")
|
|
629
|
-
.sc(GetRecords$)
|
|
630
|
-
.build() {
|
|
617
|
+
class GetRecordsCommand extends command(_ep0, _mw0, "GetRecords", GetRecords$) {
|
|
631
618
|
}
|
|
632
619
|
|
|
633
|
-
class GetShardIteratorCommand extends
|
|
634
|
-
.classBuilder()
|
|
635
|
-
.ep(commonParams)
|
|
636
|
-
.m(function (Command, cs, config, o) {
|
|
637
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
638
|
-
})
|
|
639
|
-
.s("DynamoDBStreams_20120810", "GetShardIterator", {})
|
|
640
|
-
.n("DynamoDBStreamsClient", "GetShardIteratorCommand")
|
|
641
|
-
.sc(GetShardIterator$)
|
|
642
|
-
.build() {
|
|
620
|
+
class GetShardIteratorCommand extends command(_ep0, _mw0, "GetShardIterator", GetShardIterator$) {
|
|
643
621
|
}
|
|
644
622
|
|
|
645
|
-
class ListStreamsCommand extends
|
|
646
|
-
.classBuilder()
|
|
647
|
-
.ep(commonParams)
|
|
648
|
-
.m(function (Command, cs, config, o) {
|
|
649
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
650
|
-
})
|
|
651
|
-
.s("DynamoDBStreams_20120810", "ListStreams", {})
|
|
652
|
-
.n("DynamoDBStreamsClient", "ListStreamsCommand")
|
|
653
|
-
.sc(ListStreams$)
|
|
654
|
-
.build() {
|
|
623
|
+
class ListStreamsCommand extends command(_ep0, _mw0, "ListStreams", ListStreams$) {
|
|
655
624
|
}
|
|
656
625
|
|
|
657
626
|
const commands = {
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "DynamoDBStreams_20120810", "DynamoDBStreamsClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DescribeStream$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DescribeStreamCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("DynamoDBStreams_20120810", "DescribeStream", {})
|
|
13
|
-
.n("DynamoDBStreamsClient", "DescribeStreamCommand")
|
|
14
|
-
.sc(DescribeStream$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DescribeStreamCommand extends command(_ep0, _mw0, "DescribeStream", DescribeStream$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetRecords$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetRecordsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("DynamoDBStreams_20120810", "GetRecords", {})
|
|
13
|
-
.n("DynamoDBStreamsClient", "GetRecordsCommand")
|
|
14
|
-
.sc(GetRecords$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetRecordsCommand extends command(_ep0, _mw0, "GetRecords", GetRecords$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetShardIterator$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetShardIteratorCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("DynamoDBStreams_20120810", "GetShardIterator", {})
|
|
13
|
-
.n("DynamoDBStreamsClient", "GetShardIteratorCommand")
|
|
14
|
-
.sc(GetShardIterator$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetShardIteratorCommand extends command(_ep0, _mw0, "GetShardIterator", GetShardIterator$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListStreams$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListStreamsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("DynamoDBStreams_20120810", "ListStreams", {})
|
|
13
|
-
.n("DynamoDBStreamsClient", "ListStreamsCommand")
|
|
14
|
-
.sc(ListStreams$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListStreamsCommand extends command(_ep0, _mw0, "ListStreams", ListStreams$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./DynamoDBStreamsClient";
|
|
2
2
|
export * from "./DynamoDBStreams";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./models/enums";
|
|
6
7
|
export * from "./models/errors";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./DynamoDBStreamsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBStreamsClient";
|
|
4
2
|
import type { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DescribeStreamCommandInput extends DescribeStreamInput {
|
|
|
22
19
|
export interface DescribeStreamCommandOutput extends DescribeStreamOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DescribeStreamCommand_base: {
|
|
25
|
-
new (input: DescribeStreamCommandInput): import("@smithy/core/client").CommandImpl<DescribeStreamCommandInput, DescribeStreamCommandOutput, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DescribeStreamCommandInput): import("@smithy/core/client").CommandImpl<DescribeStreamCommandInput, DescribeStreamCommandOutput, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DescribeStreamCommandInput): import("@smithy/core/client").CommandImpl<DescribeStreamCommandInput, DescribeStreamCommandOutput, import("..").DynamoDBStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DescribeStreamCommandInput): import("@smithy/core/client").CommandImpl<DescribeStreamCommandInput, DescribeStreamCommandOutput, import("..").DynamoDBStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns information about a stream, including the current status of the stream, its Amazon Resource Name (ARN), the composition of its shards, and its corresponding DynamoDB table.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBStreamsClient";
|
|
4
2
|
import type { GetRecordsInput, GetRecordsOutput } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetRecordsCommandInput extends GetRecordsInput {
|
|
|
22
19
|
export interface GetRecordsCommandOutput extends GetRecordsOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetRecordsCommand_base: {
|
|
25
|
-
new (input: GetRecordsCommandInput): import("@smithy/core/client").CommandImpl<GetRecordsCommandInput, GetRecordsCommandOutput, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetRecordsCommandInput): import("@smithy/core/client").CommandImpl<GetRecordsCommandInput, GetRecordsCommandOutput, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetRecordsCommandInput): import("@smithy/core/client").CommandImpl<GetRecordsCommandInput, GetRecordsCommandOutput, import("..").DynamoDBStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetRecordsCommandInput): import("@smithy/core/client").CommandImpl<GetRecordsCommandInput, GetRecordsCommandOutput, import("..").DynamoDBStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves the stream records from a given shard.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBStreamsClient";
|
|
4
2
|
import type { GetShardIteratorInput, GetShardIteratorOutput } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetShardIteratorCommandInput extends GetShardIteratorInput {
|
|
|
22
19
|
export interface GetShardIteratorCommandOutput extends GetShardIteratorOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetShardIteratorCommand_base: {
|
|
25
|
-
new (input: GetShardIteratorCommandInput): import("@smithy/core/client").CommandImpl<GetShardIteratorCommandInput, GetShardIteratorCommandOutput, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetShardIteratorCommandInput): import("@smithy/core/client").CommandImpl<GetShardIteratorCommandInput, GetShardIteratorCommandOutput, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetShardIteratorCommandInput): import("@smithy/core/client").CommandImpl<GetShardIteratorCommandInput, GetShardIteratorCommandOutput, import("..").DynamoDBStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetShardIteratorCommandInput): import("@smithy/core/client").CommandImpl<GetShardIteratorCommandInput, GetShardIteratorCommandOutput, import("..").DynamoDBStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a shard iterator. A shard iterator provides information
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBStreamsClient";
|
|
4
2
|
import type { ListStreamsInput, ListStreamsOutput } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListStreamsCommandInput extends ListStreamsInput {
|
|
|
22
19
|
export interface ListStreamsCommandOutput extends ListStreamsOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListStreamsCommand_base: {
|
|
25
|
-
new (input: ListStreamsCommandInput): import("@smithy/core/client").CommandImpl<ListStreamsCommandInput, ListStreamsCommandOutput, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListStreamsCommandInput]): import("@smithy/core/client").CommandImpl<ListStreamsCommandInput, ListStreamsCommandOutput, DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListStreamsCommandInput): import("@smithy/core/client").CommandImpl<ListStreamsCommandInput, ListStreamsCommandOutput, import("..").DynamoDBStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListStreamsCommandInput]): import("@smithy/core/client").CommandImpl<ListStreamsCommandInput, ListStreamsCommandOutput, import("..").DynamoDBStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns an array of stream ARNs associated with the current account and endpoint. If the
|
package/dist-types/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
13
13
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
14
14
|
export type { DynamoDBStreamsExtensionConfiguration } from "./extensionConfiguration";
|
|
15
15
|
export * from "./commands";
|
|
16
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
16
17
|
export * from "./schemas/schemas_0";
|
|
17
18
|
export * from "./models/enums";
|
|
18
19
|
export * from "./models/errors";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DynamoDBStreamsClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./DynamoDBStreamsClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
DynamoDBStreamsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
DynamoDBStreamsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DynamoDBStreamsClient";
|
|
8
2
|
import { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DescribeStreamCommandInput extends DescribeStreamInput {}
|
|
12
5
|
export interface DescribeStreamCommandOutput
|
|
13
6
|
extends DescribeStreamOutput,
|
|
@@ -18,22 +11,20 @@ declare const DescribeStreamCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
DescribeStreamCommandInput,
|
|
20
13
|
DescribeStreamCommandOutput,
|
|
21
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DynamoDBStreamsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: DescribeStreamCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
DescribeStreamCommandInput,
|
|
29
22
|
DescribeStreamCommandOutput,
|
|
30
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").DynamoDBStreamsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class DescribeStreamCommand extends DescribeStreamCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DynamoDBStreamsClient";
|
|
8
2
|
import { GetRecordsInput, GetRecordsOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetRecordsCommandInput extends GetRecordsInput {}
|
|
12
5
|
export interface GetRecordsCommandOutput
|
|
13
6
|
extends GetRecordsOutput,
|
|
@@ -18,22 +11,20 @@ declare const GetRecordsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
GetRecordsCommandInput,
|
|
20
13
|
GetRecordsCommandOutput,
|
|
21
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DynamoDBStreamsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: GetRecordsCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
GetRecordsCommandInput,
|
|
29
22
|
GetRecordsCommandOutput,
|
|
30
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").DynamoDBStreamsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class GetRecordsCommand extends GetRecordsCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DynamoDBStreamsClient";
|
|
8
2
|
import {
|
|
9
3
|
GetShardIteratorInput,
|
|
10
4
|
GetShardIteratorOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetShardIteratorCommandInput extends GetShardIteratorInput {}
|
|
15
8
|
export interface GetShardIteratorCommandOutput
|
|
16
9
|
extends GetShardIteratorOutput,
|
|
@@ -21,22 +14,20 @@ declare const GetShardIteratorCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetShardIteratorCommandInput,
|
|
23
16
|
GetShardIteratorCommandOutput,
|
|
24
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").DynamoDBStreamsClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: GetShardIteratorCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetShardIteratorCommandInput,
|
|
32
25
|
GetShardIteratorCommandOutput,
|
|
33
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").DynamoDBStreamsClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class GetShardIteratorCommand extends GetShardIteratorCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DynamoDBStreamsClient";
|
|
8
2
|
import { ListStreamsInput, ListStreamsOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListStreamsCommandInput extends ListStreamsInput {}
|
|
12
5
|
export interface ListStreamsCommandOutput
|
|
13
6
|
extends ListStreamsOutput,
|
|
@@ -18,22 +11,20 @@ declare const ListStreamsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListStreamsCommandInput,
|
|
20
13
|
ListStreamsCommandOutput,
|
|
21
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DynamoDBStreamsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
...[input]: [] | [ListStreamsCommandInput]
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListStreamsCommandInput,
|
|
29
22
|
ListStreamsCommandOutput,
|
|
30
|
-
DynamoDBStreamsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").DynamoDBStreamsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class ListStreamsCommand extends ListStreamsCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { DynamoDBStreamsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dynamodb-streams",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dynamodb Streams Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1079.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"module": "./dist-es/index.js",
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@aws-sdk/core": "^3.974.
|
|
29
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
-
"@aws-sdk/types": "^3.973.
|
|
31
|
-
"@smithy/core": "^3.
|
|
32
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
33
|
-
"@smithy/node-http-handler": "^4.9.
|
|
34
|
-
"@smithy/types": "^4.15.
|
|
28
|
+
"@aws-sdk/core": "^3.974.27",
|
|
29
|
+
"@aws-sdk/credential-provider-node": "^3.972.62",
|
|
30
|
+
"@aws-sdk/types": "^3.973.15",
|
|
31
|
+
"@smithy/core": "^3.29.0",
|
|
32
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
33
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
34
|
+
"@smithy/types": "^4.15.1",
|
|
35
35
|
"tslib": "^2.6.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@smithy/snapshot-testing": "^2.2.
|
|
38
|
+
"@smithy/snapshot-testing": "^2.2.5",
|
|
39
39
|
"@tsconfig/node20": "20.1.8",
|
|
40
40
|
"@types/node": "^20.14.8",
|
|
41
41
|
"concurrently": "7.0.0",
|