@aws-sdk/client-kinesis-analytics-v2 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_json1_1.js +2 -2
- package/dist-es/KinesisAnalyticsV2.js +133 -126
- package/dist-es/KinesisAnalyticsV2Client.js +28 -22
- package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +28 -21
- package/dist-es/commands/AddApplicationInputCommand.js +28 -21
- package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +28 -21
- package/dist-es/commands/AddApplicationOutputCommand.js +28 -21
- package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +28 -21
- package/dist-es/commands/AddApplicationVpcConfigurationCommand.js +28 -21
- package/dist-es/commands/CreateApplicationCommand.js +28 -21
- package/dist-es/commands/CreateApplicationPresignedUrlCommand.js +28 -21
- package/dist-es/commands/CreateApplicationSnapshotCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationOutputCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationSnapshotCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationVpcConfigurationCommand.js +28 -21
- package/dist-es/commands/DescribeApplicationCommand.js +28 -21
- package/dist-es/commands/DescribeApplicationSnapshotCommand.js +28 -21
- package/dist-es/commands/DescribeApplicationVersionCommand.js +28 -21
- package/dist-es/commands/DiscoverInputSchemaCommand.js +28 -21
- package/dist-es/commands/ListApplicationSnapshotsCommand.js +28 -21
- package/dist-es/commands/ListApplicationVersionsCommand.js +28 -21
- package/dist-es/commands/ListApplicationsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/RollbackApplicationCommand.js +28 -21
- package/dist-es/commands/StartApplicationCommand.js +28 -21
- package/dist-es/commands/StopApplicationCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateApplicationCommand.js +28 -21
- package/dist-es/commands/UpdateApplicationMaintenanceConfigurationCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/KinesisAnalyticsV2ServiceException.js +10 -5
- package/dist-es/models/models_0.js +339 -700
- package/dist-es/protocols/Aws_json1_1.js +3333 -2967
- 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,82 +1,83 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { KinesisAnalyticsV2ServiceException as __BaseException } from "./KinesisAnalyticsV2ServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var ConcurrentModificationException = (function (_super) {
|
|
4
|
+
__extends(ConcurrentModificationException, _super);
|
|
5
|
+
function ConcurrentModificationException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "ConcurrentModificationException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
13
|
+
return ConcurrentModificationException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { ConcurrentModificationException };
|
|
16
|
+
var InvalidApplicationConfigurationException = (function (_super) {
|
|
17
|
+
__extends(InvalidApplicationConfigurationException, _super);
|
|
18
|
+
function InvalidApplicationConfigurationException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "InvalidApplicationConfigurationException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "InvalidApplicationConfigurationException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, InvalidApplicationConfigurationException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
return InvalidApplicationConfigurationException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { InvalidApplicationConfigurationException };
|
|
29
|
+
var InvalidArgumentException = (function (_super) {
|
|
30
|
+
__extends(InvalidArgumentException, _super);
|
|
31
|
+
function InvalidArgumentException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "InvalidArgumentException", $fault: "client" }, opts)) || this;
|
|
33
|
+
_this.name = "InvalidArgumentException";
|
|
34
|
+
_this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(_this, InvalidArgumentException.prototype);
|
|
36
|
+
_this.Message = opts.Message;
|
|
37
|
+
return _this;
|
|
39
38
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
39
|
+
return InvalidArgumentException;
|
|
40
|
+
}(__BaseException));
|
|
41
|
+
export { InvalidArgumentException };
|
|
42
|
+
var InvalidRequestException = (function (_super) {
|
|
43
|
+
__extends(InvalidRequestException, _super);
|
|
44
|
+
function InvalidRequestException(opts) {
|
|
45
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
46
|
+
_this.name = "InvalidRequestException";
|
|
47
|
+
_this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
49
|
+
_this.Message = opts.Message;
|
|
50
|
+
return _this;
|
|
52
51
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
52
|
+
return InvalidRequestException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { InvalidRequestException };
|
|
55
|
+
var ResourceInUseException = (function (_super) {
|
|
56
|
+
__extends(ResourceInUseException, _super);
|
|
57
|
+
function ResourceInUseException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "ResourceInUseException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
62
|
+
_this.Message = opts.Message;
|
|
63
|
+
return _this;
|
|
65
64
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
65
|
+
return ResourceInUseException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { ResourceInUseException };
|
|
68
|
+
var ResourceNotFoundException = (function (_super) {
|
|
69
|
+
__extends(ResourceNotFoundException, _super);
|
|
70
|
+
function ResourceNotFoundException(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "ResourceNotFoundException";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
75
|
+
_this.Message = opts.Message;
|
|
76
|
+
return _this;
|
|
78
77
|
}
|
|
79
|
-
|
|
78
|
+
return ResourceNotFoundException;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { ResourceNotFoundException };
|
|
80
81
|
export var RecordFormatType;
|
|
81
82
|
(function (RecordFormatType) {
|
|
82
83
|
RecordFormatType["CSV"] = "CSV";
|
|
@@ -88,19 +89,19 @@ export var InputStartingPosition;
|
|
|
88
89
|
InputStartingPosition["NOW"] = "NOW";
|
|
89
90
|
InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
|
|
90
91
|
})(InputStartingPosition || (InputStartingPosition = {}));
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
101
|
-
this.Message = opts.Message;
|
|
92
|
+
var CodeValidationException = (function (_super) {
|
|
93
|
+
__extends(CodeValidationException, _super);
|
|
94
|
+
function CodeValidationException(opts) {
|
|
95
|
+
var _this = _super.call(this, __assign({ name: "CodeValidationException", $fault: "client" }, opts)) || this;
|
|
96
|
+
_this.name = "CodeValidationException";
|
|
97
|
+
_this.$fault = "client";
|
|
98
|
+
Object.setPrototypeOf(_this, CodeValidationException.prototype);
|
|
99
|
+
_this.Message = opts.Message;
|
|
100
|
+
return _this;
|
|
102
101
|
}
|
|
103
|
-
|
|
102
|
+
return CodeValidationException;
|
|
103
|
+
}(__BaseException));
|
|
104
|
+
export { CodeValidationException };
|
|
104
105
|
export var CodeContentType;
|
|
105
106
|
(function (CodeContentType) {
|
|
106
107
|
CodeContentType["PLAINTEXT"] = "PLAINTEXT";
|
|
@@ -165,44 +166,44 @@ export var RuntimeEnvironment;
|
|
|
165
166
|
RuntimeEnvironment["ZEPPELIN_FLINK_1_0"] = "ZEPPELIN-FLINK-1_0";
|
|
166
167
|
RuntimeEnvironment["ZEPPELIN_FLINK_2_0"] = "ZEPPELIN-FLINK-2_0";
|
|
167
168
|
})(RuntimeEnvironment || (RuntimeEnvironment = {}));
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
178
|
-
this.Message = opts.Message;
|
|
169
|
+
var LimitExceededException = (function (_super) {
|
|
170
|
+
__extends(LimitExceededException, _super);
|
|
171
|
+
function LimitExceededException(opts) {
|
|
172
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
173
|
+
_this.name = "LimitExceededException";
|
|
174
|
+
_this.$fault = "client";
|
|
175
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
176
|
+
_this.Message = opts.Message;
|
|
177
|
+
return _this;
|
|
179
178
|
}
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
179
|
+
return LimitExceededException;
|
|
180
|
+
}(__BaseException));
|
|
181
|
+
export { LimitExceededException };
|
|
182
|
+
var TooManyTagsException = (function (_super) {
|
|
183
|
+
__extends(TooManyTagsException, _super);
|
|
184
|
+
function TooManyTagsException(opts) {
|
|
185
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
186
|
+
_this.name = "TooManyTagsException";
|
|
187
|
+
_this.$fault = "client";
|
|
188
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
189
|
+
return _this;
|
|
191
190
|
}
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
191
|
+
return TooManyTagsException;
|
|
192
|
+
}(__BaseException));
|
|
193
|
+
export { TooManyTagsException };
|
|
194
|
+
var UnsupportedOperationException = (function (_super) {
|
|
195
|
+
__extends(UnsupportedOperationException, _super);
|
|
196
|
+
function UnsupportedOperationException(opts) {
|
|
197
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
|
|
198
|
+
_this.name = "UnsupportedOperationException";
|
|
199
|
+
_this.$fault = "client";
|
|
200
|
+
Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
|
|
201
|
+
_this.Message = opts.Message;
|
|
202
|
+
return _this;
|
|
204
203
|
}
|
|
205
|
-
|
|
204
|
+
return UnsupportedOperationException;
|
|
205
|
+
}(__BaseException));
|
|
206
|
+
export { UnsupportedOperationException };
|
|
206
207
|
export var UrlType;
|
|
207
208
|
(function (UrlType) {
|
|
208
209
|
UrlType["FLINK_DASHBOARD_URL"] = "FLINK_DASHBOARD_URL";
|
|
@@ -215,587 +216,225 @@ export var SnapshotStatus;
|
|
|
215
216
|
SnapshotStatus["FAILED"] = "FAILED";
|
|
216
217
|
SnapshotStatus["READY"] = "READY";
|
|
217
218
|
})(SnapshotStatus || (SnapshotStatus = {}));
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
|
|
228
|
-
this.Message = opts.Message;
|
|
219
|
+
var ResourceProvisionedThroughputExceededException = (function (_super) {
|
|
220
|
+
__extends(ResourceProvisionedThroughputExceededException, _super);
|
|
221
|
+
function ResourceProvisionedThroughputExceededException(opts) {
|
|
222
|
+
var _this = _super.call(this, __assign({ name: "ResourceProvisionedThroughputExceededException", $fault: "client" }, opts)) || this;
|
|
223
|
+
_this.name = "ResourceProvisionedThroughputExceededException";
|
|
224
|
+
_this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(_this, ResourceProvisionedThroughputExceededException.prototype);
|
|
226
|
+
_this.Message = opts.Message;
|
|
227
|
+
return _this;
|
|
229
228
|
}
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
229
|
+
return ResourceProvisionedThroughputExceededException;
|
|
230
|
+
}(__BaseException));
|
|
231
|
+
export { ResourceProvisionedThroughputExceededException };
|
|
232
|
+
var ServiceUnavailableException = (function (_super) {
|
|
233
|
+
__extends(ServiceUnavailableException, _super);
|
|
234
|
+
function ServiceUnavailableException(opts) {
|
|
235
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
236
|
+
_this.name = "ServiceUnavailableException";
|
|
237
|
+
_this.$fault = "server";
|
|
238
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
239
|
+
_this.Message = opts.Message;
|
|
240
|
+
return _this;
|
|
242
241
|
}
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
242
|
+
return ServiceUnavailableException;
|
|
243
|
+
}(__BaseException));
|
|
244
|
+
export { ServiceUnavailableException };
|
|
245
|
+
var UnableToDetectSchemaException = (function (_super) {
|
|
246
|
+
__extends(UnableToDetectSchemaException, _super);
|
|
247
|
+
function UnableToDetectSchemaException(opts) {
|
|
248
|
+
var _this = _super.call(this, __assign({ name: "UnableToDetectSchemaException", $fault: "client" }, opts)) || this;
|
|
249
|
+
_this.name = "UnableToDetectSchemaException";
|
|
250
|
+
_this.$fault = "client";
|
|
251
|
+
Object.setPrototypeOf(_this, UnableToDetectSchemaException.prototype);
|
|
252
|
+
_this.Message = opts.Message;
|
|
253
|
+
_this.RawInputRecords = opts.RawInputRecords;
|
|
254
|
+
_this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
255
|
+
return _this;
|
|
257
256
|
}
|
|
258
|
-
|
|
259
|
-
|
|
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
|
-
|
|
375
|
-
});
|
|
376
|
-
export
|
|
377
|
-
|
|
378
|
-
});
|
|
379
|
-
export
|
|
380
|
-
|
|
381
|
-
});
|
|
382
|
-
export
|
|
383
|
-
|
|
384
|
-
});
|
|
385
|
-
export
|
|
386
|
-
|
|
387
|
-
});
|
|
388
|
-
export
|
|
389
|
-
|
|
390
|
-
});
|
|
391
|
-
export
|
|
392
|
-
|
|
393
|
-
});
|
|
394
|
-
export
|
|
395
|
-
|
|
396
|
-
});
|
|
397
|
-
export
|
|
398
|
-
|
|
399
|
-
});
|
|
400
|
-
export
|
|
401
|
-
|
|
402
|
-
});
|
|
403
|
-
export
|
|
404
|
-
|
|
405
|
-
});
|
|
406
|
-
export
|
|
407
|
-
|
|
408
|
-
});
|
|
409
|
-
export
|
|
410
|
-
|
|
411
|
-
});
|
|
412
|
-
export
|
|
413
|
-
|
|
414
|
-
});
|
|
415
|
-
export
|
|
416
|
-
|
|
417
|
-
});
|
|
418
|
-
export
|
|
419
|
-
|
|
420
|
-
});
|
|
421
|
-
export
|
|
422
|
-
|
|
423
|
-
});
|
|
424
|
-
export
|
|
425
|
-
|
|
426
|
-
});
|
|
427
|
-
export
|
|
428
|
-
|
|
429
|
-
});
|
|
430
|
-
export
|
|
431
|
-
|
|
432
|
-
});
|
|
433
|
-
export
|
|
434
|
-
|
|
435
|
-
});
|
|
436
|
-
export
|
|
437
|
-
|
|
438
|
-
});
|
|
439
|
-
export
|
|
440
|
-
|
|
441
|
-
});
|
|
442
|
-
export const ParallelismConfigurationFilterSensitiveLog = (obj) => ({
|
|
443
|
-
...obj,
|
|
444
|
-
});
|
|
445
|
-
export const FlinkApplicationConfigurationFilterSensitiveLog = (obj) => ({
|
|
446
|
-
...obj,
|
|
447
|
-
});
|
|
448
|
-
export const SqlApplicationConfigurationFilterSensitiveLog = (obj) => ({
|
|
449
|
-
...obj,
|
|
450
|
-
});
|
|
451
|
-
export const GlueDataCatalogConfigurationFilterSensitiveLog = (obj) => ({
|
|
452
|
-
...obj,
|
|
453
|
-
});
|
|
454
|
-
export const CatalogConfigurationFilterSensitiveLog = (obj) => ({
|
|
455
|
-
...obj,
|
|
456
|
-
});
|
|
457
|
-
export const MavenReferenceFilterSensitiveLog = (obj) => ({
|
|
458
|
-
...obj,
|
|
459
|
-
});
|
|
460
|
-
export const CustomArtifactConfigurationFilterSensitiveLog = (obj) => ({
|
|
461
|
-
...obj,
|
|
462
|
-
});
|
|
463
|
-
export const S3ContentBaseLocationFilterSensitiveLog = (obj) => ({
|
|
464
|
-
...obj,
|
|
465
|
-
});
|
|
466
|
-
export const DeployAsApplicationConfigurationFilterSensitiveLog = (obj) => ({
|
|
467
|
-
...obj,
|
|
468
|
-
});
|
|
469
|
-
export const ZeppelinMonitoringConfigurationFilterSensitiveLog = (obj) => ({
|
|
470
|
-
...obj,
|
|
471
|
-
});
|
|
472
|
-
export const ZeppelinApplicationConfigurationFilterSensitiveLog = (obj) => ({
|
|
473
|
-
...obj,
|
|
474
|
-
});
|
|
475
|
-
export const ApplicationConfigurationFilterSensitiveLog = (obj) => ({
|
|
476
|
-
...obj,
|
|
477
|
-
});
|
|
478
|
-
export const ApplicationSnapshotConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
479
|
-
...obj,
|
|
480
|
-
});
|
|
481
|
-
export const EnvironmentPropertyDescriptionsFilterSensitiveLog = (obj) => ({
|
|
482
|
-
...obj,
|
|
483
|
-
});
|
|
484
|
-
export const CheckpointConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
485
|
-
...obj,
|
|
486
|
-
});
|
|
487
|
-
export const MonitoringConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
488
|
-
...obj,
|
|
489
|
-
});
|
|
490
|
-
export const ParallelismConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
491
|
-
...obj,
|
|
492
|
-
});
|
|
493
|
-
export const FlinkApplicationConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
494
|
-
...obj,
|
|
495
|
-
});
|
|
496
|
-
export const ApplicationRestoreConfigurationFilterSensitiveLog = (obj) => ({
|
|
497
|
-
...obj,
|
|
498
|
-
});
|
|
499
|
-
export const FlinkRunConfigurationFilterSensitiveLog = (obj) => ({
|
|
500
|
-
...obj,
|
|
501
|
-
});
|
|
502
|
-
export const RunConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
503
|
-
...obj,
|
|
504
|
-
});
|
|
505
|
-
export const SqlApplicationConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
});
|
|
508
|
-
export const GlueDataCatalogConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
509
|
-
...obj,
|
|
510
|
-
});
|
|
511
|
-
export const CatalogConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
512
|
-
...obj,
|
|
513
|
-
});
|
|
514
|
-
export const CustomArtifactConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
515
|
-
...obj,
|
|
516
|
-
});
|
|
517
|
-
export const S3ContentBaseLocationDescriptionFilterSensitiveLog = (obj) => ({
|
|
518
|
-
...obj,
|
|
519
|
-
});
|
|
520
|
-
export const DeployAsApplicationConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
521
|
-
...obj,
|
|
522
|
-
});
|
|
523
|
-
export const ZeppelinMonitoringConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
524
|
-
...obj,
|
|
525
|
-
});
|
|
526
|
-
export const ZeppelinApplicationConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
527
|
-
...obj,
|
|
528
|
-
});
|
|
529
|
-
export const ApplicationConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
530
|
-
...obj,
|
|
531
|
-
});
|
|
532
|
-
export const ApplicationSnapshotConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
533
|
-
...obj,
|
|
534
|
-
});
|
|
535
|
-
export const EnvironmentPropertyUpdatesFilterSensitiveLog = (obj) => ({
|
|
536
|
-
...obj,
|
|
537
|
-
});
|
|
538
|
-
export const CheckpointConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
539
|
-
...obj,
|
|
540
|
-
});
|
|
541
|
-
export const MonitoringConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
542
|
-
...obj,
|
|
543
|
-
});
|
|
544
|
-
export const ParallelismConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
545
|
-
...obj,
|
|
546
|
-
});
|
|
547
|
-
export const FlinkApplicationConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
548
|
-
...obj,
|
|
549
|
-
});
|
|
550
|
-
export const InputParallelismUpdateFilterSensitiveLog = (obj) => ({
|
|
551
|
-
...obj,
|
|
552
|
-
});
|
|
553
|
-
export const InputLambdaProcessorUpdateFilterSensitiveLog = (obj) => ({
|
|
554
|
-
...obj,
|
|
555
|
-
});
|
|
556
|
-
export const InputProcessingConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
557
|
-
...obj,
|
|
558
|
-
});
|
|
559
|
-
export const InputSchemaUpdateFilterSensitiveLog = (obj) => ({
|
|
560
|
-
...obj,
|
|
561
|
-
});
|
|
562
|
-
export const KinesisFirehoseInputUpdateFilterSensitiveLog = (obj) => ({
|
|
563
|
-
...obj,
|
|
564
|
-
});
|
|
565
|
-
export const KinesisStreamsInputUpdateFilterSensitiveLog = (obj) => ({
|
|
566
|
-
...obj,
|
|
567
|
-
});
|
|
568
|
-
export const InputUpdateFilterSensitiveLog = (obj) => ({
|
|
569
|
-
...obj,
|
|
570
|
-
});
|
|
571
|
-
export const KinesisFirehoseOutputUpdateFilterSensitiveLog = (obj) => ({
|
|
572
|
-
...obj,
|
|
573
|
-
});
|
|
574
|
-
export const KinesisStreamsOutputUpdateFilterSensitiveLog = (obj) => ({
|
|
575
|
-
...obj,
|
|
576
|
-
});
|
|
577
|
-
export const LambdaOutputUpdateFilterSensitiveLog = (obj) => ({
|
|
578
|
-
...obj,
|
|
579
|
-
});
|
|
580
|
-
export const OutputUpdateFilterSensitiveLog = (obj) => ({
|
|
581
|
-
...obj,
|
|
582
|
-
});
|
|
583
|
-
export const S3ReferenceDataSourceUpdateFilterSensitiveLog = (obj) => ({
|
|
584
|
-
...obj,
|
|
585
|
-
});
|
|
586
|
-
export const ReferenceDataSourceUpdateFilterSensitiveLog = (obj) => ({
|
|
587
|
-
...obj,
|
|
588
|
-
});
|
|
589
|
-
export const SqlApplicationConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
590
|
-
...obj,
|
|
591
|
-
});
|
|
592
|
-
export const VpcConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
593
|
-
...obj,
|
|
594
|
-
});
|
|
595
|
-
export const GlueDataCatalogConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
596
|
-
...obj,
|
|
597
|
-
});
|
|
598
|
-
export const CatalogConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
599
|
-
...obj,
|
|
600
|
-
});
|
|
601
|
-
export const S3ContentBaseLocationUpdateFilterSensitiveLog = (obj) => ({
|
|
602
|
-
...obj,
|
|
603
|
-
});
|
|
604
|
-
export const DeployAsApplicationConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
605
|
-
...obj,
|
|
606
|
-
});
|
|
607
|
-
export const ZeppelinMonitoringConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
608
|
-
...obj,
|
|
609
|
-
});
|
|
610
|
-
export const ZeppelinApplicationConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
611
|
-
...obj,
|
|
612
|
-
});
|
|
613
|
-
export const ApplicationConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
614
|
-
...obj,
|
|
615
|
-
});
|
|
616
|
-
export const ApplicationMaintenanceConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
617
|
-
...obj,
|
|
618
|
-
});
|
|
619
|
-
export const ApplicationDetailFilterSensitiveLog = (obj) => ({
|
|
620
|
-
...obj,
|
|
621
|
-
});
|
|
622
|
-
export const ApplicationMaintenanceConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
623
|
-
...obj,
|
|
624
|
-
});
|
|
625
|
-
export const ApplicationSummaryFilterSensitiveLog = (obj) => ({
|
|
626
|
-
...obj,
|
|
627
|
-
});
|
|
628
|
-
export const ApplicationVersionSummaryFilterSensitiveLog = (obj) => ({
|
|
629
|
-
...obj,
|
|
630
|
-
});
|
|
631
|
-
export const CloudWatchLoggingOptionUpdateFilterSensitiveLog = (obj) => ({
|
|
632
|
-
...obj,
|
|
633
|
-
});
|
|
634
|
-
export const TagFilterSensitiveLog = (obj) => ({
|
|
635
|
-
...obj,
|
|
636
|
-
});
|
|
637
|
-
export const CreateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
638
|
-
...obj,
|
|
639
|
-
});
|
|
640
|
-
export const CreateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
641
|
-
...obj,
|
|
642
|
-
});
|
|
643
|
-
export const CreateApplicationPresignedUrlRequestFilterSensitiveLog = (obj) => ({
|
|
644
|
-
...obj,
|
|
645
|
-
});
|
|
646
|
-
export const CreateApplicationPresignedUrlResponseFilterSensitiveLog = (obj) => ({
|
|
647
|
-
...obj,
|
|
648
|
-
});
|
|
649
|
-
export const CreateApplicationSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
650
|
-
...obj,
|
|
651
|
-
});
|
|
652
|
-
export const CreateApplicationSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
653
|
-
...obj,
|
|
654
|
-
});
|
|
655
|
-
export const DeleteApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
656
|
-
...obj,
|
|
657
|
-
});
|
|
658
|
-
export const DeleteApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
659
|
-
...obj,
|
|
660
|
-
});
|
|
661
|
-
export const DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog = (obj) => ({
|
|
662
|
-
...obj,
|
|
663
|
-
});
|
|
664
|
-
export const DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog = (obj) => ({
|
|
665
|
-
...obj,
|
|
666
|
-
});
|
|
667
|
-
export const DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
668
|
-
...obj,
|
|
669
|
-
});
|
|
670
|
-
export const DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
671
|
-
...obj,
|
|
672
|
-
});
|
|
673
|
-
export const DeleteApplicationOutputRequestFilterSensitiveLog = (obj) => ({
|
|
674
|
-
...obj,
|
|
675
|
-
});
|
|
676
|
-
export const DeleteApplicationOutputResponseFilterSensitiveLog = (obj) => ({
|
|
677
|
-
...obj,
|
|
678
|
-
});
|
|
679
|
-
export const DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog = (obj) => ({
|
|
680
|
-
...obj,
|
|
681
|
-
});
|
|
682
|
-
export const DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog = (obj) => ({
|
|
683
|
-
...obj,
|
|
684
|
-
});
|
|
685
|
-
export const DeleteApplicationSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
686
|
-
...obj,
|
|
687
|
-
});
|
|
688
|
-
export const DeleteApplicationSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
689
|
-
...obj,
|
|
690
|
-
});
|
|
691
|
-
export const DeleteApplicationVpcConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
692
|
-
...obj,
|
|
693
|
-
});
|
|
694
|
-
export const DeleteApplicationVpcConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
695
|
-
...obj,
|
|
696
|
-
});
|
|
697
|
-
export const DescribeApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
698
|
-
...obj,
|
|
699
|
-
});
|
|
700
|
-
export const DescribeApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
701
|
-
...obj,
|
|
702
|
-
});
|
|
703
|
-
export const DescribeApplicationSnapshotRequestFilterSensitiveLog = (obj) => ({
|
|
704
|
-
...obj,
|
|
705
|
-
});
|
|
706
|
-
export const SnapshotDetailsFilterSensitiveLog = (obj) => ({
|
|
707
|
-
...obj,
|
|
708
|
-
});
|
|
709
|
-
export const DescribeApplicationSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
710
|
-
...obj,
|
|
711
|
-
});
|
|
712
|
-
export const DescribeApplicationVersionRequestFilterSensitiveLog = (obj) => ({
|
|
713
|
-
...obj,
|
|
714
|
-
});
|
|
715
|
-
export const DescribeApplicationVersionResponseFilterSensitiveLog = (obj) => ({
|
|
716
|
-
...obj,
|
|
717
|
-
});
|
|
718
|
-
export const S3ConfigurationFilterSensitiveLog = (obj) => ({
|
|
719
|
-
...obj,
|
|
720
|
-
});
|
|
721
|
-
export const DiscoverInputSchemaRequestFilterSensitiveLog = (obj) => ({
|
|
722
|
-
...obj,
|
|
723
|
-
});
|
|
724
|
-
export const DiscoverInputSchemaResponseFilterSensitiveLog = (obj) => ({
|
|
725
|
-
...obj,
|
|
726
|
-
});
|
|
727
|
-
export const ListApplicationsRequestFilterSensitiveLog = (obj) => ({
|
|
728
|
-
...obj,
|
|
729
|
-
});
|
|
730
|
-
export const ListApplicationsResponseFilterSensitiveLog = (obj) => ({
|
|
731
|
-
...obj,
|
|
732
|
-
});
|
|
733
|
-
export const ListApplicationSnapshotsRequestFilterSensitiveLog = (obj) => ({
|
|
734
|
-
...obj,
|
|
735
|
-
});
|
|
736
|
-
export const ListApplicationSnapshotsResponseFilterSensitiveLog = (obj) => ({
|
|
737
|
-
...obj,
|
|
738
|
-
});
|
|
739
|
-
export const ListApplicationVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
740
|
-
...obj,
|
|
741
|
-
});
|
|
742
|
-
export const ListApplicationVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
743
|
-
...obj,
|
|
744
|
-
});
|
|
745
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
746
|
-
...obj,
|
|
747
|
-
});
|
|
748
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
749
|
-
...obj,
|
|
750
|
-
});
|
|
751
|
-
export const RollbackApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
752
|
-
...obj,
|
|
753
|
-
});
|
|
754
|
-
export const RollbackApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
755
|
-
...obj,
|
|
756
|
-
});
|
|
757
|
-
export const SqlRunConfigurationFilterSensitiveLog = (obj) => ({
|
|
758
|
-
...obj,
|
|
759
|
-
});
|
|
760
|
-
export const RunConfigurationFilterSensitiveLog = (obj) => ({
|
|
761
|
-
...obj,
|
|
762
|
-
});
|
|
763
|
-
export const StartApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
764
|
-
...obj,
|
|
765
|
-
});
|
|
766
|
-
export const StartApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
767
|
-
...obj,
|
|
768
|
-
});
|
|
769
|
-
export const StopApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
770
|
-
...obj,
|
|
771
|
-
});
|
|
772
|
-
export const StopApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
773
|
-
...obj,
|
|
774
|
-
});
|
|
775
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
776
|
-
...obj,
|
|
777
|
-
});
|
|
778
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
779
|
-
...obj,
|
|
780
|
-
});
|
|
781
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
782
|
-
...obj,
|
|
783
|
-
});
|
|
784
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
785
|
-
...obj,
|
|
786
|
-
});
|
|
787
|
-
export const RunConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
788
|
-
...obj,
|
|
789
|
-
});
|
|
790
|
-
export const UpdateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
791
|
-
...obj,
|
|
792
|
-
});
|
|
793
|
-
export const UpdateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
794
|
-
...obj,
|
|
795
|
-
});
|
|
796
|
-
export const UpdateApplicationMaintenanceConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
797
|
-
...obj,
|
|
798
|
-
});
|
|
799
|
-
export const UpdateApplicationMaintenanceConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
800
|
-
...obj,
|
|
801
|
-
});
|
|
257
|
+
return UnableToDetectSchemaException;
|
|
258
|
+
}(__BaseException));
|
|
259
|
+
export { UnableToDetectSchemaException };
|
|
260
|
+
export var CloudWatchLoggingOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var AddApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var CloudWatchLoggingOptionDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var AddApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var InputParallelismFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var InputLambdaProcessorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var InputProcessingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var RecordColumnFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var CSVMappingParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var JSONMappingParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var MappingParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var RecordFormatFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var SourceSchemaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var KinesisFirehoseInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var KinesisStreamsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var InputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var AddApplicationInputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var InputLambdaProcessorDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var InputProcessingConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var InputStartingPositionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var KinesisFirehoseInputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var KinesisStreamsInputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var InputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var AddApplicationInputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var AddApplicationInputProcessingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var AddApplicationInputProcessingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var DestinationSchemaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var KinesisFirehoseOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var KinesisStreamsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var LambdaOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var OutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var AddApplicationOutputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var KinesisFirehoseOutputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var KinesisStreamsOutputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var LambdaOutputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var OutputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var AddApplicationOutputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var S3ReferenceDataSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var ReferenceDataSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var AddApplicationReferenceDataSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var S3ReferenceDataSourceDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var ReferenceDataSourceDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var AddApplicationReferenceDataSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var VpcConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var AddApplicationVpcConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var VpcConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var AddApplicationVpcConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var S3ContentLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var CodeContentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var ApplicationCodeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var S3ApplicationCodeLocationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var CodeContentDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var ApplicationCodeConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var S3ContentLocationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var CodeContentUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var ApplicationCodeConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var ApplicationSnapshotConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var PropertyGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var EnvironmentPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var CheckpointConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var MonitoringConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var ParallelismConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var FlinkApplicationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var SqlApplicationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var GlueDataCatalogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var CatalogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var MavenReferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var CustomArtifactConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var S3ContentBaseLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var DeployAsApplicationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var ZeppelinMonitoringConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var ZeppelinApplicationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var ApplicationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var ApplicationSnapshotConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var EnvironmentPropertyDescriptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var CheckpointConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var MonitoringConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var ParallelismConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var FlinkApplicationConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var ApplicationRestoreConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var FlinkRunConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var RunConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var SqlApplicationConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
export var GlueDataCatalogConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
export var CatalogConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
+
export var CustomArtifactConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
346
|
+
export var S3ContentBaseLocationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
+
export var DeployAsApplicationConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
348
|
+
export var ZeppelinMonitoringConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
+
export var ZeppelinApplicationConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
|
+
export var ApplicationConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
+
export var ApplicationSnapshotConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
352
|
+
export var EnvironmentPropertyUpdatesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
export var CheckpointConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
354
|
+
export var MonitoringConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
+
export var ParallelismConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
356
|
+
export var FlinkApplicationConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
export var InputParallelismUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var InputLambdaProcessorUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var InputProcessingConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
|
+
export var InputSchemaUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
|
+
export var KinesisFirehoseInputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
362
|
+
export var KinesisStreamsInputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
363
|
+
export var InputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
364
|
+
export var KinesisFirehoseOutputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
+
export var KinesisStreamsOutputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
366
|
+
export var LambdaOutputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
367
|
+
export var OutputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
368
|
+
export var S3ReferenceDataSourceUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
369
|
+
export var ReferenceDataSourceUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
370
|
+
export var SqlApplicationConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
371
|
+
export var VpcConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
372
|
+
export var GlueDataCatalogConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
|
+
export var CatalogConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
374
|
+
export var S3ContentBaseLocationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
375
|
+
export var DeployAsApplicationConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
376
|
+
export var ZeppelinMonitoringConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
377
|
+
export var ZeppelinApplicationConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
378
|
+
export var ApplicationConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
379
|
+
export var ApplicationMaintenanceConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
380
|
+
export var ApplicationDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
381
|
+
export var ApplicationMaintenanceConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
382
|
+
export var ApplicationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
383
|
+
export var ApplicationVersionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
384
|
+
export var CloudWatchLoggingOptionUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
385
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
386
|
+
export var CreateApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
387
|
+
export var CreateApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
388
|
+
export var CreateApplicationPresignedUrlRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
389
|
+
export var CreateApplicationPresignedUrlResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
390
|
+
export var CreateApplicationSnapshotRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
391
|
+
export var CreateApplicationSnapshotResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
392
|
+
export var DeleteApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
393
|
+
export var DeleteApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
394
|
+
export var DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
395
|
+
export var DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
396
|
+
export var DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
397
|
+
export var DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
398
|
+
export var DeleteApplicationOutputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
399
|
+
export var DeleteApplicationOutputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
400
|
+
export var DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
401
|
+
export var DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
402
|
+
export var DeleteApplicationSnapshotRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
403
|
+
export var DeleteApplicationSnapshotResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
404
|
+
export var DeleteApplicationVpcConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
405
|
+
export var DeleteApplicationVpcConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
406
|
+
export var DescribeApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
407
|
+
export var DescribeApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
408
|
+
export var DescribeApplicationSnapshotRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
409
|
+
export var SnapshotDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
410
|
+
export var DescribeApplicationSnapshotResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
411
|
+
export var DescribeApplicationVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
412
|
+
export var DescribeApplicationVersionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
413
|
+
export var S3ConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
414
|
+
export var DiscoverInputSchemaRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
415
|
+
export var DiscoverInputSchemaResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
416
|
+
export var ListApplicationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
417
|
+
export var ListApplicationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
418
|
+
export var ListApplicationSnapshotsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
419
|
+
export var ListApplicationSnapshotsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
420
|
+
export var ListApplicationVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
421
|
+
export var ListApplicationVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
422
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
423
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
424
|
+
export var RollbackApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
425
|
+
export var RollbackApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
426
|
+
export var SqlRunConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
427
|
+
export var RunConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
428
|
+
export var StartApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
429
|
+
export var StartApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
430
|
+
export var StopApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
431
|
+
export var StopApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
432
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
433
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
434
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
435
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
436
|
+
export var RunConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
437
|
+
export var UpdateApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
438
|
+
export var UpdateApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
439
|
+
export var UpdateApplicationMaintenanceConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
440
|
+
export var UpdateApplicationMaintenanceConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|