@aws-sdk/client-appsync 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_restJson1.js +2 -2
- package/dist-es/AppSync.js +209 -202
- package/dist-es/AppSyncClient.js +28 -22
- package/dist-es/commands/AssociateApiCommand.js +28 -21
- package/dist-es/commands/CreateApiCacheCommand.js +28 -21
- package/dist-es/commands/CreateApiKeyCommand.js +28 -21
- package/dist-es/commands/CreateDataSourceCommand.js +28 -21
- package/dist-es/commands/CreateDomainNameCommand.js +28 -21
- package/dist-es/commands/CreateFunctionCommand.js +28 -21
- package/dist-es/commands/CreateGraphqlApiCommand.js +28 -21
- package/dist-es/commands/CreateResolverCommand.js +28 -21
- package/dist-es/commands/CreateTypeCommand.js +28 -21
- package/dist-es/commands/DeleteApiCacheCommand.js +28 -21
- package/dist-es/commands/DeleteApiKeyCommand.js +28 -21
- package/dist-es/commands/DeleteDataSourceCommand.js +28 -21
- package/dist-es/commands/DeleteDomainNameCommand.js +28 -21
- package/dist-es/commands/DeleteFunctionCommand.js +28 -21
- package/dist-es/commands/DeleteGraphqlApiCommand.js +28 -21
- package/dist-es/commands/DeleteResolverCommand.js +28 -21
- package/dist-es/commands/DeleteTypeCommand.js +28 -21
- package/dist-es/commands/DisassociateApiCommand.js +28 -21
- package/dist-es/commands/EvaluateMappingTemplateCommand.js +28 -21
- package/dist-es/commands/FlushApiCacheCommand.js +28 -21
- package/dist-es/commands/GetApiAssociationCommand.js +28 -21
- package/dist-es/commands/GetApiCacheCommand.js +28 -21
- package/dist-es/commands/GetDataSourceCommand.js +28 -21
- package/dist-es/commands/GetDomainNameCommand.js +28 -21
- package/dist-es/commands/GetFunctionCommand.js +28 -21
- package/dist-es/commands/GetGraphqlApiCommand.js +28 -21
- package/dist-es/commands/GetIntrospectionSchemaCommand.js +28 -21
- package/dist-es/commands/GetResolverCommand.js +28 -21
- package/dist-es/commands/GetSchemaCreationStatusCommand.js +28 -21
- package/dist-es/commands/GetTypeCommand.js +28 -21
- package/dist-es/commands/ListApiKeysCommand.js +28 -21
- package/dist-es/commands/ListDataSourcesCommand.js +28 -21
- package/dist-es/commands/ListDomainNamesCommand.js +28 -21
- package/dist-es/commands/ListFunctionsCommand.js +28 -21
- package/dist-es/commands/ListGraphqlApisCommand.js +28 -21
- package/dist-es/commands/ListResolversByFunctionCommand.js +28 -21
- package/dist-es/commands/ListResolversCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ListTypesCommand.js +28 -21
- package/dist-es/commands/StartSchemaCreationCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateApiCacheCommand.js +28 -21
- package/dist-es/commands/UpdateApiKeyCommand.js +28 -21
- package/dist-es/commands/UpdateDataSourceCommand.js +28 -21
- package/dist-es/commands/UpdateDomainNameCommand.js +28 -21
- package/dist-es/commands/UpdateFunctionCommand.js +28 -21
- package/dist-es/commands/UpdateGraphqlApiCommand.js +28 -21
- package/dist-es/commands/UpdateResolverCommand.js +28 -21
- package/dist-es/commands/UpdateTypeCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/AppSyncServiceException.js +10 -5
- package/dist-es/models/models_0.js +252 -511
- package/dist-es/protocols/Aws_restJson1.js +5049 -3617
- 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,16 +1,17 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { AppSyncServiceException as __BaseException } from "./AppSyncServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
14
15
|
export var AuthenticationType;
|
|
15
16
|
(function (AuthenticationType) {
|
|
16
17
|
AuthenticationType["AMAZON_COGNITO_USER_POOLS"] = "AMAZON_COGNITO_USER_POOLS";
|
|
@@ -56,118 +57,118 @@ export var ApiCacheType;
|
|
|
56
57
|
ApiCacheType["T2_SMALL"] = "T2_SMALL";
|
|
57
58
|
ApiCacheType["XLARGE"] = "XLARGE";
|
|
58
59
|
})(ApiCacheType || (ApiCacheType = {}));
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
this.$fault = "client";
|
|
68
|
-
Object.setPrototypeOf(this, ApiKeyLimitExceededException.prototype);
|
|
60
|
+
var ApiKeyLimitExceededException = (function (_super) {
|
|
61
|
+
__extends(ApiKeyLimitExceededException, _super);
|
|
62
|
+
function ApiKeyLimitExceededException(opts) {
|
|
63
|
+
var _this = _super.call(this, __assign({ name: "ApiKeyLimitExceededException", $fault: "client" }, opts)) || this;
|
|
64
|
+
_this.name = "ApiKeyLimitExceededException";
|
|
65
|
+
_this.$fault = "client";
|
|
66
|
+
Object.setPrototypeOf(_this, ApiKeyLimitExceededException.prototype);
|
|
67
|
+
return _this;
|
|
69
68
|
}
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
69
|
+
return ApiKeyLimitExceededException;
|
|
70
|
+
}(__BaseException));
|
|
71
|
+
export { ApiKeyLimitExceededException };
|
|
72
|
+
var ApiKeyValidityOutOfBoundsException = (function (_super) {
|
|
73
|
+
__extends(ApiKeyValidityOutOfBoundsException, _super);
|
|
74
|
+
function ApiKeyValidityOutOfBoundsException(opts) {
|
|
75
|
+
var _this = _super.call(this, __assign({ name: "ApiKeyValidityOutOfBoundsException", $fault: "client" }, opts)) || this;
|
|
76
|
+
_this.name = "ApiKeyValidityOutOfBoundsException";
|
|
77
|
+
_this.$fault = "client";
|
|
78
|
+
Object.setPrototypeOf(_this, ApiKeyValidityOutOfBoundsException.prototype);
|
|
79
|
+
return _this;
|
|
81
80
|
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
81
|
+
return ApiKeyValidityOutOfBoundsException;
|
|
82
|
+
}(__BaseException));
|
|
83
|
+
export { ApiKeyValidityOutOfBoundsException };
|
|
84
|
+
var ApiLimitExceededException = (function (_super) {
|
|
85
|
+
__extends(ApiLimitExceededException, _super);
|
|
86
|
+
function ApiLimitExceededException(opts) {
|
|
87
|
+
var _this = _super.call(this, __assign({ name: "ApiLimitExceededException", $fault: "client" }, opts)) || this;
|
|
88
|
+
_this.name = "ApiLimitExceededException";
|
|
89
|
+
_this.$fault = "client";
|
|
90
|
+
Object.setPrototypeOf(_this, ApiLimitExceededException.prototype);
|
|
91
|
+
return _this;
|
|
93
92
|
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
93
|
+
return ApiLimitExceededException;
|
|
94
|
+
}(__BaseException));
|
|
95
|
+
export { ApiLimitExceededException };
|
|
96
|
+
var BadRequestException = (function (_super) {
|
|
97
|
+
__extends(BadRequestException, _super);
|
|
98
|
+
function BadRequestException(opts) {
|
|
99
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
100
|
+
_this.name = "BadRequestException";
|
|
101
|
+
_this.$fault = "client";
|
|
102
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
103
|
+
return _this;
|
|
105
104
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
105
|
+
return BadRequestException;
|
|
106
|
+
}(__BaseException));
|
|
107
|
+
export { BadRequestException };
|
|
108
|
+
var InternalFailureException = (function (_super) {
|
|
109
|
+
__extends(InternalFailureException, _super);
|
|
110
|
+
function InternalFailureException(opts) {
|
|
111
|
+
var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
|
|
112
|
+
_this.name = "InternalFailureException";
|
|
113
|
+
_this.$fault = "server";
|
|
114
|
+
Object.setPrototypeOf(_this, InternalFailureException.prototype);
|
|
115
|
+
return _this;
|
|
117
116
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
117
|
+
return InternalFailureException;
|
|
118
|
+
}(__BaseException));
|
|
119
|
+
export { InternalFailureException };
|
|
120
|
+
var NotFoundException = (function (_super) {
|
|
121
|
+
__extends(NotFoundException, _super);
|
|
122
|
+
function NotFoundException(opts) {
|
|
123
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
124
|
+
_this.name = "NotFoundException";
|
|
125
|
+
_this.$fault = "client";
|
|
126
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
127
|
+
return _this;
|
|
129
128
|
}
|
|
130
|
-
|
|
129
|
+
return NotFoundException;
|
|
130
|
+
}(__BaseException));
|
|
131
|
+
export { NotFoundException };
|
|
131
132
|
export var AuthorizationType;
|
|
132
133
|
(function (AuthorizationType) {
|
|
133
134
|
AuthorizationType["AWS_IAM"] = "AWS_IAM";
|
|
134
135
|
})(AuthorizationType || (AuthorizationType = {}));
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
this.$fault = "client";
|
|
144
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
136
|
+
var ConcurrentModificationException = (function (_super) {
|
|
137
|
+
__extends(ConcurrentModificationException, _super);
|
|
138
|
+
function ConcurrentModificationException(opts) {
|
|
139
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
|
|
140
|
+
_this.name = "ConcurrentModificationException";
|
|
141
|
+
_this.$fault = "client";
|
|
142
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
143
|
+
return _this;
|
|
145
144
|
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
145
|
+
return ConcurrentModificationException;
|
|
146
|
+
}(__BaseException));
|
|
147
|
+
export { ConcurrentModificationException };
|
|
148
|
+
var UnauthorizedException = (function (_super) {
|
|
149
|
+
__extends(UnauthorizedException, _super);
|
|
150
|
+
function UnauthorizedException(opts) {
|
|
151
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedException", $fault: "client" }, opts)) || this;
|
|
152
|
+
_this.name = "UnauthorizedException";
|
|
153
|
+
_this.$fault = "client";
|
|
154
|
+
Object.setPrototypeOf(_this, UnauthorizedException.prototype);
|
|
155
|
+
return _this;
|
|
157
156
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
157
|
+
return UnauthorizedException;
|
|
158
|
+
}(__BaseException));
|
|
159
|
+
export { UnauthorizedException };
|
|
160
|
+
var LimitExceededException = (function (_super) {
|
|
161
|
+
__extends(LimitExceededException, _super);
|
|
162
|
+
function LimitExceededException(opts) {
|
|
163
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
164
|
+
_this.name = "LimitExceededException";
|
|
165
|
+
_this.$fault = "client";
|
|
166
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
167
|
+
return _this;
|
|
169
168
|
}
|
|
170
|
-
|
|
169
|
+
return LimitExceededException;
|
|
170
|
+
}(__BaseException));
|
|
171
|
+
export { LimitExceededException };
|
|
171
172
|
export var RelationalDatabaseSourceType;
|
|
172
173
|
(function (RelationalDatabaseSourceType) {
|
|
173
174
|
RelationalDatabaseSourceType["RDS_HTTP_ENDPOINT"] = "RDS_HTTP_ENDPOINT";
|
|
@@ -220,18 +221,18 @@ export var OutputType;
|
|
|
220
221
|
OutputType["JSON"] = "JSON";
|
|
221
222
|
OutputType["SDL"] = "SDL";
|
|
222
223
|
})(OutputType || (OutputType = {}));
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
this.$fault = "client";
|
|
232
|
-
Object.setPrototypeOf(this, GraphQLSchemaException.prototype);
|
|
224
|
+
var GraphQLSchemaException = (function (_super) {
|
|
225
|
+
__extends(GraphQLSchemaException, _super);
|
|
226
|
+
function GraphQLSchemaException(opts) {
|
|
227
|
+
var _this = _super.call(this, __assign({ name: "GraphQLSchemaException", $fault: "client" }, opts)) || this;
|
|
228
|
+
_this.name = "GraphQLSchemaException";
|
|
229
|
+
_this.$fault = "client";
|
|
230
|
+
Object.setPrototypeOf(_this, GraphQLSchemaException.prototype);
|
|
231
|
+
return _this;
|
|
233
232
|
}
|
|
234
|
-
|
|
233
|
+
return GraphQLSchemaException;
|
|
234
|
+
}(__BaseException));
|
|
235
|
+
export { GraphQLSchemaException };
|
|
235
236
|
export var SchemaStatus;
|
|
236
237
|
(function (SchemaStatus) {
|
|
237
238
|
SchemaStatus["Active"] = "ACTIVE";
|
|
@@ -241,393 +242,133 @@ export var SchemaStatus;
|
|
|
241
242
|
SchemaStatus["Processing"] = "PROCESSING";
|
|
242
243
|
SchemaStatus["Success"] = "SUCCESS";
|
|
243
244
|
})(SchemaStatus || (SchemaStatus = {}));
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
});
|
|
247
|
-
export
|
|
248
|
-
|
|
249
|
-
});
|
|
250
|
-
export
|
|
251
|
-
|
|
252
|
-
});
|
|
253
|
-
export
|
|
254
|
-
|
|
255
|
-
});
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
});
|
|
259
|
-
export
|
|
260
|
-
|
|
261
|
-
});
|
|
262
|
-
export
|
|
263
|
-
|
|
264
|
-
});
|
|
265
|
-
export
|
|
266
|
-
|
|
267
|
-
});
|
|
268
|
-
export
|
|
269
|
-
|
|
270
|
-
});
|
|
271
|
-
export
|
|
272
|
-
|
|
273
|
-
});
|
|
274
|
-
export
|
|
275
|
-
|
|
276
|
-
});
|
|
277
|
-
export
|
|
278
|
-
|
|
279
|
-
});
|
|
280
|
-
export
|
|
281
|
-
|
|
282
|
-
});
|
|
283
|
-
export
|
|
284
|
-
|
|
285
|
-
});
|
|
286
|
-
export
|
|
287
|
-
|
|
288
|
-
});
|
|
289
|
-
export
|
|
290
|
-
|
|
291
|
-
});
|
|
292
|
-
export
|
|
293
|
-
|
|
294
|
-
});
|
|
295
|
-
export
|
|
296
|
-
|
|
297
|
-
});
|
|
298
|
-
export
|
|
299
|
-
|
|
300
|
-
});
|
|
301
|
-
export
|
|
302
|
-
|
|
303
|
-
});
|
|
304
|
-
export
|
|
305
|
-
|
|
306
|
-
});
|
|
307
|
-
export
|
|
308
|
-
|
|
309
|
-
});
|
|
310
|
-
export
|
|
311
|
-
|
|
312
|
-
});
|
|
313
|
-
export
|
|
314
|
-
|
|
315
|
-
});
|
|
316
|
-
export
|
|
317
|
-
|
|
318
|
-
});
|
|
319
|
-
export
|
|
320
|
-
|
|
321
|
-
});
|
|
322
|
-
export
|
|
323
|
-
|
|
324
|
-
});
|
|
325
|
-
export
|
|
326
|
-
|
|
327
|
-
});
|
|
328
|
-
export
|
|
329
|
-
|
|
330
|
-
});
|
|
331
|
-
export
|
|
332
|
-
|
|
333
|
-
});
|
|
334
|
-
export
|
|
335
|
-
|
|
336
|
-
});
|
|
337
|
-
export
|
|
338
|
-
|
|
339
|
-
});
|
|
340
|
-
export
|
|
341
|
-
|
|
342
|
-
});
|
|
343
|
-
export
|
|
344
|
-
|
|
345
|
-
});
|
|
346
|
-
export
|
|
347
|
-
|
|
348
|
-
});
|
|
349
|
-
export
|
|
350
|
-
|
|
351
|
-
});
|
|
352
|
-
export
|
|
353
|
-
|
|
354
|
-
});
|
|
355
|
-
export
|
|
356
|
-
|
|
357
|
-
});
|
|
358
|
-
export
|
|
359
|
-
|
|
360
|
-
});
|
|
361
|
-
export
|
|
362
|
-
|
|
363
|
-
});
|
|
364
|
-
export
|
|
365
|
-
|
|
366
|
-
});
|
|
367
|
-
export
|
|
368
|
-
|
|
369
|
-
});
|
|
370
|
-
export
|
|
371
|
-
|
|
372
|
-
});
|
|
373
|
-
export
|
|
374
|
-
...obj,
|
|
375
|
-
});
|
|
376
|
-
export const CreateTypeRequestFilterSensitiveLog = (obj) => ({
|
|
377
|
-
...obj,
|
|
378
|
-
});
|
|
379
|
-
export const TypeFilterSensitiveLog = (obj) => ({
|
|
380
|
-
...obj,
|
|
381
|
-
});
|
|
382
|
-
export const CreateTypeResponseFilterSensitiveLog = (obj) => ({
|
|
383
|
-
...obj,
|
|
384
|
-
});
|
|
385
|
-
export const DeleteApiCacheRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
-
...obj,
|
|
387
|
-
});
|
|
388
|
-
export const DeleteApiCacheResponseFilterSensitiveLog = (obj) => ({
|
|
389
|
-
...obj,
|
|
390
|
-
});
|
|
391
|
-
export const DeleteApiKeyRequestFilterSensitiveLog = (obj) => ({
|
|
392
|
-
...obj,
|
|
393
|
-
});
|
|
394
|
-
export const DeleteApiKeyResponseFilterSensitiveLog = (obj) => ({
|
|
395
|
-
...obj,
|
|
396
|
-
});
|
|
397
|
-
export const DeleteDataSourceRequestFilterSensitiveLog = (obj) => ({
|
|
398
|
-
...obj,
|
|
399
|
-
});
|
|
400
|
-
export const DeleteDataSourceResponseFilterSensitiveLog = (obj) => ({
|
|
401
|
-
...obj,
|
|
402
|
-
});
|
|
403
|
-
export const DeleteDomainNameRequestFilterSensitiveLog = (obj) => ({
|
|
404
|
-
...obj,
|
|
405
|
-
});
|
|
406
|
-
export const DeleteDomainNameResponseFilterSensitiveLog = (obj) => ({
|
|
407
|
-
...obj,
|
|
408
|
-
});
|
|
409
|
-
export const DeleteFunctionRequestFilterSensitiveLog = (obj) => ({
|
|
410
|
-
...obj,
|
|
411
|
-
});
|
|
412
|
-
export const DeleteFunctionResponseFilterSensitiveLog = (obj) => ({
|
|
413
|
-
...obj,
|
|
414
|
-
});
|
|
415
|
-
export const DeleteGraphqlApiRequestFilterSensitiveLog = (obj) => ({
|
|
416
|
-
...obj,
|
|
417
|
-
});
|
|
418
|
-
export const DeleteGraphqlApiResponseFilterSensitiveLog = (obj) => ({
|
|
419
|
-
...obj,
|
|
420
|
-
});
|
|
421
|
-
export const DeleteResolverRequestFilterSensitiveLog = (obj) => ({
|
|
422
|
-
...obj,
|
|
423
|
-
});
|
|
424
|
-
export const DeleteResolverResponseFilterSensitiveLog = (obj) => ({
|
|
425
|
-
...obj,
|
|
426
|
-
});
|
|
427
|
-
export const DeleteTypeRequestFilterSensitiveLog = (obj) => ({
|
|
428
|
-
...obj,
|
|
429
|
-
});
|
|
430
|
-
export const DeleteTypeResponseFilterSensitiveLog = (obj) => ({
|
|
431
|
-
...obj,
|
|
432
|
-
});
|
|
433
|
-
export const DisassociateApiRequestFilterSensitiveLog = (obj) => ({
|
|
434
|
-
...obj,
|
|
435
|
-
});
|
|
436
|
-
export const DisassociateApiResponseFilterSensitiveLog = (obj) => ({
|
|
437
|
-
...obj,
|
|
438
|
-
});
|
|
439
|
-
export const EvaluateMappingTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
440
|
-
...obj,
|
|
441
|
-
});
|
|
442
|
-
export const ErrorDetailFilterSensitiveLog = (obj) => ({
|
|
443
|
-
...obj,
|
|
444
|
-
});
|
|
445
|
-
export const EvaluateMappingTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
446
|
-
...obj,
|
|
447
|
-
});
|
|
448
|
-
export const FlushApiCacheRequestFilterSensitiveLog = (obj) => ({
|
|
449
|
-
...obj,
|
|
450
|
-
});
|
|
451
|
-
export const FlushApiCacheResponseFilterSensitiveLog = (obj) => ({
|
|
452
|
-
...obj,
|
|
453
|
-
});
|
|
454
|
-
export const GetApiAssociationRequestFilterSensitiveLog = (obj) => ({
|
|
455
|
-
...obj,
|
|
456
|
-
});
|
|
457
|
-
export const GetApiAssociationResponseFilterSensitiveLog = (obj) => ({
|
|
458
|
-
...obj,
|
|
459
|
-
});
|
|
460
|
-
export const GetApiCacheRequestFilterSensitiveLog = (obj) => ({
|
|
461
|
-
...obj,
|
|
462
|
-
});
|
|
463
|
-
export const GetApiCacheResponseFilterSensitiveLog = (obj) => ({
|
|
464
|
-
...obj,
|
|
465
|
-
});
|
|
466
|
-
export const GetDataSourceRequestFilterSensitiveLog = (obj) => ({
|
|
467
|
-
...obj,
|
|
468
|
-
});
|
|
469
|
-
export const GetDataSourceResponseFilterSensitiveLog = (obj) => ({
|
|
470
|
-
...obj,
|
|
471
|
-
});
|
|
472
|
-
export const GetDomainNameRequestFilterSensitiveLog = (obj) => ({
|
|
473
|
-
...obj,
|
|
474
|
-
});
|
|
475
|
-
export const GetDomainNameResponseFilterSensitiveLog = (obj) => ({
|
|
476
|
-
...obj,
|
|
477
|
-
});
|
|
478
|
-
export const GetFunctionRequestFilterSensitiveLog = (obj) => ({
|
|
479
|
-
...obj,
|
|
480
|
-
});
|
|
481
|
-
export const GetFunctionResponseFilterSensitiveLog = (obj) => ({
|
|
482
|
-
...obj,
|
|
483
|
-
});
|
|
484
|
-
export const GetGraphqlApiRequestFilterSensitiveLog = (obj) => ({
|
|
485
|
-
...obj,
|
|
486
|
-
});
|
|
487
|
-
export const GetGraphqlApiResponseFilterSensitiveLog = (obj) => ({
|
|
488
|
-
...obj,
|
|
489
|
-
});
|
|
490
|
-
export const GetIntrospectionSchemaRequestFilterSensitiveLog = (obj) => ({
|
|
491
|
-
...obj,
|
|
492
|
-
});
|
|
493
|
-
export const GetIntrospectionSchemaResponseFilterSensitiveLog = (obj) => ({
|
|
494
|
-
...obj,
|
|
495
|
-
});
|
|
496
|
-
export const GetResolverRequestFilterSensitiveLog = (obj) => ({
|
|
497
|
-
...obj,
|
|
498
|
-
});
|
|
499
|
-
export const GetResolverResponseFilterSensitiveLog = (obj) => ({
|
|
500
|
-
...obj,
|
|
501
|
-
});
|
|
502
|
-
export const GetSchemaCreationStatusRequestFilterSensitiveLog = (obj) => ({
|
|
503
|
-
...obj,
|
|
504
|
-
});
|
|
505
|
-
export const GetSchemaCreationStatusResponseFilterSensitiveLog = (obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
});
|
|
508
|
-
export const GetTypeRequestFilterSensitiveLog = (obj) => ({
|
|
509
|
-
...obj,
|
|
510
|
-
});
|
|
511
|
-
export const GetTypeResponseFilterSensitiveLog = (obj) => ({
|
|
512
|
-
...obj,
|
|
513
|
-
});
|
|
514
|
-
export const ListApiKeysRequestFilterSensitiveLog = (obj) => ({
|
|
515
|
-
...obj,
|
|
516
|
-
});
|
|
517
|
-
export const ListApiKeysResponseFilterSensitiveLog = (obj) => ({
|
|
518
|
-
...obj,
|
|
519
|
-
});
|
|
520
|
-
export const ListDataSourcesRequestFilterSensitiveLog = (obj) => ({
|
|
521
|
-
...obj,
|
|
522
|
-
});
|
|
523
|
-
export const ListDataSourcesResponseFilterSensitiveLog = (obj) => ({
|
|
524
|
-
...obj,
|
|
525
|
-
});
|
|
526
|
-
export const ListDomainNamesRequestFilterSensitiveLog = (obj) => ({
|
|
527
|
-
...obj,
|
|
528
|
-
});
|
|
529
|
-
export const ListDomainNamesResponseFilterSensitiveLog = (obj) => ({
|
|
530
|
-
...obj,
|
|
531
|
-
});
|
|
532
|
-
export const ListFunctionsRequestFilterSensitiveLog = (obj) => ({
|
|
533
|
-
...obj,
|
|
534
|
-
});
|
|
535
|
-
export const ListFunctionsResponseFilterSensitiveLog = (obj) => ({
|
|
536
|
-
...obj,
|
|
537
|
-
});
|
|
538
|
-
export const ListGraphqlApisRequestFilterSensitiveLog = (obj) => ({
|
|
539
|
-
...obj,
|
|
540
|
-
});
|
|
541
|
-
export const ListGraphqlApisResponseFilterSensitiveLog = (obj) => ({
|
|
542
|
-
...obj,
|
|
543
|
-
});
|
|
544
|
-
export const ListResolversRequestFilterSensitiveLog = (obj) => ({
|
|
545
|
-
...obj,
|
|
546
|
-
});
|
|
547
|
-
export const ListResolversResponseFilterSensitiveLog = (obj) => ({
|
|
548
|
-
...obj,
|
|
549
|
-
});
|
|
550
|
-
export const ListResolversByFunctionRequestFilterSensitiveLog = (obj) => ({
|
|
551
|
-
...obj,
|
|
552
|
-
});
|
|
553
|
-
export const ListResolversByFunctionResponseFilterSensitiveLog = (obj) => ({
|
|
554
|
-
...obj,
|
|
555
|
-
});
|
|
556
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
557
|
-
...obj,
|
|
558
|
-
});
|
|
559
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
560
|
-
...obj,
|
|
561
|
-
});
|
|
562
|
-
export const ListTypesRequestFilterSensitiveLog = (obj) => ({
|
|
563
|
-
...obj,
|
|
564
|
-
});
|
|
565
|
-
export const ListTypesResponseFilterSensitiveLog = (obj) => ({
|
|
566
|
-
...obj,
|
|
567
|
-
});
|
|
568
|
-
export const StartSchemaCreationRequestFilterSensitiveLog = (obj) => ({
|
|
569
|
-
...obj,
|
|
570
|
-
});
|
|
571
|
-
export const StartSchemaCreationResponseFilterSensitiveLog = (obj) => ({
|
|
572
|
-
...obj,
|
|
573
|
-
});
|
|
574
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
575
|
-
...obj,
|
|
576
|
-
});
|
|
577
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
578
|
-
...obj,
|
|
579
|
-
});
|
|
580
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
581
|
-
...obj,
|
|
582
|
-
});
|
|
583
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
584
|
-
...obj,
|
|
585
|
-
});
|
|
586
|
-
export const UpdateApiCacheRequestFilterSensitiveLog = (obj) => ({
|
|
587
|
-
...obj,
|
|
588
|
-
});
|
|
589
|
-
export const UpdateApiCacheResponseFilterSensitiveLog = (obj) => ({
|
|
590
|
-
...obj,
|
|
591
|
-
});
|
|
592
|
-
export const UpdateApiKeyRequestFilterSensitiveLog = (obj) => ({
|
|
593
|
-
...obj,
|
|
594
|
-
});
|
|
595
|
-
export const UpdateApiKeyResponseFilterSensitiveLog = (obj) => ({
|
|
596
|
-
...obj,
|
|
597
|
-
});
|
|
598
|
-
export const UpdateDataSourceRequestFilterSensitiveLog = (obj) => ({
|
|
599
|
-
...obj,
|
|
600
|
-
});
|
|
601
|
-
export const UpdateDataSourceResponseFilterSensitiveLog = (obj) => ({
|
|
602
|
-
...obj,
|
|
603
|
-
});
|
|
604
|
-
export const UpdateDomainNameRequestFilterSensitiveLog = (obj) => ({
|
|
605
|
-
...obj,
|
|
606
|
-
});
|
|
607
|
-
export const UpdateDomainNameResponseFilterSensitiveLog = (obj) => ({
|
|
608
|
-
...obj,
|
|
609
|
-
});
|
|
610
|
-
export const UpdateFunctionRequestFilterSensitiveLog = (obj) => ({
|
|
611
|
-
...obj,
|
|
612
|
-
});
|
|
613
|
-
export const UpdateFunctionResponseFilterSensitiveLog = (obj) => ({
|
|
614
|
-
...obj,
|
|
615
|
-
});
|
|
616
|
-
export const UpdateGraphqlApiRequestFilterSensitiveLog = (obj) => ({
|
|
617
|
-
...obj,
|
|
618
|
-
});
|
|
619
|
-
export const UpdateGraphqlApiResponseFilterSensitiveLog = (obj) => ({
|
|
620
|
-
...obj,
|
|
621
|
-
});
|
|
622
|
-
export const UpdateResolverRequestFilterSensitiveLog = (obj) => ({
|
|
623
|
-
...obj,
|
|
624
|
-
});
|
|
625
|
-
export const UpdateResolverResponseFilterSensitiveLog = (obj) => ({
|
|
626
|
-
...obj,
|
|
627
|
-
});
|
|
628
|
-
export const UpdateTypeRequestFilterSensitiveLog = (obj) => ({
|
|
629
|
-
...obj,
|
|
630
|
-
});
|
|
631
|
-
export const UpdateTypeResponseFilterSensitiveLog = (obj) => ({
|
|
632
|
-
...obj,
|
|
633
|
-
});
|
|
245
|
+
export var LambdaAuthorizerConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var OpenIDConnectConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var CognitoUserPoolConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var AdditionalAuthenticationProviderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var ApiAssociationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var ApiCacheFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var ApiKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var AssociateApiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var AssociateApiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var AwsIamConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var AuthorizationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var CreateApiCacheRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var CreateApiCacheResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var CreateApiKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var CreateApiKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var DeltaSyncConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var DynamodbDataSourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var ElasticsearchDataSourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var HttpDataSourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var LambdaDataSourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var OpenSearchServiceDataSourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var RdsHttpEndpointConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var RelationalDatabaseDataSourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var CreateDataSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var DataSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var CreateDataSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var CreateDomainNameRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var DomainNameConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var CreateDomainNameResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var LambdaConflictHandlerConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var SyncConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var CreateFunctionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var FunctionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var CreateFunctionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var LogConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var UserPoolConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var CreateGraphqlApiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var GraphqlApiFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var CreateGraphqlApiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var CachingConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var PipelineConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var CreateResolverRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var ResolverFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var CreateResolverResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var CreateTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var TypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var CreateTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var DeleteApiCacheRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var DeleteApiCacheResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var DeleteApiKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var DeleteApiKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var DeleteDataSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var DeleteDataSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var DeleteDomainNameRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var DeleteDomainNameResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var DeleteFunctionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var DeleteFunctionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var DeleteGraphqlApiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var DeleteGraphqlApiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var DeleteResolverRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var DeleteResolverResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var DeleteTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var DeleteTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var DisassociateApiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var DisassociateApiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var EvaluateMappingTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var ErrorDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var EvaluateMappingTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var FlushApiCacheRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var FlushApiCacheResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var GetApiAssociationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var GetApiAssociationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var GetApiCacheRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var GetApiCacheResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var GetDataSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var GetDataSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var GetDomainNameRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var GetDomainNameResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var GetFunctionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var GetFunctionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var GetGraphqlApiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var GetGraphqlApiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var GetIntrospectionSchemaRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var GetIntrospectionSchemaResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var GetResolverRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var GetResolverResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var GetSchemaCreationStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var GetSchemaCreationStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var GetTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var GetTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var ListApiKeysRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var ListApiKeysResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var ListDataSourcesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var ListDataSourcesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var ListDomainNamesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var ListDomainNamesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var ListFunctionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var ListFunctionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
export var ListGraphqlApisRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
export var ListGraphqlApisResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
+
export var ListResolversRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
346
|
+
export var ListResolversResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
+
export var ListResolversByFunctionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
348
|
+
export var ListResolversByFunctionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
+
export var ListTypesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
352
|
+
export var ListTypesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
export var StartSchemaCreationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
354
|
+
export var StartSchemaCreationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
356
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var UpdateApiCacheRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
|
+
export var UpdateApiCacheResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
|
+
export var UpdateApiKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
362
|
+
export var UpdateApiKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
363
|
+
export var UpdateDataSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
364
|
+
export var UpdateDataSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
+
export var UpdateDomainNameRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
366
|
+
export var UpdateDomainNameResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
367
|
+
export var UpdateFunctionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
368
|
+
export var UpdateFunctionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
369
|
+
export var UpdateGraphqlApiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
370
|
+
export var UpdateGraphqlApiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
371
|
+
export var UpdateResolverRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
372
|
+
export var UpdateResolverResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
|
+
export var UpdateTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
374
|
+
export var UpdateTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|