@aws-sdk/client-cloudsearch 3.183.0 → 3.185.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_query.js +2 -2
- package/dist-es/CloudSearch.js +113 -106
- package/dist-es/CloudSearchClient.js +28 -22
- package/dist-es/commands/BuildSuggestersCommand.js +28 -21
- package/dist-es/commands/CreateDomainCommand.js +28 -21
- package/dist-es/commands/DefineAnalysisSchemeCommand.js +28 -21
- package/dist-es/commands/DefineExpressionCommand.js +28 -21
- package/dist-es/commands/DefineIndexFieldCommand.js +28 -21
- package/dist-es/commands/DefineSuggesterCommand.js +28 -21
- package/dist-es/commands/DeleteAnalysisSchemeCommand.js +28 -21
- package/dist-es/commands/DeleteDomainCommand.js +28 -21
- package/dist-es/commands/DeleteExpressionCommand.js +28 -21
- package/dist-es/commands/DeleteIndexFieldCommand.js +28 -21
- package/dist-es/commands/DeleteSuggesterCommand.js +28 -21
- package/dist-es/commands/DescribeAnalysisSchemesCommand.js +28 -21
- package/dist-es/commands/DescribeAvailabilityOptionsCommand.js +28 -21
- package/dist-es/commands/DescribeDomainEndpointOptionsCommand.js +28 -21
- package/dist-es/commands/DescribeDomainsCommand.js +28 -21
- package/dist-es/commands/DescribeExpressionsCommand.js +28 -21
- package/dist-es/commands/DescribeIndexFieldsCommand.js +28 -21
- package/dist-es/commands/DescribeScalingParametersCommand.js +28 -21
- package/dist-es/commands/DescribeServiceAccessPoliciesCommand.js +28 -21
- package/dist-es/commands/DescribeSuggestersCommand.js +28 -21
- package/dist-es/commands/IndexDocumentsCommand.js +28 -21
- package/dist-es/commands/ListDomainNamesCommand.js +29 -22
- package/dist-es/commands/UpdateAvailabilityOptionsCommand.js +28 -21
- package/dist-es/commands/UpdateDomainEndpointOptionsCommand.js +28 -21
- package/dist-es/commands/UpdateScalingParametersCommand.js +28 -21
- package/dist-es/commands/UpdateServiceAccessPoliciesCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CloudSearchServiceException.js +10 -5
- package/dist-es/models/models_0.js +187 -350
- package/dist-es/protocols/Aws_query.js +2483 -1887
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,364 +1,201 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { CloudSearchServiceException as __BaseException } from "./CloudSearchServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
this.Code = opts.Code;
|
|
13
|
-
this.Message = opts.Message;
|
|
3
|
+
var BaseException = (function (_super) {
|
|
4
|
+
__extends(BaseException, _super);
|
|
5
|
+
function BaseException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "BaseException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "BaseException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, BaseException.prototype);
|
|
10
|
+
_this.Code = opts.Code;
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
14
13
|
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
14
|
+
return BaseException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { BaseException };
|
|
17
|
+
var InternalException = (function (_super) {
|
|
18
|
+
__extends(InternalException, _super);
|
|
19
|
+
function InternalException(opts) {
|
|
20
|
+
var _this = _super.call(this, __assign({ name: "InternalException", $fault: "server" }, opts)) || this;
|
|
21
|
+
_this.name = "InternalException";
|
|
22
|
+
_this.$fault = "server";
|
|
23
|
+
Object.setPrototypeOf(_this, InternalException.prototype);
|
|
24
|
+
_this.Code = opts.Code;
|
|
25
|
+
_this.Message = opts.Message;
|
|
26
|
+
return _this;
|
|
28
27
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
28
|
+
return InternalException;
|
|
29
|
+
}(__BaseException));
|
|
30
|
+
export { InternalException };
|
|
31
|
+
var ResourceNotFoundException = (function (_super) {
|
|
32
|
+
__extends(ResourceNotFoundException, _super);
|
|
33
|
+
function ResourceNotFoundException(opts) {
|
|
34
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
35
|
+
_this.name = "ResourceNotFoundException";
|
|
36
|
+
_this.$fault = "client";
|
|
37
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
38
|
+
_this.Code = opts.Code;
|
|
39
|
+
_this.Message = opts.Message;
|
|
40
|
+
return _this;
|
|
42
41
|
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
42
|
+
return ResourceNotFoundException;
|
|
43
|
+
}(__BaseException));
|
|
44
|
+
export { ResourceNotFoundException };
|
|
45
|
+
var ValidationException = (function (_super) {
|
|
46
|
+
__extends(ValidationException, _super);
|
|
47
|
+
function ValidationException(opts) {
|
|
48
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
49
|
+
_this.name = "ValidationException";
|
|
50
|
+
_this.$fault = "client";
|
|
51
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
52
|
+
_this.Code = opts.Code;
|
|
53
|
+
_this.Message = opts.Message;
|
|
54
|
+
return _this;
|
|
56
55
|
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
56
|
+
return ValidationException;
|
|
57
|
+
}(__BaseException));
|
|
58
|
+
export { ValidationException };
|
|
59
|
+
var LimitExceededException = (function (_super) {
|
|
60
|
+
__extends(LimitExceededException, _super);
|
|
61
|
+
function LimitExceededException(opts) {
|
|
62
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
63
|
+
_this.name = "LimitExceededException";
|
|
64
|
+
_this.$fault = "client";
|
|
65
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
66
|
+
_this.Code = opts.Code;
|
|
67
|
+
_this.Message = opts.Message;
|
|
68
|
+
return _this;
|
|
70
69
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
70
|
+
return LimitExceededException;
|
|
71
|
+
}(__BaseException));
|
|
72
|
+
export { LimitExceededException };
|
|
73
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
74
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
75
|
+
function ResourceAlreadyExistsException(opts) {
|
|
76
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
77
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
78
|
+
_this.$fault = "client";
|
|
79
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
80
|
+
_this.Code = opts.Code;
|
|
81
|
+
_this.Message = opts.Message;
|
|
82
|
+
return _this;
|
|
84
83
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
84
|
+
return ResourceAlreadyExistsException;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { ResourceAlreadyExistsException };
|
|
87
|
+
var InvalidTypeException = (function (_super) {
|
|
88
|
+
__extends(InvalidTypeException, _super);
|
|
89
|
+
function InvalidTypeException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "InvalidTypeException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "InvalidTypeException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, InvalidTypeException.prototype);
|
|
94
|
+
_this.Code = opts.Code;
|
|
95
|
+
_this.Message = opts.Message;
|
|
96
|
+
return _this;
|
|
98
97
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
98
|
+
return InvalidTypeException;
|
|
99
|
+
}(__BaseException));
|
|
100
|
+
export { InvalidTypeException };
|
|
101
|
+
var DisabledOperationException = (function (_super) {
|
|
102
|
+
__extends(DisabledOperationException, _super);
|
|
103
|
+
function DisabledOperationException(opts) {
|
|
104
|
+
var _this = _super.call(this, __assign({ name: "DisabledOperationException", $fault: "client" }, opts)) || this;
|
|
105
|
+
_this.name = "DisabledOperationException";
|
|
106
|
+
_this.$fault = "client";
|
|
107
|
+
Object.setPrototypeOf(_this, DisabledOperationException.prototype);
|
|
108
|
+
_this.Code = opts.Code;
|
|
109
|
+
_this.Message = opts.Message;
|
|
110
|
+
return _this;
|
|
112
111
|
}
|
|
113
|
-
|
|
112
|
+
return DisabledOperationException;
|
|
113
|
+
}(__BaseException));
|
|
114
|
+
export { DisabledOperationException };
|
|
114
115
|
export var TLSSecurityPolicy;
|
|
115
116
|
(function (TLSSecurityPolicy) {
|
|
116
117
|
TLSSecurityPolicy["POLICY_MIN_TLS_1_0_2019_07"] = "Policy-Min-TLS-1-0-2019-07";
|
|
117
118
|
TLSSecurityPolicy["POLICY_MIN_TLS_1_2_2019_07"] = "Policy-Min-TLS-1-2-2019-07";
|
|
118
119
|
})(TLSSecurityPolicy || (TLSSecurityPolicy = {}));
|
|
119
|
-
export
|
|
120
|
-
|
|
121
|
-
});
|
|
122
|
-
export
|
|
123
|
-
|
|
124
|
-
});
|
|
125
|
-
export
|
|
126
|
-
|
|
127
|
-
});
|
|
128
|
-
export
|
|
129
|
-
|
|
130
|
-
});
|
|
131
|
-
export
|
|
132
|
-
|
|
133
|
-
});
|
|
134
|
-
export
|
|
135
|
-
|
|
136
|
-
});
|
|
137
|
-
export
|
|
138
|
-
|
|
139
|
-
});
|
|
140
|
-
export
|
|
141
|
-
|
|
142
|
-
});
|
|
143
|
-
export
|
|
144
|
-
|
|
145
|
-
});
|
|
146
|
-
export
|
|
147
|
-
|
|
148
|
-
});
|
|
149
|
-
export
|
|
150
|
-
|
|
151
|
-
});
|
|
152
|
-
export
|
|
153
|
-
|
|
154
|
-
});
|
|
155
|
-
export
|
|
156
|
-
|
|
157
|
-
});
|
|
158
|
-
export
|
|
159
|
-
|
|
160
|
-
});
|
|
161
|
-
export
|
|
162
|
-
|
|
163
|
-
});
|
|
164
|
-
export
|
|
165
|
-
|
|
166
|
-
});
|
|
167
|
-
export
|
|
168
|
-
|
|
169
|
-
});
|
|
170
|
-
export
|
|
171
|
-
|
|
172
|
-
});
|
|
173
|
-
export
|
|
174
|
-
|
|
175
|
-
});
|
|
176
|
-
export
|
|
177
|
-
|
|
178
|
-
});
|
|
179
|
-
export
|
|
180
|
-
|
|
181
|
-
});
|
|
182
|
-
export
|
|
183
|
-
|
|
184
|
-
});
|
|
185
|
-
export
|
|
186
|
-
|
|
187
|
-
});
|
|
188
|
-
export
|
|
189
|
-
|
|
190
|
-
});
|
|
191
|
-
export
|
|
192
|
-
|
|
193
|
-
});
|
|
194
|
-
export
|
|
195
|
-
|
|
196
|
-
});
|
|
197
|
-
export
|
|
198
|
-
|
|
199
|
-
});
|
|
200
|
-
export
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
|
-
export const IndexFieldFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
});
|
|
206
|
-
export const DefineIndexFieldRequestFilterSensitiveLog = (obj) => ({
|
|
207
|
-
...obj,
|
|
208
|
-
});
|
|
209
|
-
export const IndexFieldStatusFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
});
|
|
212
|
-
export const DefineIndexFieldResponseFilterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
});
|
|
215
|
-
export const DocumentSuggesterOptionsFilterSensitiveLog = (obj) => ({
|
|
216
|
-
...obj,
|
|
217
|
-
});
|
|
218
|
-
export const SuggesterFilterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
|
-
export const DefineSuggesterRequestFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
export const SuggesterStatusFilterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
});
|
|
227
|
-
export const DefineSuggesterResponseFilterSensitiveLog = (obj) => ({
|
|
228
|
-
...obj,
|
|
229
|
-
});
|
|
230
|
-
export const DeleteAnalysisSchemeRequestFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
export const DeleteAnalysisSchemeResponseFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
});
|
|
236
|
-
export const DeleteDomainRequestFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
export const DeleteDomainResponseFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
export const DeleteExpressionRequestFilterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
export const DeleteExpressionResponseFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
});
|
|
248
|
-
export const DeleteIndexFieldRequestFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const DeleteIndexFieldResponseFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
export const DeleteSuggesterRequestFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
export const DeleteSuggesterResponseFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
});
|
|
260
|
-
export const DescribeAnalysisSchemesRequestFilterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
export const DescribeAnalysisSchemesResponseFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
});
|
|
266
|
-
export const DescribeAvailabilityOptionsRequestFilterSensitiveLog = (obj) => ({
|
|
267
|
-
...obj,
|
|
268
|
-
});
|
|
269
|
-
export const AvailabilityOptionsStatusFilterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
export const DescribeAvailabilityOptionsResponseFilterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
});
|
|
275
|
-
export const DescribeDomainEndpointOptionsRequestFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
export const DomainEndpointOptionsFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
});
|
|
281
|
-
export const DomainEndpointOptionsStatusFilterSensitiveLog = (obj) => ({
|
|
282
|
-
...obj,
|
|
283
|
-
});
|
|
284
|
-
export const DescribeDomainEndpointOptionsResponseFilterSensitiveLog = (obj) => ({
|
|
285
|
-
...obj,
|
|
286
|
-
});
|
|
287
|
-
export const DescribeDomainsRequestFilterSensitiveLog = (obj) => ({
|
|
288
|
-
...obj,
|
|
289
|
-
});
|
|
290
|
-
export const DescribeDomainsResponseFilterSensitiveLog = (obj) => ({
|
|
291
|
-
...obj,
|
|
292
|
-
});
|
|
293
|
-
export const DescribeExpressionsRequestFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
});
|
|
296
|
-
export const DescribeExpressionsResponseFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
});
|
|
299
|
-
export const DescribeIndexFieldsRequestFilterSensitiveLog = (obj) => ({
|
|
300
|
-
...obj,
|
|
301
|
-
});
|
|
302
|
-
export const DescribeIndexFieldsResponseFilterSensitiveLog = (obj) => ({
|
|
303
|
-
...obj,
|
|
304
|
-
});
|
|
305
|
-
export const DescribeScalingParametersRequestFilterSensitiveLog = (obj) => ({
|
|
306
|
-
...obj,
|
|
307
|
-
});
|
|
308
|
-
export const ScalingParametersFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
});
|
|
311
|
-
export const ScalingParametersStatusFilterSensitiveLog = (obj) => ({
|
|
312
|
-
...obj,
|
|
313
|
-
});
|
|
314
|
-
export const DescribeScalingParametersResponseFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
});
|
|
317
|
-
export const DescribeServiceAccessPoliciesRequestFilterSensitiveLog = (obj) => ({
|
|
318
|
-
...obj,
|
|
319
|
-
});
|
|
320
|
-
export const AccessPoliciesStatusFilterSensitiveLog = (obj) => ({
|
|
321
|
-
...obj,
|
|
322
|
-
});
|
|
323
|
-
export const DescribeServiceAccessPoliciesResponseFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
});
|
|
326
|
-
export const DescribeSuggestersRequestFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
});
|
|
329
|
-
export const DescribeSuggestersResponseFilterSensitiveLog = (obj) => ({
|
|
330
|
-
...obj,
|
|
331
|
-
});
|
|
332
|
-
export const IndexDocumentsRequestFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
export const IndexDocumentsResponseFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
});
|
|
338
|
-
export const ListDomainNamesResponseFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
});
|
|
341
|
-
export const UpdateAvailabilityOptionsRequestFilterSensitiveLog = (obj) => ({
|
|
342
|
-
...obj,
|
|
343
|
-
});
|
|
344
|
-
export const UpdateAvailabilityOptionsResponseFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
});
|
|
347
|
-
export const UpdateDomainEndpointOptionsRequestFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
});
|
|
350
|
-
export const UpdateDomainEndpointOptionsResponseFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
});
|
|
353
|
-
export const UpdateScalingParametersRequestFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
});
|
|
356
|
-
export const UpdateScalingParametersResponseFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
});
|
|
359
|
-
export const UpdateServiceAccessPoliciesRequestFilterSensitiveLog = (obj) => ({
|
|
360
|
-
...obj,
|
|
361
|
-
});
|
|
362
|
-
export const UpdateServiceAccessPoliciesResponseFilterSensitiveLog = (obj) => ({
|
|
363
|
-
...obj,
|
|
364
|
-
});
|
|
120
|
+
export var BuildSuggestersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
|
+
export var BuildSuggestersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
+
export var CreateDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
123
|
+
export var ServiceEndpointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
|
+
export var LimitsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
|
+
export var DomainStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
export var CreateDomainResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
127
|
+
export var AnalysisOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
+
export var AnalysisSchemeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
+
export var DefineAnalysisSchemeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
130
|
+
export var OptionStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
131
|
+
export var AnalysisSchemeStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
+
export var DefineAnalysisSchemeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
133
|
+
export var ExpressionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
export var DefineExpressionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
export var ExpressionStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
+
export var DefineExpressionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
|
+
export var DateArrayOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var DateOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
+
export var DoubleArrayOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
+
export var DoubleOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var IntArrayOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var IntOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
+
export var LatLonOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
+
export var LiteralArrayOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
+
export var LiteralOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
|
+
export var TextArrayOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
147
|
+
export var TextOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
148
|
+
export var IndexFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
|
+
export var DefineIndexFieldRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
150
|
+
export var IndexFieldStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
|
+
export var DefineIndexFieldResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
152
|
+
export var DocumentSuggesterOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
+
export var SuggesterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
154
|
+
export var DefineSuggesterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
155
|
+
export var SuggesterStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
|
+
export var DefineSuggesterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
+
export var DeleteAnalysisSchemeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
|
+
export var DeleteAnalysisSchemeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
159
|
+
export var DeleteDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
160
|
+
export var DeleteDomainResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
+
export var DeleteExpressionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
|
+
export var DeleteExpressionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
163
|
+
export var DeleteIndexFieldRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
164
|
+
export var DeleteIndexFieldResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
export var DeleteSuggesterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
166
|
+
export var DeleteSuggesterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
167
|
+
export var DescribeAnalysisSchemesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
168
|
+
export var DescribeAnalysisSchemesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
169
|
+
export var DescribeAvailabilityOptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
|
+
export var AvailabilityOptionsStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
|
+
export var DescribeAvailabilityOptionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
export var DescribeDomainEndpointOptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
+
export var DomainEndpointOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
174
|
+
export var DomainEndpointOptionsStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
175
|
+
export var DescribeDomainEndpointOptionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
176
|
+
export var DescribeDomainsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
+
export var DescribeDomainsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
+
export var DescribeExpressionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
|
+
export var DescribeExpressionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
export var DescribeIndexFieldsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
+
export var DescribeIndexFieldsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
|
+
export var DescribeScalingParametersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
183
|
+
export var ScalingParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
export var ScalingParametersStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
+
export var DescribeScalingParametersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
+
export var DescribeServiceAccessPoliciesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
187
|
+
export var AccessPoliciesStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
|
+
export var DescribeServiceAccessPoliciesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
189
|
+
export var DescribeSuggestersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
+
export var DescribeSuggestersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
export var IndexDocumentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
|
+
export var IndexDocumentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
+
export var ListDomainNamesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var UpdateAvailabilityOptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
export var UpdateAvailabilityOptionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var UpdateDomainEndpointOptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var UpdateDomainEndpointOptionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var UpdateScalingParametersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var UpdateScalingParametersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
export var UpdateServiceAccessPoliciesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
+
export var UpdateServiceAccessPoliciesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|