@aws-sdk/client-simpledbv2 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 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, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createWaiter, checkExceptions, WaiterState, 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.1076.0";
72
+ var version = "3.1078.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -512,40 +513,17 @@ class SimpleDBv2Client extends Client {
512
513
  }
513
514
  }
514
515
 
515
- class GetExportCommand extends Command
516
- .classBuilder()
517
- .ep(commonParams)
518
- .m(function (Command, cs, config, o) {
519
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
520
- })
521
- .s("SimpleDBv2", "GetExport", {})
522
- .n("SimpleDBv2Client", "GetExportCommand")
523
- .sc(GetExport$)
524
- .build() {
516
+ const command = makeBuilder(commonParams, "SimpleDBv2", "SimpleDBv2Client", getEndpointPlugin);
517
+ const _ep0 = {};
518
+ const _mw0 = (Command, cs, config, o) => [];
519
+
520
+ class GetExportCommand extends command(_ep0, _mw0, "GetExport", GetExport$) {
525
521
  }
526
522
 
527
- class ListExportsCommand extends Command
528
- .classBuilder()
529
- .ep(commonParams)
530
- .m(function (Command, cs, config, o) {
531
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
532
- })
533
- .s("SimpleDBv2", "ListExports", {})
534
- .n("SimpleDBv2Client", "ListExportsCommand")
535
- .sc(ListExports$)
536
- .build() {
523
+ class ListExportsCommand extends command(_ep0, _mw0, "ListExports", ListExports$) {
537
524
  }
538
525
 
539
- class StartDomainExportCommand extends Command
540
- .classBuilder()
541
- .ep(commonParams)
542
- .m(function (Command, cs, config, o) {
543
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
544
- })
545
- .s("SimpleDBv2", "StartDomainExport", {})
546
- .n("SimpleDBv2Client", "StartDomainExportCommand")
547
- .sc(StartDomainExport$)
548
- .build() {
526
+ class StartDomainExportCommand extends command(_ep0, _mw0, "StartDomainExport", StartDomainExport$) {
549
527
  }
550
528
 
551
529
  const paginateListExports = createPaginator(SimpleDBv2Client, ListExportsCommand, "nextToken", "nextToken", "maxResults");
@@ -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, "SimpleDBv2", "SimpleDBv2Client", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetExport$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetExportCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SimpleDBv2", "GetExport", {})
13
- .n("SimpleDBv2Client", "GetExportCommand")
14
- .sc(GetExport$)
15
- .build() {
3
+ export class GetExportCommand extends command(_ep0, _mw0, "GetExport", GetExport$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListExports$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListExportsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SimpleDBv2", "ListExports", {})
13
- .n("SimpleDBv2Client", "ListExportsCommand")
14
- .sc(ListExports$)
15
- .build() {
3
+ export class ListExportsCommand extends command(_ep0, _mw0, "ListExports", ListExports$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { StartDomainExport$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class StartDomainExportCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SimpleDBv2", "StartDomainExport", {})
13
- .n("SimpleDBv2Client", "StartDomainExportCommand")
14
- .sc(StartDomainExport$)
15
- .build() {
3
+ export class StartDomainExportCommand extends command(_ep0, _mw0, "StartDomainExport", StartDomainExport$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SimpleDBv2Client";
2
2
  export * from "./SimpleDBv2";
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 "./pagination";
6
7
  export * from "./waiters";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { ServiceInputTypes, ServiceOutputTypes, SimpleDBv2ClientResolvedConfig } from "./SimpleDBv2Client";
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, SimpleDBv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SimpleDBv2ClientResolvedConfig, 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
2
  import type { GetExportRequest, GetExportResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SimpleDBv2ClientResolvedConfig } from "../SimpleDBv2Client";
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 GetExportCommandInput extends GetExportRequest {
22
19
  export interface GetExportCommandOutput extends GetExportResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetExportCommand_base: {
25
- new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, SimpleDBv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, SimpleDBv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, import("..").SimpleDBv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, import("..").SimpleDBv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Returns information for an existing domain export.
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListExportsRequest, ListExportsResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SimpleDBv2ClientResolvedConfig } from "../SimpleDBv2Client";
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 ListExportsCommandInput extends ListExportsRequest {
22
19
  export interface ListExportsCommandOutput extends ListExportsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListExportsCommand_base: {
25
- new (input: ListExportsCommandInput): import("@smithy/core/client").CommandImpl<ListExportsCommandInput, ListExportsCommandOutput, SimpleDBv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListExportsCommandInput]): import("@smithy/core/client").CommandImpl<ListExportsCommandInput, ListExportsCommandOutput, SimpleDBv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListExportsCommandInput): import("@smithy/core/client").CommandImpl<ListExportsCommandInput, ListExportsCommandOutput, import("..").SimpleDBv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListExportsCommandInput]): import("@smithy/core/client").CommandImpl<ListExportsCommandInput, ListExportsCommandOutput, import("..").SimpleDBv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Lists all exports that were created. The results are paginated and can be filtered by domain name.
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { StartDomainExportRequest, StartDomainExportResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SimpleDBv2ClientResolvedConfig } from "../SimpleDBv2Client";
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 StartDomainExportCommandInput extends StartDomainExportRequest
22
19
  export interface StartDomainExportCommandOutput extends StartDomainExportResponse, __MetadataBearer {
23
20
  }
24
21
  declare const StartDomainExportCommand_base: {
25
- new (input: StartDomainExportCommandInput): import("@smithy/core/client").CommandImpl<StartDomainExportCommandInput, StartDomainExportCommandOutput, SimpleDBv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StartDomainExportCommandInput): import("@smithy/core/client").CommandImpl<StartDomainExportCommandInput, StartDomainExportCommandOutput, SimpleDBv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: StartDomainExportCommandInput): import("@smithy/core/client").CommandImpl<StartDomainExportCommandInput, StartDomainExportCommandOutput, import("..").SimpleDBv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: StartDomainExportCommandInput): import("@smithy/core/client").CommandImpl<StartDomainExportCommandInput, StartDomainExportCommandOutput, import("..").SimpleDBv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Initiates the export of a SimpleDB domain to an S3 bucket.
@@ -18,6 +18,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
18
18
  export type { RuntimeExtension } from "./runtimeExtensions";
19
19
  export type { SimpleDBv2ExtensionConfiguration } from "./extensionConfiguration";
20
20
  export * from "./commands";
21
+ export { Command as $Command } from "@smithy/core/client";
21
22
  export * from "./schemas/schemas_0";
22
23
  export * from "./pagination";
23
24
  export * from "./waiters";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ServiceInputTypes,
4
+ ServiceOutputTypes,
5
+ SimpleDBv2ClientResolvedConfig,
6
+ } from "./SimpleDBv2Client";
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
+ SimpleDBv2ClientResolvedConfig,
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
+ SimpleDBv2ClientResolvedConfig,
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
2
  import { GetExportRequest, GetExportResponse } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- SimpleDBv2ClientResolvedConfig,
8
- } from "../SimpleDBv2Client";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetExportCommandInput extends GetExportRequest {}
12
5
  export interface GetExportCommandOutput
13
6
  extends GetExportResponse,
@@ -16,20 +9,18 @@ declare const GetExportCommand_base: {
16
9
  new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  GetExportCommandInput,
18
11
  GetExportCommandOutput,
19
- SimpleDBv2ClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").SimpleDBv2ClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetExportCommandInput,
25
18
  GetExportCommandOutput,
26
- SimpleDBv2ClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").SimpleDBv2ClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class GetExportCommand extends GetExportCommand_base {
35
26
  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
2
  import { ListExportsRequest, ListExportsResponse } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- SimpleDBv2ClientResolvedConfig,
8
- } from "../SimpleDBv2Client";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListExportsCommandInput extends ListExportsRequest {}
12
5
  export interface ListExportsCommandOutput
13
6
  extends ListExportsResponse,
@@ -18,22 +11,20 @@ declare const ListExportsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListExportsCommandInput,
20
13
  ListExportsCommandOutput,
21
- SimpleDBv2ClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").SimpleDBv2ClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [ListExportsCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListExportsCommandInput,
29
22
  ListExportsCommandOutput,
30
- SimpleDBv2ClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").SimpleDBv2ClientResolvedConfig,
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 ListExportsCommand extends ListExportsCommand_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
2
  import {
4
3
  StartDomainExportRequest,
5
4
  StartDomainExportResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SimpleDBv2ClientResolvedConfig,
11
- } from "../SimpleDBv2Client";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface StartDomainExportCommandInput
15
8
  extends StartDomainExportRequest {}
16
9
  export interface StartDomainExportCommandOutput
@@ -22,22 +15,20 @@ declare const StartDomainExportCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  StartDomainExportCommandInput,
24
17
  StartDomainExportCommandOutput,
25
- SimpleDBv2ClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SimpleDBv2ClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: StartDomainExportCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  StartDomainExportCommandInput,
33
26
  StartDomainExportCommandOutput,
34
- SimpleDBv2ClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SimpleDBv2ClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class StartDomainExportCommand extends StartDomainExportCommand_base {
43
34
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SimpleDBv2ExtensionConfiguration } 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 "./pagination";
9
10
  export * from "./waiters";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-simpledbv2",
3
3
  "description": "AWS SDK for JavaScript Simpledbv2 Client for Node.js, Browser and React Native",
4
- "version": "3.1077.0",
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",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.27",
23
+ "@aws-sdk/credential-provider-node": "^3.972.62",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {