@aws-sdk/client-docdb-elastic 3.221.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.
Files changed (131) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +205 -0
  3. package/dist-cjs/DocDBElastic.js +202 -0
  4. package/dist-cjs/DocDBElasticClient.js +40 -0
  5. package/dist-cjs/commands/CreateClusterCommand.js +46 -0
  6. package/dist-cjs/commands/CreateClusterSnapshotCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteClusterCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteClusterSnapshotCommand.js +46 -0
  9. package/dist-cjs/commands/GetClusterCommand.js +46 -0
  10. package/dist-cjs/commands/GetClusterSnapshotCommand.js +46 -0
  11. package/dist-cjs/commands/ListClusterSnapshotsCommand.js +46 -0
  12. package/dist-cjs/commands/ListClustersCommand.js +46 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  14. package/dist-cjs/commands/RestoreClusterFromSnapshotCommand.js +46 -0
  15. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  16. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  17. package/dist-cjs/commands/UpdateClusterCommand.js +46 -0
  18. package/dist-cjs/commands/index.js +16 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  21. package/dist-cjs/endpoint/ruleset.js +312 -0
  22. package/dist-cjs/index.js +11 -0
  23. package/dist-cjs/models/DocDBElasticServiceException.js +11 -0
  24. package/dist-cjs/models/index.js +4 -0
  25. package/dist-cjs/models/models_0.js +255 -0
  26. package/dist-cjs/pagination/Interfaces.js +2 -0
  27. package/dist-cjs/pagination/ListClusterSnapshotsPaginator.js +36 -0
  28. package/dist-cjs/pagination/ListClustersPaginator.js +36 -0
  29. package/dist-cjs/pagination/index.js +6 -0
  30. package/dist-cjs/protocols/Aws_restJson1.js +1197 -0
  31. package/dist-cjs/runtimeConfig.browser.js +42 -0
  32. package/dist-cjs/runtimeConfig.js +50 -0
  33. package/dist-cjs/runtimeConfig.native.js +15 -0
  34. package/dist-cjs/runtimeConfig.shared.js +18 -0
  35. package/dist-es/DocDBElastic.js +198 -0
  36. package/dist-es/DocDBElasticClient.js +36 -0
  37. package/dist-es/commands/CreateClusterCommand.js +42 -0
  38. package/dist-es/commands/CreateClusterSnapshotCommand.js +42 -0
  39. package/dist-es/commands/DeleteClusterCommand.js +42 -0
  40. package/dist-es/commands/DeleteClusterSnapshotCommand.js +42 -0
  41. package/dist-es/commands/GetClusterCommand.js +42 -0
  42. package/dist-es/commands/GetClusterSnapshotCommand.js +42 -0
  43. package/dist-es/commands/ListClusterSnapshotsCommand.js +42 -0
  44. package/dist-es/commands/ListClustersCommand.js +42 -0
  45. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  46. package/dist-es/commands/RestoreClusterFromSnapshotCommand.js +42 -0
  47. package/dist-es/commands/TagResourceCommand.js +42 -0
  48. package/dist-es/commands/UntagResourceCommand.js +42 -0
  49. package/dist-es/commands/UpdateClusterCommand.js +42 -0
  50. package/dist-es/commands/index.js +13 -0
  51. package/dist-es/endpoint/EndpointParameters.js +8 -0
  52. package/dist-es/endpoint/endpointResolver.js +8 -0
  53. package/dist-es/endpoint/ruleset.js +309 -0
  54. package/dist-es/index.js +6 -0
  55. package/dist-es/models/DocDBElasticServiceException.js +7 -0
  56. package/dist-es/models/index.js +1 -0
  57. package/dist-es/models/models_0.js +214 -0
  58. package/dist-es/pagination/Interfaces.js +1 -0
  59. package/dist-es/pagination/ListClusterSnapshotsPaginator.js +32 -0
  60. package/dist-es/pagination/ListClustersPaginator.js +32 -0
  61. package/dist-es/pagination/index.js +3 -0
  62. package/dist-es/protocols/Aws_restJson1.js +1168 -0
  63. package/dist-es/runtimeConfig.browser.js +37 -0
  64. package/dist-es/runtimeConfig.js +45 -0
  65. package/dist-es/runtimeConfig.native.js +11 -0
  66. package/dist-es/runtimeConfig.shared.js +14 -0
  67. package/dist-types/DocDBElastic.d.ts +99 -0
  68. package/dist-types/DocDBElasticClient.d.ts +154 -0
  69. package/dist-types/commands/CreateClusterCommand.d.ts +37 -0
  70. package/dist-types/commands/CreateClusterSnapshotCommand.d.ts +37 -0
  71. package/dist-types/commands/DeleteClusterCommand.d.ts +37 -0
  72. package/dist-types/commands/DeleteClusterSnapshotCommand.d.ts +37 -0
  73. package/dist-types/commands/GetClusterCommand.d.ts +37 -0
  74. package/dist-types/commands/GetClusterSnapshotCommand.d.ts +37 -0
  75. package/dist-types/commands/ListClusterSnapshotsCommand.d.ts +37 -0
  76. package/dist-types/commands/ListClustersCommand.d.ts +37 -0
  77. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  78. package/dist-types/commands/RestoreClusterFromSnapshotCommand.d.ts +37 -0
  79. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  80. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  81. package/dist-types/commands/UpdateClusterCommand.d.ts +38 -0
  82. package/dist-types/commands/index.d.ts +13 -0
  83. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  84. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  85. package/dist-types/endpoint/ruleset.d.ts +2 -0
  86. package/dist-types/index.d.ts +6 -0
  87. package/dist-types/models/DocDBElasticServiceException.d.ts +10 -0
  88. package/dist-types/models/index.d.ts +1 -0
  89. package/dist-types/models/models_0.d.ts +782 -0
  90. package/dist-types/pagination/Interfaces.d.ts +6 -0
  91. package/dist-types/pagination/ListClusterSnapshotsPaginator.d.ts +4 -0
  92. package/dist-types/pagination/ListClustersPaginator.d.ts +4 -0
  93. package/dist-types/pagination/index.d.ts +3 -0
  94. package/dist-types/protocols/Aws_restJson1.d.ts +41 -0
  95. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  96. package/dist-types/runtimeConfig.d.ts +42 -0
  97. package/dist-types/runtimeConfig.native.d.ts +41 -0
  98. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  99. package/dist-types/ts3.4/DocDBElastic.d.ts +225 -0
  100. package/dist-types/ts3.4/DocDBElasticClient.d.ts +190 -0
  101. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +34 -0
  102. package/dist-types/ts3.4/commands/CreateClusterSnapshotCommand.d.ts +41 -0
  103. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +34 -0
  104. package/dist-types/ts3.4/commands/DeleteClusterSnapshotCommand.d.ts +41 -0
  105. package/dist-types/ts3.4/commands/GetClusterCommand.d.ts +34 -0
  106. package/dist-types/ts3.4/commands/GetClusterSnapshotCommand.d.ts +38 -0
  107. package/dist-types/ts3.4/commands/ListClusterSnapshotsCommand.d.ts +41 -0
  108. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +34 -0
  109. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  110. package/dist-types/ts3.4/commands/RestoreClusterFromSnapshotCommand.d.ts +41 -0
  111. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  112. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
  113. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +34 -0
  114. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  115. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  116. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  117. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  118. package/dist-types/ts3.4/index.d.ts +6 -0
  119. package/dist-types/ts3.4/models/DocDBElasticServiceException.d.ts +7 -0
  120. package/dist-types/ts3.4/models/index.d.ts +1 -0
  121. package/dist-types/ts3.4/models/models_0.d.ts +320 -0
  122. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  123. package/dist-types/ts3.4/pagination/ListClusterSnapshotsPaginator.d.ts +11 -0
  124. package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
  125. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  126. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +161 -0
  127. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
  128. package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
  129. package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
  130. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  131. package/package.json +103 -0
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { DocDBElastic } from "../DocDBElastic";
3
+ import { DocDBElasticClient } from "../DocDBElasticClient";
4
+ export interface DocDBElasticPaginationConfiguration extends PaginationConfiguration {
5
+ client: DocDBElastic | DocDBElasticClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListClusterSnapshotsCommandInput, ListClusterSnapshotsCommandOutput } from "../commands/ListClusterSnapshotsCommand";
3
+ import { DocDBElasticPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListClusterSnapshots(config: DocDBElasticPaginationConfiguration, input: ListClusterSnapshotsCommandInput, ...additionalArguments: any): Paginator<ListClusterSnapshotsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
3
+ import { DocDBElasticPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListClusters(config: DocDBElasticPaginationConfiguration, input: ListClustersCommandInput, ...additionalArguments: any): Paginator<ListClustersCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListClusterSnapshotsPaginator";
3
+ export * from "./ListClustersPaginator";
@@ -0,0 +1,41 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateClusterCommandInput, CreateClusterCommandOutput } from "../commands/CreateClusterCommand";
4
+ import { CreateClusterSnapshotCommandInput, CreateClusterSnapshotCommandOutput } from "../commands/CreateClusterSnapshotCommand";
5
+ import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
6
+ import { DeleteClusterSnapshotCommandInput, DeleteClusterSnapshotCommandOutput } from "../commands/DeleteClusterSnapshotCommand";
7
+ import { GetClusterCommandInput, GetClusterCommandOutput } from "../commands/GetClusterCommand";
8
+ import { GetClusterSnapshotCommandInput, GetClusterSnapshotCommandOutput } from "../commands/GetClusterSnapshotCommand";
9
+ import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
10
+ import { ListClusterSnapshotsCommandInput, ListClusterSnapshotsCommandOutput } from "../commands/ListClusterSnapshotsCommand";
11
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
12
+ import { RestoreClusterFromSnapshotCommandInput, RestoreClusterFromSnapshotCommandOutput } from "../commands/RestoreClusterFromSnapshotCommand";
13
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
14
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
+ import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "../commands/UpdateClusterCommand";
16
+ export declare const serializeAws_restJson1CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ export declare const serializeAws_restJson1CreateClusterSnapshotCommand: (input: CreateClusterSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1DeleteClusterSnapshotCommand: (input: DeleteClusterSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1GetClusterCommand: (input: GetClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1GetClusterSnapshotCommand: (input: GetClusterSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1ListClustersCommand: (input: ListClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1ListClusterSnapshotsCommand: (input: ListClusterSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1RestoreClusterFromSnapshotCommand: (input: RestoreClusterFromSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1UpdateClusterCommand: (input: UpdateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const deserializeAws_restJson1CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
30
+ export declare const deserializeAws_restJson1CreateClusterSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterSnapshotCommandOutput>;
31
+ export declare const deserializeAws_restJson1DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
32
+ export declare const deserializeAws_restJson1DeleteClusterSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterSnapshotCommandOutput>;
33
+ export declare const deserializeAws_restJson1GetClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClusterCommandOutput>;
34
+ export declare const deserializeAws_restJson1GetClusterSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClusterSnapshotCommandOutput>;
35
+ export declare const deserializeAws_restJson1ListClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClustersCommandOutput>;
36
+ export declare const deserializeAws_restJson1ListClusterSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClusterSnapshotsCommandOutput>;
37
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
38
+ export declare const deserializeAws_restJson1RestoreClusterFromSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreClusterFromSnapshotCommandOutput>;
39
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
40
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
41
+ export declare const deserializeAws_restJson1UpdateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterCommandOutput>;
@@ -0,0 +1,42 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { DocDBElasticClientConfig } from "./DocDBElasticClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DocDBElasticClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ serviceId: string;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,42 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { DocDBElasticClientConfig } from "./DocDBElasticClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DocDBElasticClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ serviceId: string;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,41 @@
1
+ import { DocDBElasticClientConfig } from "./DocDBElasticClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: DocDBElasticClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ streamCollector: import("@aws-sdk/types").StreamCollector;
13
+ base64Decoder: import("@aws-sdk/types").Decoder;
14
+ base64Encoder: import("@aws-sdk/types").Encoder;
15
+ utf8Decoder: import("@aws-sdk/types").Decoder;
16
+ utf8Encoder: import("@aws-sdk/types").Encoder;
17
+ disableHostPrefix: boolean;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
20
+ logger: import("@aws-sdk/types").Logger;
21
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
+ serviceId: string;
24
+ region: string | import("@aws-sdk/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
27
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
32
+ tls?: boolean | undefined;
33
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
35
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
+ signingEscapePath?: boolean | undefined;
37
+ systemClockOffset?: number | undefined;
38
+ signingRegion?: string | undefined;
39
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
40
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
41
+ };
@@ -0,0 +1,16 @@
1
+ import { DocDBElasticClientConfig } from "./DocDBElasticClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: DocDBElasticClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@aws-sdk/types").Logger | undefined;
12
+ }) => import("@aws-sdk/types").EndpointV2;
13
+ logger: import("@aws-sdk/types").Logger;
14
+ serviceId: string;
15
+ urlParser: import("@aws-sdk/types").UrlParser;
16
+ };
@@ -0,0 +1,225 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateClusterCommandInput,
4
+ CreateClusterCommandOutput,
5
+ } from "./commands/CreateClusterCommand";
6
+ import {
7
+ CreateClusterSnapshotCommandInput,
8
+ CreateClusterSnapshotCommandOutput,
9
+ } from "./commands/CreateClusterSnapshotCommand";
10
+ import {
11
+ DeleteClusterCommandInput,
12
+ DeleteClusterCommandOutput,
13
+ } from "./commands/DeleteClusterCommand";
14
+ import {
15
+ DeleteClusterSnapshotCommandInput,
16
+ DeleteClusterSnapshotCommandOutput,
17
+ } from "./commands/DeleteClusterSnapshotCommand";
18
+ import {
19
+ GetClusterCommandInput,
20
+ GetClusterCommandOutput,
21
+ } from "./commands/GetClusterCommand";
22
+ import {
23
+ GetClusterSnapshotCommandInput,
24
+ GetClusterSnapshotCommandOutput,
25
+ } from "./commands/GetClusterSnapshotCommand";
26
+ import {
27
+ ListClustersCommandInput,
28
+ ListClustersCommandOutput,
29
+ } from "./commands/ListClustersCommand";
30
+ import {
31
+ ListClusterSnapshotsCommandInput,
32
+ ListClusterSnapshotsCommandOutput,
33
+ } from "./commands/ListClusterSnapshotsCommand";
34
+ import {
35
+ ListTagsForResourceCommandInput,
36
+ ListTagsForResourceCommandOutput,
37
+ } from "./commands/ListTagsForResourceCommand";
38
+ import {
39
+ RestoreClusterFromSnapshotCommandInput,
40
+ RestoreClusterFromSnapshotCommandOutput,
41
+ } from "./commands/RestoreClusterFromSnapshotCommand";
42
+ import {
43
+ TagResourceCommandInput,
44
+ TagResourceCommandOutput,
45
+ } from "./commands/TagResourceCommand";
46
+ import {
47
+ UntagResourceCommandInput,
48
+ UntagResourceCommandOutput,
49
+ } from "./commands/UntagResourceCommand";
50
+ import {
51
+ UpdateClusterCommandInput,
52
+ UpdateClusterCommandOutput,
53
+ } from "./commands/UpdateClusterCommand";
54
+ import { DocDBElasticClient } from "./DocDBElasticClient";
55
+ export declare class DocDBElastic extends DocDBElasticClient {
56
+ createCluster(
57
+ args: CreateClusterCommandInput,
58
+ options?: __HttpHandlerOptions
59
+ ): Promise<CreateClusterCommandOutput>;
60
+ createCluster(
61
+ args: CreateClusterCommandInput,
62
+ cb: (err: any, data?: CreateClusterCommandOutput) => void
63
+ ): void;
64
+ createCluster(
65
+ args: CreateClusterCommandInput,
66
+ options: __HttpHandlerOptions,
67
+ cb: (err: any, data?: CreateClusterCommandOutput) => void
68
+ ): void;
69
+ createClusterSnapshot(
70
+ args: CreateClusterSnapshotCommandInput,
71
+ options?: __HttpHandlerOptions
72
+ ): Promise<CreateClusterSnapshotCommandOutput>;
73
+ createClusterSnapshot(
74
+ args: CreateClusterSnapshotCommandInput,
75
+ cb: (err: any, data?: CreateClusterSnapshotCommandOutput) => void
76
+ ): void;
77
+ createClusterSnapshot(
78
+ args: CreateClusterSnapshotCommandInput,
79
+ options: __HttpHandlerOptions,
80
+ cb: (err: any, data?: CreateClusterSnapshotCommandOutput) => void
81
+ ): void;
82
+ deleteCluster(
83
+ args: DeleteClusterCommandInput,
84
+ options?: __HttpHandlerOptions
85
+ ): Promise<DeleteClusterCommandOutput>;
86
+ deleteCluster(
87
+ args: DeleteClusterCommandInput,
88
+ cb: (err: any, data?: DeleteClusterCommandOutput) => void
89
+ ): void;
90
+ deleteCluster(
91
+ args: DeleteClusterCommandInput,
92
+ options: __HttpHandlerOptions,
93
+ cb: (err: any, data?: DeleteClusterCommandOutput) => void
94
+ ): void;
95
+ deleteClusterSnapshot(
96
+ args: DeleteClusterSnapshotCommandInput,
97
+ options?: __HttpHandlerOptions
98
+ ): Promise<DeleteClusterSnapshotCommandOutput>;
99
+ deleteClusterSnapshot(
100
+ args: DeleteClusterSnapshotCommandInput,
101
+ cb: (err: any, data?: DeleteClusterSnapshotCommandOutput) => void
102
+ ): void;
103
+ deleteClusterSnapshot(
104
+ args: DeleteClusterSnapshotCommandInput,
105
+ options: __HttpHandlerOptions,
106
+ cb: (err: any, data?: DeleteClusterSnapshotCommandOutput) => void
107
+ ): void;
108
+ getCluster(
109
+ args: GetClusterCommandInput,
110
+ options?: __HttpHandlerOptions
111
+ ): Promise<GetClusterCommandOutput>;
112
+ getCluster(
113
+ args: GetClusterCommandInput,
114
+ cb: (err: any, data?: GetClusterCommandOutput) => void
115
+ ): void;
116
+ getCluster(
117
+ args: GetClusterCommandInput,
118
+ options: __HttpHandlerOptions,
119
+ cb: (err: any, data?: GetClusterCommandOutput) => void
120
+ ): void;
121
+ getClusterSnapshot(
122
+ args: GetClusterSnapshotCommandInput,
123
+ options?: __HttpHandlerOptions
124
+ ): Promise<GetClusterSnapshotCommandOutput>;
125
+ getClusterSnapshot(
126
+ args: GetClusterSnapshotCommandInput,
127
+ cb: (err: any, data?: GetClusterSnapshotCommandOutput) => void
128
+ ): void;
129
+ getClusterSnapshot(
130
+ args: GetClusterSnapshotCommandInput,
131
+ options: __HttpHandlerOptions,
132
+ cb: (err: any, data?: GetClusterSnapshotCommandOutput) => void
133
+ ): void;
134
+ listClusters(
135
+ args: ListClustersCommandInput,
136
+ options?: __HttpHandlerOptions
137
+ ): Promise<ListClustersCommandOutput>;
138
+ listClusters(
139
+ args: ListClustersCommandInput,
140
+ cb: (err: any, data?: ListClustersCommandOutput) => void
141
+ ): void;
142
+ listClusters(
143
+ args: ListClustersCommandInput,
144
+ options: __HttpHandlerOptions,
145
+ cb: (err: any, data?: ListClustersCommandOutput) => void
146
+ ): void;
147
+ listClusterSnapshots(
148
+ args: ListClusterSnapshotsCommandInput,
149
+ options?: __HttpHandlerOptions
150
+ ): Promise<ListClusterSnapshotsCommandOutput>;
151
+ listClusterSnapshots(
152
+ args: ListClusterSnapshotsCommandInput,
153
+ cb: (err: any, data?: ListClusterSnapshotsCommandOutput) => void
154
+ ): void;
155
+ listClusterSnapshots(
156
+ args: ListClusterSnapshotsCommandInput,
157
+ options: __HttpHandlerOptions,
158
+ cb: (err: any, data?: ListClusterSnapshotsCommandOutput) => void
159
+ ): void;
160
+ listTagsForResource(
161
+ args: ListTagsForResourceCommandInput,
162
+ options?: __HttpHandlerOptions
163
+ ): Promise<ListTagsForResourceCommandOutput>;
164
+ listTagsForResource(
165
+ args: ListTagsForResourceCommandInput,
166
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
167
+ ): void;
168
+ listTagsForResource(
169
+ args: ListTagsForResourceCommandInput,
170
+ options: __HttpHandlerOptions,
171
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
172
+ ): void;
173
+ restoreClusterFromSnapshot(
174
+ args: RestoreClusterFromSnapshotCommandInput,
175
+ options?: __HttpHandlerOptions
176
+ ): Promise<RestoreClusterFromSnapshotCommandOutput>;
177
+ restoreClusterFromSnapshot(
178
+ args: RestoreClusterFromSnapshotCommandInput,
179
+ cb: (err: any, data?: RestoreClusterFromSnapshotCommandOutput) => void
180
+ ): void;
181
+ restoreClusterFromSnapshot(
182
+ args: RestoreClusterFromSnapshotCommandInput,
183
+ options: __HttpHandlerOptions,
184
+ cb: (err: any, data?: RestoreClusterFromSnapshotCommandOutput) => void
185
+ ): void;
186
+ tagResource(
187
+ args: TagResourceCommandInput,
188
+ options?: __HttpHandlerOptions
189
+ ): Promise<TagResourceCommandOutput>;
190
+ tagResource(
191
+ args: TagResourceCommandInput,
192
+ cb: (err: any, data?: TagResourceCommandOutput) => void
193
+ ): void;
194
+ tagResource(
195
+ args: TagResourceCommandInput,
196
+ options: __HttpHandlerOptions,
197
+ cb: (err: any, data?: TagResourceCommandOutput) => void
198
+ ): void;
199
+ untagResource(
200
+ args: UntagResourceCommandInput,
201
+ options?: __HttpHandlerOptions
202
+ ): Promise<UntagResourceCommandOutput>;
203
+ untagResource(
204
+ args: UntagResourceCommandInput,
205
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
206
+ ): void;
207
+ untagResource(
208
+ args: UntagResourceCommandInput,
209
+ options: __HttpHandlerOptions,
210
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
211
+ ): void;
212
+ updateCluster(
213
+ args: UpdateClusterCommandInput,
214
+ options?: __HttpHandlerOptions
215
+ ): Promise<UpdateClusterCommandOutput>;
216
+ updateCluster(
217
+ args: UpdateClusterCommandInput,
218
+ cb: (err: any, data?: UpdateClusterCommandOutput) => void
219
+ ): void;
220
+ updateCluster(
221
+ args: UpdateClusterCommandInput,
222
+ options: __HttpHandlerOptions,
223
+ cb: (err: any, data?: UpdateClusterCommandOutput) => void
224
+ ): void;
225
+ }
@@ -0,0 +1,190 @@
1
+ import {
2
+ RegionInputConfig,
3
+ RegionResolvedConfig,
4
+ } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
9
+ import {
10
+ HostHeaderInputConfig,
11
+ HostHeaderResolvedConfig,
12
+ } from "@aws-sdk/middleware-host-header";
13
+ import {
14
+ RetryInputConfig,
15
+ RetryResolvedConfig,
16
+ } from "@aws-sdk/middleware-retry";
17
+ import {
18
+ AwsAuthInputConfig,
19
+ AwsAuthResolvedConfig,
20
+ } from "@aws-sdk/middleware-signing";
21
+ import {
22
+ UserAgentInputConfig,
23
+ UserAgentResolvedConfig,
24
+ } from "@aws-sdk/middleware-user-agent";
25
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
26
+ import {
27
+ Client as __Client,
28
+ DefaultsMode,
29
+ SmithyConfiguration as __SmithyConfiguration,
30
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
31
+ } from "@aws-sdk/smithy-client";
32
+ import {
33
+ BodyLengthCalculator as __BodyLengthCalculator,
34
+ Credentials as __Credentials,
35
+ Decoder as __Decoder,
36
+ Encoder as __Encoder,
37
+ HashConstructor as __HashConstructor,
38
+ HttpHandlerOptions as __HttpHandlerOptions,
39
+ Logger as __Logger,
40
+ Provider as __Provider,
41
+ Provider,
42
+ StreamCollector as __StreamCollector,
43
+ UrlParser as __UrlParser,
44
+ UserAgent as __UserAgent,
45
+ } from "@aws-sdk/types";
46
+ import {
47
+ CreateClusterCommandInput,
48
+ CreateClusterCommandOutput,
49
+ } from "./commands/CreateClusterCommand";
50
+ import {
51
+ CreateClusterSnapshotCommandInput,
52
+ CreateClusterSnapshotCommandOutput,
53
+ } from "./commands/CreateClusterSnapshotCommand";
54
+ import {
55
+ DeleteClusterCommandInput,
56
+ DeleteClusterCommandOutput,
57
+ } from "./commands/DeleteClusterCommand";
58
+ import {
59
+ DeleteClusterSnapshotCommandInput,
60
+ DeleteClusterSnapshotCommandOutput,
61
+ } from "./commands/DeleteClusterSnapshotCommand";
62
+ import {
63
+ GetClusterCommandInput,
64
+ GetClusterCommandOutput,
65
+ } from "./commands/GetClusterCommand";
66
+ import {
67
+ GetClusterSnapshotCommandInput,
68
+ GetClusterSnapshotCommandOutput,
69
+ } from "./commands/GetClusterSnapshotCommand";
70
+ import {
71
+ ListClustersCommandInput,
72
+ ListClustersCommandOutput,
73
+ } from "./commands/ListClustersCommand";
74
+ import {
75
+ ListClusterSnapshotsCommandInput,
76
+ ListClusterSnapshotsCommandOutput,
77
+ } from "./commands/ListClusterSnapshotsCommand";
78
+ import {
79
+ ListTagsForResourceCommandInput,
80
+ ListTagsForResourceCommandOutput,
81
+ } from "./commands/ListTagsForResourceCommand";
82
+ import {
83
+ RestoreClusterFromSnapshotCommandInput,
84
+ RestoreClusterFromSnapshotCommandOutput,
85
+ } from "./commands/RestoreClusterFromSnapshotCommand";
86
+ import {
87
+ TagResourceCommandInput,
88
+ TagResourceCommandOutput,
89
+ } from "./commands/TagResourceCommand";
90
+ import {
91
+ UntagResourceCommandInput,
92
+ UntagResourceCommandOutput,
93
+ } from "./commands/UntagResourceCommand";
94
+ import {
95
+ UpdateClusterCommandInput,
96
+ UpdateClusterCommandOutput,
97
+ } from "./commands/UpdateClusterCommand";
98
+ import {
99
+ ClientInputEndpointParameters,
100
+ ClientResolvedEndpointParameters,
101
+ EndpointParameters,
102
+ } from "./endpoint/EndpointParameters";
103
+ export declare type ServiceInputTypes =
104
+ | CreateClusterCommandInput
105
+ | CreateClusterSnapshotCommandInput
106
+ | DeleteClusterCommandInput
107
+ | DeleteClusterSnapshotCommandInput
108
+ | GetClusterCommandInput
109
+ | GetClusterSnapshotCommandInput
110
+ | ListClusterSnapshotsCommandInput
111
+ | ListClustersCommandInput
112
+ | ListTagsForResourceCommandInput
113
+ | RestoreClusterFromSnapshotCommandInput
114
+ | TagResourceCommandInput
115
+ | UntagResourceCommandInput
116
+ | UpdateClusterCommandInput;
117
+ export declare type ServiceOutputTypes =
118
+ | CreateClusterCommandOutput
119
+ | CreateClusterSnapshotCommandOutput
120
+ | DeleteClusterCommandOutput
121
+ | DeleteClusterSnapshotCommandOutput
122
+ | GetClusterCommandOutput
123
+ | GetClusterSnapshotCommandOutput
124
+ | ListClusterSnapshotsCommandOutput
125
+ | ListClustersCommandOutput
126
+ | ListTagsForResourceCommandOutput
127
+ | RestoreClusterFromSnapshotCommandOutput
128
+ | TagResourceCommandOutput
129
+ | UntagResourceCommandOutput
130
+ | UpdateClusterCommandOutput;
131
+ export interface ClientDefaults
132
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
133
+ requestHandler?: __HttpHandler;
134
+ sha256?: __HashConstructor;
135
+ urlParser?: __UrlParser;
136
+ bodyLengthChecker?: __BodyLengthCalculator;
137
+ streamCollector?: __StreamCollector;
138
+ base64Decoder?: __Decoder;
139
+ base64Encoder?: __Encoder;
140
+ utf8Decoder?: __Decoder;
141
+ utf8Encoder?: __Encoder;
142
+ runtime?: string;
143
+ disableHostPrefix?: boolean;
144
+ maxAttempts?: number | __Provider<number>;
145
+ retryMode?: string | __Provider<string>;
146
+ logger?: __Logger;
147
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
148
+ useFipsEndpoint?: boolean | __Provider<boolean>;
149
+ serviceId?: string;
150
+ region?: string | __Provider<string>;
151
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
152
+ defaultUserAgentProvider?: Provider<__UserAgent>;
153
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
154
+ }
155
+ declare type DocDBElasticClientConfigType = Partial<
156
+ __SmithyConfiguration<__HttpHandlerOptions>
157
+ > &
158
+ ClientDefaults &
159
+ RegionInputConfig &
160
+ EndpointInputConfig<EndpointParameters> &
161
+ RetryInputConfig &
162
+ HostHeaderInputConfig &
163
+ AwsAuthInputConfig &
164
+ UserAgentInputConfig &
165
+ ClientInputEndpointParameters;
166
+ export interface DocDBElasticClientConfig
167
+ extends DocDBElasticClientConfigType {}
168
+ declare type DocDBElasticClientResolvedConfigType =
169
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
170
+ Required<ClientDefaults> &
171
+ RegionResolvedConfig &
172
+ EndpointResolvedConfig<EndpointParameters> &
173
+ RetryResolvedConfig &
174
+ HostHeaderResolvedConfig &
175
+ AwsAuthResolvedConfig &
176
+ UserAgentResolvedConfig &
177
+ ClientResolvedEndpointParameters;
178
+ export interface DocDBElasticClientResolvedConfig
179
+ extends DocDBElasticClientResolvedConfigType {}
180
+ export declare class DocDBElasticClient extends __Client<
181
+ __HttpHandlerOptions,
182
+ ServiceInputTypes,
183
+ ServiceOutputTypes,
184
+ DocDBElasticClientResolvedConfig
185
+ > {
186
+ readonly config: DocDBElasticClientResolvedConfig;
187
+ constructor(configuration: DocDBElasticClientConfig);
188
+ destroy(): void;
189
+ }
190
+ export {};