@aws-sdk/client-kinesis-analytics 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/KinesisAnalytics.js +89 -82
- package/dist-es/KinesisAnalyticsClient.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/CreateApplicationCommand.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/DescribeApplicationCommand.js +28 -21
- package/dist-es/commands/DiscoverInputSchemaCommand.js +28 -21
- package/dist-es/commands/ListApplicationsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.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/endpoints.js +8 -8
- package/dist-es/models/KinesisAnalyticsServiceException.js +10 -5
- package/dist-es/models/models_0.js +228 -413
- package/dist-es/protocols/Aws_json1_1.js +2068 -1793
- 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 +33 -33
|
@@ -1,81 +1,82 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
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
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
12
|
+
return ConcurrentModificationException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { ConcurrentModificationException };
|
|
15
|
+
var InvalidArgumentException = (function (_super) {
|
|
16
|
+
__extends(InvalidArgumentException, _super);
|
|
17
|
+
function InvalidArgumentException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "InvalidArgumentException", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "InvalidArgumentException";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, InvalidArgumentException.prototype);
|
|
22
|
+
return _this;
|
|
24
23
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
24
|
+
return InvalidArgumentException;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { InvalidArgumentException };
|
|
27
|
+
var ResourceInUseException = (function (_super) {
|
|
28
|
+
__extends(ResourceInUseException, _super);
|
|
29
|
+
function ResourceInUseException(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "ResourceInUseException";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
34
|
+
return _this;
|
|
36
35
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
36
|
+
return ResourceInUseException;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { ResourceInUseException };
|
|
39
|
+
var ResourceNotFoundException = (function (_super) {
|
|
40
|
+
__extends(ResourceNotFoundException, _super);
|
|
41
|
+
function ResourceNotFoundException(opts) {
|
|
42
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
43
|
+
_this.name = "ResourceNotFoundException";
|
|
44
|
+
_this.$fault = "client";
|
|
45
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
46
|
+
return _this;
|
|
48
47
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
48
|
+
return ResourceNotFoundException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { ResourceNotFoundException };
|
|
51
|
+
var UnsupportedOperationException = (function (_super) {
|
|
52
|
+
__extends(UnsupportedOperationException, _super);
|
|
53
|
+
function UnsupportedOperationException(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "UnsupportedOperationException";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
|
|
58
|
+
return _this;
|
|
60
59
|
}
|
|
61
|
-
|
|
60
|
+
return UnsupportedOperationException;
|
|
61
|
+
}(__BaseException));
|
|
62
|
+
export { UnsupportedOperationException };
|
|
62
63
|
export var RecordFormatType;
|
|
63
64
|
(function (RecordFormatType) {
|
|
64
65
|
RecordFormatType["CSV"] = "CSV";
|
|
65
66
|
RecordFormatType["JSON"] = "JSON";
|
|
66
67
|
})(RecordFormatType || (RecordFormatType = {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
this.$fault = "client";
|
|
76
|
-
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
68
|
+
var CodeValidationException = (function (_super) {
|
|
69
|
+
__extends(CodeValidationException, _super);
|
|
70
|
+
function CodeValidationException(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "CodeValidationException", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "CodeValidationException";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, CodeValidationException.prototype);
|
|
75
|
+
return _this;
|
|
77
76
|
}
|
|
78
|
-
|
|
77
|
+
return CodeValidationException;
|
|
78
|
+
}(__BaseException));
|
|
79
|
+
export { CodeValidationException };
|
|
79
80
|
export var ApplicationStatus;
|
|
80
81
|
(function (ApplicationStatus) {
|
|
81
82
|
ApplicationStatus["DELETING"] = "DELETING";
|
|
@@ -91,356 +92,170 @@ export var InputStartingPosition;
|
|
|
91
92
|
InputStartingPosition["NOW"] = "NOW";
|
|
92
93
|
InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
|
|
93
94
|
})(InputStartingPosition || (InputStartingPosition = {}));
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
this.$fault = "client";
|
|
103
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
95
|
+
var LimitExceededException = (function (_super) {
|
|
96
|
+
__extends(LimitExceededException, _super);
|
|
97
|
+
function LimitExceededException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
99
|
+
_this.name = "LimitExceededException";
|
|
100
|
+
_this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
102
|
+
return _this;
|
|
104
103
|
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
104
|
+
return LimitExceededException;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { LimitExceededException };
|
|
107
|
+
var TooManyTagsException = (function (_super) {
|
|
108
|
+
__extends(TooManyTagsException, _super);
|
|
109
|
+
function TooManyTagsException(opts) {
|
|
110
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
111
|
+
_this.name = "TooManyTagsException";
|
|
112
|
+
_this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
114
|
+
return _this;
|
|
116
115
|
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
116
|
+
return TooManyTagsException;
|
|
117
|
+
}(__BaseException));
|
|
118
|
+
export { TooManyTagsException };
|
|
119
|
+
var ResourceProvisionedThroughputExceededException = (function (_super) {
|
|
120
|
+
__extends(ResourceProvisionedThroughputExceededException, _super);
|
|
121
|
+
function ResourceProvisionedThroughputExceededException(opts) {
|
|
122
|
+
var _this = _super.call(this, __assign({ name: "ResourceProvisionedThroughputExceededException", $fault: "client" }, opts)) || this;
|
|
123
|
+
_this.name = "ResourceProvisionedThroughputExceededException";
|
|
124
|
+
_this.$fault = "client";
|
|
125
|
+
Object.setPrototypeOf(_this, ResourceProvisionedThroughputExceededException.prototype);
|
|
126
|
+
return _this;
|
|
128
127
|
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
128
|
+
return ResourceProvisionedThroughputExceededException;
|
|
129
|
+
}(__BaseException));
|
|
130
|
+
export { ResourceProvisionedThroughputExceededException };
|
|
131
|
+
var ServiceUnavailableException = (function (_super) {
|
|
132
|
+
__extends(ServiceUnavailableException, _super);
|
|
133
|
+
function ServiceUnavailableException(opts) {
|
|
134
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
135
|
+
_this.name = "ServiceUnavailableException";
|
|
136
|
+
_this.$fault = "server";
|
|
137
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
138
|
+
return _this;
|
|
140
139
|
}
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
140
|
+
return ServiceUnavailableException;
|
|
141
|
+
}(__BaseException));
|
|
142
|
+
export { ServiceUnavailableException };
|
|
143
|
+
var UnableToDetectSchemaException = (function (_super) {
|
|
144
|
+
__extends(UnableToDetectSchemaException, _super);
|
|
145
|
+
function UnableToDetectSchemaException(opts) {
|
|
146
|
+
var _this = _super.call(this, __assign({ name: "UnableToDetectSchemaException", $fault: "client" }, opts)) || this;
|
|
147
|
+
_this.name = "UnableToDetectSchemaException";
|
|
148
|
+
_this.$fault = "client";
|
|
149
|
+
Object.setPrototypeOf(_this, UnableToDetectSchemaException.prototype);
|
|
150
|
+
_this.RawInputRecords = opts.RawInputRecords;
|
|
151
|
+
_this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
152
|
+
return _this;
|
|
154
153
|
}
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
154
|
+
return UnableToDetectSchemaException;
|
|
155
|
+
}(__BaseException));
|
|
156
|
+
export { UnableToDetectSchemaException };
|
|
157
|
+
var InvalidApplicationConfigurationException = (function (_super) {
|
|
158
|
+
__extends(InvalidApplicationConfigurationException, _super);
|
|
159
|
+
function InvalidApplicationConfigurationException(opts) {
|
|
160
|
+
var _this = _super.call(this, __assign({ name: "InvalidApplicationConfigurationException", $fault: "client" }, opts)) || this;
|
|
161
|
+
_this.name = "InvalidApplicationConfigurationException";
|
|
162
|
+
_this.$fault = "client";
|
|
163
|
+
Object.setPrototypeOf(_this, InvalidApplicationConfigurationException.prototype);
|
|
164
|
+
return _this;
|
|
166
165
|
}
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
});
|
|
171
|
-
export
|
|
172
|
-
|
|
173
|
-
});
|
|
174
|
-
export
|
|
175
|
-
|
|
176
|
-
});
|
|
177
|
-
export
|
|
178
|
-
|
|
179
|
-
});
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
});
|
|
183
|
-
export
|
|
184
|
-
|
|
185
|
-
});
|
|
186
|
-
export
|
|
187
|
-
|
|
188
|
-
});
|
|
189
|
-
export
|
|
190
|
-
|
|
191
|
-
});
|
|
192
|
-
export
|
|
193
|
-
|
|
194
|
-
});
|
|
195
|
-
export
|
|
196
|
-
|
|
197
|
-
});
|
|
198
|
-
export
|
|
199
|
-
|
|
200
|
-
});
|
|
201
|
-
export
|
|
202
|
-
|
|
203
|
-
});
|
|
204
|
-
export
|
|
205
|
-
|
|
206
|
-
});
|
|
207
|
-
export
|
|
208
|
-
|
|
209
|
-
});
|
|
210
|
-
export
|
|
211
|
-
|
|
212
|
-
});
|
|
213
|
-
export
|
|
214
|
-
|
|
215
|
-
});
|
|
216
|
-
export
|
|
217
|
-
|
|
218
|
-
});
|
|
219
|
-
export
|
|
220
|
-
|
|
221
|
-
});
|
|
222
|
-
export
|
|
223
|
-
|
|
224
|
-
});
|
|
225
|
-
export
|
|
226
|
-
|
|
227
|
-
});
|
|
228
|
-
export
|
|
229
|
-
|
|
230
|
-
});
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
});
|
|
234
|
-
export
|
|
235
|
-
|
|
236
|
-
});
|
|
237
|
-
export
|
|
238
|
-
|
|
239
|
-
});
|
|
240
|
-
export
|
|
241
|
-
|
|
242
|
-
});
|
|
243
|
-
export
|
|
244
|
-
|
|
245
|
-
});
|
|
246
|
-
export
|
|
247
|
-
|
|
248
|
-
});
|
|
249
|
-
export
|
|
250
|
-
|
|
251
|
-
});
|
|
252
|
-
export
|
|
253
|
-
|
|
254
|
-
});
|
|
255
|
-
export
|
|
256
|
-
|
|
257
|
-
});
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
});
|
|
261
|
-
export
|
|
262
|
-
|
|
263
|
-
});
|
|
264
|
-
export const InputProcessingConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
265
|
-
...obj,
|
|
266
|
-
});
|
|
267
|
-
export const InputStartingPositionConfigurationFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
});
|
|
270
|
-
export const KinesisFirehoseInputDescriptionFilterSensitiveLog = (obj) => ({
|
|
271
|
-
...obj,
|
|
272
|
-
});
|
|
273
|
-
export const KinesisStreamsInputDescriptionFilterSensitiveLog = (obj) => ({
|
|
274
|
-
...obj,
|
|
275
|
-
});
|
|
276
|
-
export const InputDescriptionFilterSensitiveLog = (obj) => ({
|
|
277
|
-
...obj,
|
|
278
|
-
});
|
|
279
|
-
export const KinesisFirehoseOutputDescriptionFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
});
|
|
282
|
-
export const KinesisStreamsOutputDescriptionFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
285
|
-
export const LambdaOutputDescriptionFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
});
|
|
288
|
-
export const OutputDescriptionFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
export const S3ReferenceDataSourceDescriptionFilterSensitiveLog = (obj) => ({
|
|
292
|
-
...obj,
|
|
293
|
-
});
|
|
294
|
-
export const ReferenceDataSourceDescriptionFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
});
|
|
297
|
-
export const ApplicationDetailFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
});
|
|
300
|
-
export const ApplicationSummaryFilterSensitiveLog = (obj) => ({
|
|
301
|
-
...obj,
|
|
302
|
-
});
|
|
303
|
-
export const CloudWatchLoggingOptionUpdateFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
});
|
|
306
|
-
export const InputParallelismUpdateFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
});
|
|
309
|
-
export const InputLambdaProcessorUpdateFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
});
|
|
312
|
-
export const InputProcessingConfigurationUpdateFilterSensitiveLog = (obj) => ({
|
|
313
|
-
...obj,
|
|
314
|
-
});
|
|
315
|
-
export const InputSchemaUpdateFilterSensitiveLog = (obj) => ({
|
|
316
|
-
...obj,
|
|
317
|
-
});
|
|
318
|
-
export const KinesisFirehoseInputUpdateFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
});
|
|
321
|
-
export const KinesisStreamsInputUpdateFilterSensitiveLog = (obj) => ({
|
|
322
|
-
...obj,
|
|
323
|
-
});
|
|
324
|
-
export const InputUpdateFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
});
|
|
327
|
-
export const KinesisFirehoseOutputUpdateFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
});
|
|
330
|
-
export const KinesisStreamsOutputUpdateFilterSensitiveLog = (obj) => ({
|
|
331
|
-
...obj,
|
|
332
|
-
});
|
|
333
|
-
export const LambdaOutputUpdateFilterSensitiveLog = (obj) => ({
|
|
334
|
-
...obj,
|
|
335
|
-
});
|
|
336
|
-
export const OutputUpdateFilterSensitiveLog = (obj) => ({
|
|
337
|
-
...obj,
|
|
338
|
-
});
|
|
339
|
-
export const S3ReferenceDataSourceUpdateFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
});
|
|
342
|
-
export const ReferenceDataSourceUpdateFilterSensitiveLog = (obj) => ({
|
|
343
|
-
...obj,
|
|
344
|
-
});
|
|
345
|
-
export const ApplicationUpdateFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
});
|
|
348
|
-
export const TagFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
});
|
|
351
|
-
export const CreateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
352
|
-
...obj,
|
|
353
|
-
});
|
|
354
|
-
export const CreateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
});
|
|
357
|
-
export const DeleteApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
});
|
|
360
|
-
export const DeleteApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
});
|
|
363
|
-
export const DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
});
|
|
366
|
-
export const DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
});
|
|
369
|
-
export const DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
export const DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const DeleteApplicationOutputRequestFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
});
|
|
378
|
-
export const DeleteApplicationOutputResponseFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
});
|
|
381
|
-
export const DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
});
|
|
384
|
-
export const DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog = (obj) => ({
|
|
385
|
-
...obj,
|
|
386
|
-
});
|
|
387
|
-
export const DescribeApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
388
|
-
...obj,
|
|
389
|
-
});
|
|
390
|
-
export const DescribeApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
391
|
-
...obj,
|
|
392
|
-
});
|
|
393
|
-
export const S3ConfigurationFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
});
|
|
396
|
-
export const DiscoverInputSchemaRequestFilterSensitiveLog = (obj) => ({
|
|
397
|
-
...obj,
|
|
398
|
-
});
|
|
399
|
-
export const DiscoverInputSchemaResponseFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
});
|
|
402
|
-
export const InputConfigurationFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
});
|
|
405
|
-
export const ListApplicationsRequestFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
});
|
|
408
|
-
export const ListApplicationsResponseFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
});
|
|
411
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const StartApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const StartApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
});
|
|
423
|
-
export const StopApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
});
|
|
426
|
-
export const StopApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
});
|
|
429
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
430
|
-
...obj,
|
|
431
|
-
});
|
|
432
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
433
|
-
...obj,
|
|
434
|
-
});
|
|
435
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
});
|
|
438
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
439
|
-
...obj,
|
|
440
|
-
});
|
|
441
|
-
export const UpdateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
442
|
-
...obj,
|
|
443
|
-
});
|
|
444
|
-
export const UpdateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
445
|
-
...obj,
|
|
446
|
-
});
|
|
166
|
+
return InvalidApplicationConfigurationException;
|
|
167
|
+
}(__BaseException));
|
|
168
|
+
export { InvalidApplicationConfigurationException };
|
|
169
|
+
export var CloudWatchLoggingOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
|
+
export var AddApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
|
+
export var AddApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
export var InputParallelismFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
+
export var InputLambdaProcessorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
174
|
+
export var InputProcessingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
175
|
+
export var RecordColumnFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
176
|
+
export var CSVMappingParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
+
export var JSONMappingParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
+
export var MappingParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
|
+
export var RecordFormatFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
export var SourceSchemaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
+
export var KinesisFirehoseInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
|
+
export var KinesisStreamsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
183
|
+
export var InputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
export var AddApplicationInputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
+
export var AddApplicationInputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
+
export var AddApplicationInputProcessingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
187
|
+
export var AddApplicationInputProcessingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
|
+
export var DestinationSchemaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
189
|
+
export var KinesisFirehoseOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
+
export var KinesisStreamsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
export var LambdaOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
|
+
export var OutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
+
export var AddApplicationOutputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var AddApplicationOutputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
export var S3ReferenceDataSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var ReferenceDataSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var AddApplicationReferenceDataSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var AddApplicationReferenceDataSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var CloudWatchLoggingOptionDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
export var InputLambdaProcessorDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
+
export var InputProcessingConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
export var InputStartingPositionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
203
|
+
export var KinesisFirehoseInputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
|
+
export var KinesisStreamsInputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
+
export var InputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
export var KinesisFirehoseOutputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
|
+
export var KinesisStreamsOutputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
|
+
export var LambdaOutputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
+
export var OutputDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
export var S3ReferenceDataSourceDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
|
+
export var ReferenceDataSourceDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
212
|
+
export var ApplicationDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
213
|
+
export var ApplicationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
214
|
+
export var CloudWatchLoggingOptionUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
215
|
+
export var InputParallelismUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
export var InputLambdaProcessorUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
+
export var InputProcessingConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
218
|
+
export var InputSchemaUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var KinesisFirehoseInputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
export var KinesisStreamsInputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
+
export var InputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
222
|
+
export var KinesisFirehoseOutputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
export var KinesisStreamsOutputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
|
+
export var LambdaOutputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
|
+
export var OutputUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var S3ReferenceDataSourceUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var ReferenceDataSourceUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
export var ApplicationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
229
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
+
export var CreateApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var CreateApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var DeleteApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var DeleteApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
234
|
+
export var DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
export var DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
|
+
export var DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
237
|
+
export var DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
|
+
export var DeleteApplicationOutputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
export var DeleteApplicationOutputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var DescribeApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var DescribeApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var S3ConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
245
|
+
export var DiscoverInputSchemaRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var DiscoverInputSchemaResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var InputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var ListApplicationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var ListApplicationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var StartApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var StartApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var StopApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var StopApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var UpdateApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var UpdateApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|