@aws-sdk/client-cloudsearch-domain 3.169.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,220 +1,143 @@
1
-
2
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
3
- import { Readable } from "stream";
4
- import { CloudSearchDomainServiceException as __BaseException } from "./CloudSearchDomainServiceException";
5
-
6
- export declare class SearchException extends __BaseException {
7
- readonly name: "SearchException";
8
- readonly $fault: "client";
9
-
10
- constructor(opts: __ExceptionOptionType<SearchException, __BaseException>);
11
- }
12
- export declare type QueryParser = "dismax" | "lucene" | "simple" | "structured";
13
-
14
- export interface SearchRequest {
15
-
16
- cursor?: string;
17
-
18
- expr?: string;
19
-
20
- facet?: string;
21
-
22
- filterQuery?: string;
23
-
24
- highlight?: string;
25
-
26
- partial?: boolean;
27
-
28
- query: string | undefined;
29
-
30
- queryOptions?: string;
31
-
32
- queryParser?: QueryParser | string;
33
-
34
- return?: string;
35
-
36
- size?: number;
37
-
38
- sort?: string;
39
-
40
- start?: number;
41
-
42
- stats?: string;
43
- }
44
-
45
- export interface Bucket {
46
-
47
- value?: string;
48
-
49
- count?: number;
50
- }
51
-
52
- export interface BucketInfo {
53
-
54
- buckets?: Bucket[];
55
- }
56
-
57
- export interface Hit {
58
-
59
- id?: string;
60
-
61
- fields?: Record<string, string[]>;
62
-
63
- exprs?: Record<string, string>;
64
-
65
- highlights?: Record<string, string>;
66
- }
67
-
68
- export interface Hits {
69
-
70
- found?: number;
71
-
72
- start?: number;
73
-
74
- cursor?: string;
75
-
76
- hit?: Hit[];
77
- }
78
-
79
- export interface FieldStats {
80
-
81
- min?: string;
82
-
83
- max?: string;
84
-
85
- count?: number;
86
-
87
- missing?: number;
88
-
89
- sum?: number;
90
-
91
- sumOfSquares?: number;
92
-
93
- mean?: string;
94
-
95
- stddev?: number;
96
- }
97
-
98
- export interface SearchStatus {
99
-
100
- timems?: number;
101
-
102
- rid?: string;
103
- }
104
-
105
- export interface SearchResponse {
106
-
107
- status?: SearchStatus;
108
-
109
- hits?: Hits;
110
-
111
- facets?: Record<string, BucketInfo>;
112
-
113
- stats?: Record<string, FieldStats>;
114
- }
115
-
116
- export interface SuggestRequest {
117
-
118
- query: string | undefined;
119
-
120
- suggester: string | undefined;
121
-
122
- size?: number;
123
- }
124
-
125
- export interface SuggestStatus {
126
-
127
- timems?: number;
128
-
129
- rid?: string;
130
- }
131
-
132
- export interface SuggestionMatch {
133
-
134
- suggestion?: string;
135
-
136
- score?: number;
137
-
138
- id?: string;
139
- }
140
-
141
- export interface SuggestModel {
142
-
143
- query?: string;
144
-
145
- found?: number;
146
-
147
- suggestions?: SuggestionMatch[];
148
- }
149
-
150
- export interface SuggestResponse {
151
-
152
- status?: SuggestStatus;
153
-
154
- suggest?: SuggestModel;
155
- }
156
-
157
- export declare class DocumentServiceException extends __BaseException {
158
- readonly name: "DocumentServiceException";
159
- readonly $fault: "client";
160
-
161
- status?: string;
162
-
163
- constructor(opts: __ExceptionOptionType<DocumentServiceException, __BaseException>);
164
- }
165
- export declare type ContentType = "application/json" | "application/xml";
166
-
167
- export interface UploadDocumentsRequest {
168
-
169
- documents: Readable | ReadableStream | Blob | undefined;
170
-
171
- contentType: ContentType | string | undefined;
172
- }
173
-
174
- export interface DocumentServiceWarning {
175
-
176
- message?: string;
177
- }
178
-
179
- export interface UploadDocumentsResponse {
180
-
181
- status?: string;
182
-
183
- adds?: number;
184
-
185
- deletes?: number;
186
-
187
- warnings?: DocumentServiceWarning[];
188
- }
189
-
190
- export declare const SearchRequestFilterSensitiveLog: (obj: SearchRequest) => any;
191
-
192
- export declare const BucketFilterSensitiveLog: (obj: Bucket) => any;
193
-
194
- export declare const BucketInfoFilterSensitiveLog: (obj: BucketInfo) => any;
195
-
196
- export declare const HitFilterSensitiveLog: (obj: Hit) => any;
197
-
198
- export declare const HitsFilterSensitiveLog: (obj: Hits) => any;
199
-
200
- export declare const FieldStatsFilterSensitiveLog: (obj: FieldStats) => any;
201
-
202
- export declare const SearchStatusFilterSensitiveLog: (obj: SearchStatus) => any;
203
-
204
- export declare const SearchResponseFilterSensitiveLog: (obj: SearchResponse) => any;
205
-
206
- export declare const SuggestRequestFilterSensitiveLog: (obj: SuggestRequest) => any;
207
-
208
- export declare const SuggestStatusFilterSensitiveLog: (obj: SuggestStatus) => any;
209
-
210
- export declare const SuggestionMatchFilterSensitiveLog: (obj: SuggestionMatch) => any;
211
-
212
- export declare const SuggestModelFilterSensitiveLog: (obj: SuggestModel) => any;
213
-
214
- export declare const SuggestResponseFilterSensitiveLog: (obj: SuggestResponse) => any;
215
-
216
- export declare const UploadDocumentsRequestFilterSensitiveLog: (obj: UploadDocumentsRequest) => any;
217
-
218
- export declare const DocumentServiceWarningFilterSensitiveLog: (obj: DocumentServiceWarning) => any;
219
-
220
- export declare const UploadDocumentsResponseFilterSensitiveLog: (obj: UploadDocumentsResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { Readable } from "stream";
3
+ import { CloudSearchDomainServiceException as __BaseException } from "./CloudSearchDomainServiceException";
4
+ export declare class SearchException extends __BaseException {
5
+ readonly name: "SearchException";
6
+ readonly $fault: "client";
7
+ constructor(opts: __ExceptionOptionType<SearchException, __BaseException>);
8
+ }
9
+ export declare type QueryParser = "dismax" | "lucene" | "simple" | "structured";
10
+ export interface SearchRequest {
11
+ cursor?: string;
12
+ expr?: string;
13
+ facet?: string;
14
+ filterQuery?: string;
15
+ highlight?: string;
16
+ partial?: boolean;
17
+ query: string | undefined;
18
+ queryOptions?: string;
19
+ queryParser?: QueryParser | string;
20
+ return?: string;
21
+ size?: number;
22
+ sort?: string;
23
+ start?: number;
24
+ stats?: string;
25
+ }
26
+ export interface Bucket {
27
+ value?: string;
28
+ count?: number;
29
+ }
30
+ export interface BucketInfo {
31
+ buckets?: Bucket[];
32
+ }
33
+ export interface Hit {
34
+ id?: string;
35
+ fields?: Record<string, string[]>;
36
+ exprs?: Record<string, string>;
37
+ highlights?: Record<string, string>;
38
+ }
39
+ export interface Hits {
40
+ found?: number;
41
+ start?: number;
42
+ cursor?: string;
43
+ hit?: Hit[];
44
+ }
45
+ export interface FieldStats {
46
+ min?: string;
47
+ max?: string;
48
+ count?: number;
49
+ missing?: number;
50
+ sum?: number;
51
+ sumOfSquares?: number;
52
+ mean?: string;
53
+ stddev?: number;
54
+ }
55
+ export interface SearchStatus {
56
+ timems?: number;
57
+ rid?: string;
58
+ }
59
+ export interface SearchResponse {
60
+ status?: SearchStatus;
61
+ hits?: Hits;
62
+ facets?: Record<string, BucketInfo>;
63
+ stats?: Record<string, FieldStats>;
64
+ }
65
+ export interface SuggestRequest {
66
+ query: string | undefined;
67
+ suggester: string | undefined;
68
+ size?: number;
69
+ }
70
+ export interface SuggestStatus {
71
+ timems?: number;
72
+ rid?: string;
73
+ }
74
+ export interface SuggestionMatch {
75
+ suggestion?: string;
76
+ score?: number;
77
+ id?: string;
78
+ }
79
+ export interface SuggestModel {
80
+ query?: string;
81
+ found?: number;
82
+ suggestions?: SuggestionMatch[];
83
+ }
84
+ export interface SuggestResponse {
85
+ status?: SuggestStatus;
86
+ suggest?: SuggestModel;
87
+ }
88
+ export declare class DocumentServiceException extends __BaseException {
89
+ readonly name: "DocumentServiceException";
90
+ readonly $fault: "client";
91
+ status?: string;
92
+ constructor(
93
+ opts: __ExceptionOptionType<DocumentServiceException, __BaseException>
94
+ );
95
+ }
96
+ export declare type ContentType = "application/json" | "application/xml";
97
+ export interface UploadDocumentsRequest {
98
+ documents: Readable | ReadableStream | Blob | undefined;
99
+ contentType: ContentType | string | undefined;
100
+ }
101
+ export interface DocumentServiceWarning {
102
+ message?: string;
103
+ }
104
+ export interface UploadDocumentsResponse {
105
+ status?: string;
106
+ adds?: number;
107
+ deletes?: number;
108
+ warnings?: DocumentServiceWarning[];
109
+ }
110
+ export declare const SearchRequestFilterSensitiveLog: (
111
+ obj: SearchRequest
112
+ ) => any;
113
+ export declare const BucketFilterSensitiveLog: (obj: Bucket) => any;
114
+ export declare const BucketInfoFilterSensitiveLog: (obj: BucketInfo) => any;
115
+ export declare const HitFilterSensitiveLog: (obj: Hit) => any;
116
+ export declare const HitsFilterSensitiveLog: (obj: Hits) => any;
117
+ export declare const FieldStatsFilterSensitiveLog: (obj: FieldStats) => any;
118
+ export declare const SearchStatusFilterSensitiveLog: (obj: SearchStatus) => any;
119
+ export declare const SearchResponseFilterSensitiveLog: (
120
+ obj: SearchResponse
121
+ ) => any;
122
+ export declare const SuggestRequestFilterSensitiveLog: (
123
+ obj: SuggestRequest
124
+ ) => any;
125
+ export declare const SuggestStatusFilterSensitiveLog: (
126
+ obj: SuggestStatus
127
+ ) => any;
128
+ export declare const SuggestionMatchFilterSensitiveLog: (
129
+ obj: SuggestionMatch
130
+ ) => any;
131
+ export declare const SuggestModelFilterSensitiveLog: (obj: SuggestModel) => any;
132
+ export declare const SuggestResponseFilterSensitiveLog: (
133
+ obj: SuggestResponse
134
+ ) => any;
135
+ export declare const UploadDocumentsRequestFilterSensitiveLog: (
136
+ obj: UploadDocumentsRequest
137
+ ) => any;
138
+ export declare const DocumentServiceWarningFilterSensitiveLog: (
139
+ obj: DocumentServiceWarning
140
+ ) => any;
141
+ export declare const UploadDocumentsResponseFilterSensitiveLog: (
142
+ obj: UploadDocumentsResponse
143
+ ) => any;
@@ -1,11 +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 { SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand";
4
- import { SuggestCommandInput, SuggestCommandOutput } from "../commands/SuggestCommand";
5
- import { UploadDocumentsCommandInput, UploadDocumentsCommandOutput } from "../commands/UploadDocumentsCommand";
6
- export declare const serializeAws_restJson1SearchCommand: (input: SearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
7
- export declare const serializeAws_restJson1SuggestCommand: (input: SuggestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
8
- export declare const serializeAws_restJson1UploadDocumentsCommand: (input: UploadDocumentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
- export declare const deserializeAws_restJson1SearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchCommandOutput>;
10
- export declare const deserializeAws_restJson1SuggestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SuggestCommandOutput>;
11
- export declare const deserializeAws_restJson1UploadDocumentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UploadDocumentsCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ SearchCommandInput,
8
+ SearchCommandOutput,
9
+ } from "../commands/SearchCommand";
10
+ import {
11
+ SuggestCommandInput,
12
+ SuggestCommandOutput,
13
+ } from "../commands/SuggestCommand";
14
+ import {
15
+ UploadDocumentsCommandInput,
16
+ UploadDocumentsCommandOutput,
17
+ } from "../commands/UploadDocumentsCommand";
18
+ export declare const serializeAws_restJson1SearchCommand: (
19
+ input: SearchCommandInput,
20
+ context: __SerdeContext
21
+ ) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1SuggestCommand: (
23
+ input: SuggestCommandInput,
24
+ context: __SerdeContext
25
+ ) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1UploadDocumentsCommand: (
27
+ input: UploadDocumentsCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const deserializeAws_restJson1SearchCommand: (
31
+ output: __HttpResponse,
32
+ context: __SerdeContext
33
+ ) => Promise<SearchCommandOutput>;
34
+ export declare const deserializeAws_restJson1SuggestCommand: (
35
+ output: __HttpResponse,
36
+ context: __SerdeContext
37
+ ) => Promise<SuggestCommandOutput>;
38
+ export declare const deserializeAws_restJson1UploadDocumentsCommand: (
39
+ output: __HttpResponse,
40
+ context: __SerdeContext
41
+ ) => Promise<UploadDocumentsCommandOutput>;
@@ -1,38 +1,67 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient";
3
-
4
- export declare const getRuntimeConfig: (config: CloudSearchDomainClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
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
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: CloudSearchDomainClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
20
+ region: string | import("@aws-sdk/types").Provider<any>;
21
+ requestHandler:
22
+ | (import("@aws-sdk/types").RequestHandler<
23
+ any,
24
+ any,
25
+ import("@aws-sdk/types").HttpHandlerOptions
26
+ > &
27
+ import("@aws-sdk/protocol-http").HttpHandler)
28
+ | RequestHandler;
29
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
30
+ sha256: import("@aws-sdk/types").HashConstructor;
31
+ streamCollector: import("@aws-sdk/types").StreamCollector;
32
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ utf8Decoder: import("@aws-sdk/types").Decoder;
35
+ utf8Encoder: import("@aws-sdk/types").Encoder;
36
+ apiVersion: string;
37
+ urlParser: import("@aws-sdk/types").UrlParser;
38
+ disableHostPrefix: boolean;
39
+ logger: import("@aws-sdk/types").Logger;
40
+ serviceId: string;
41
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };
@@ -1,38 +1,67 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient";
3
-
4
- export declare const getRuntimeConfig: (config: CloudSearchDomainClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
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
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: CloudSearchDomainClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
20
+ region: string | import("@aws-sdk/types").Provider<string>;
21
+ requestHandler:
22
+ | (import("@aws-sdk/types").RequestHandler<
23
+ any,
24
+ any,
25
+ import("@aws-sdk/types").HttpHandlerOptions
26
+ > &
27
+ import("@aws-sdk/protocol-http").HttpHandler)
28
+ | RequestHandler;
29
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
30
+ sha256: import("@aws-sdk/types").HashConstructor;
31
+ streamCollector: import("@aws-sdk/types").StreamCollector;
32
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ utf8Decoder: import("@aws-sdk/types").Decoder;
35
+ utf8Encoder: import("@aws-sdk/types").Encoder;
36
+ apiVersion: string;
37
+ urlParser: import("@aws-sdk/types").UrlParser;
38
+ disableHostPrefix: boolean;
39
+ logger: import("@aws-sdk/types").Logger;
40
+ serviceId: string;
41
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };