@aws-sdk/client-kinesis-analytics 3.181.0 → 3.183.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.
Files changed (32) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/KinesisAnalytics.js +82 -89
  3. package/dist-es/KinesisAnalyticsClient.js +22 -28
  4. package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +21 -28
  5. package/dist-es/commands/AddApplicationInputCommand.js +21 -28
  6. package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +21 -28
  7. package/dist-es/commands/AddApplicationOutputCommand.js +21 -28
  8. package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +21 -28
  9. package/dist-es/commands/CreateApplicationCommand.js +21 -28
  10. package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +21 -28
  11. package/dist-es/commands/DeleteApplicationCommand.js +21 -28
  12. package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +21 -28
  13. package/dist-es/commands/DeleteApplicationOutputCommand.js +21 -28
  14. package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +21 -28
  15. package/dist-es/commands/DescribeApplicationCommand.js +21 -28
  16. package/dist-es/commands/DiscoverInputSchemaCommand.js +21 -28
  17. package/dist-es/commands/ListApplicationsCommand.js +21 -28
  18. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  19. package/dist-es/commands/StartApplicationCommand.js +21 -28
  20. package/dist-es/commands/StopApplicationCommand.js +21 -28
  21. package/dist-es/commands/TagResourceCommand.js +21 -28
  22. package/dist-es/commands/UntagResourceCommand.js +21 -28
  23. package/dist-es/commands/UpdateApplicationCommand.js +21 -28
  24. package/dist-es/endpoints.js +8 -8
  25. package/dist-es/models/KinesisAnalyticsServiceException.js +5 -10
  26. package/dist-es/models/models_0.js +413 -228
  27. package/dist-es/protocols/Aws_json1_1.js +1793 -2068
  28. package/dist-es/runtimeConfig.browser.js +26 -12
  29. package/dist-es/runtimeConfig.js +30 -12
  30. package/dist-es/runtimeConfig.native.js +8 -5
  31. package/dist-es/runtimeConfig.shared.js +8 -11
  32. package/package.json +33 -33
@@ -1,82 +1,81 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
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;
2
+ export class ConcurrentModificationException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "ConcurrentModificationException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "ConcurrentModificationException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
11
12
  }
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;
13
+ }
14
+ export class InvalidArgumentException extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "InvalidArgumentException",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "InvalidArgumentException";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, InvalidArgumentException.prototype);
23
24
  }
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;
25
+ }
26
+ export class ResourceInUseException extends __BaseException {
27
+ constructor(opts) {
28
+ super({
29
+ name: "ResourceInUseException",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ this.name = "ResourceInUseException";
34
+ this.$fault = "client";
35
+ Object.setPrototypeOf(this, ResourceInUseException.prototype);
35
36
  }
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;
37
+ }
38
+ export class ResourceNotFoundException extends __BaseException {
39
+ constructor(opts) {
40
+ super({
41
+ name: "ResourceNotFoundException",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ this.name = "ResourceNotFoundException";
46
+ this.$fault = "client";
47
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
47
48
  }
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;
49
+ }
50
+ export class UnsupportedOperationException extends __BaseException {
51
+ constructor(opts) {
52
+ super({
53
+ name: "UnsupportedOperationException",
54
+ $fault: "client",
55
+ ...opts,
56
+ });
57
+ this.name = "UnsupportedOperationException";
58
+ this.$fault = "client";
59
+ Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
59
60
  }
60
- return UnsupportedOperationException;
61
- }(__BaseException));
62
- export { UnsupportedOperationException };
61
+ }
63
62
  export var RecordFormatType;
64
63
  (function (RecordFormatType) {
65
64
  RecordFormatType["CSV"] = "CSV";
66
65
  RecordFormatType["JSON"] = "JSON";
67
66
  })(RecordFormatType || (RecordFormatType = {}));
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;
67
+ export class CodeValidationException extends __BaseException {
68
+ constructor(opts) {
69
+ super({
70
+ name: "CodeValidationException",
71
+ $fault: "client",
72
+ ...opts,
73
+ });
74
+ this.name = "CodeValidationException";
75
+ this.$fault = "client";
76
+ Object.setPrototypeOf(this, CodeValidationException.prototype);
76
77
  }
77
- return CodeValidationException;
78
- }(__BaseException));
79
- export { CodeValidationException };
78
+ }
80
79
  export var ApplicationStatus;
81
80
  (function (ApplicationStatus) {
82
81
  ApplicationStatus["DELETING"] = "DELETING";
@@ -92,170 +91,356 @@ export var InputStartingPosition;
92
91
  InputStartingPosition["NOW"] = "NOW";
93
92
  InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
94
93
  })(InputStartingPosition || (InputStartingPosition = {}));
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;
94
+ export class LimitExceededException extends __BaseException {
95
+ constructor(opts) {
96
+ super({
97
+ name: "LimitExceededException",
98
+ $fault: "client",
99
+ ...opts,
100
+ });
101
+ this.name = "LimitExceededException";
102
+ this.$fault = "client";
103
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
103
104
  }
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;
105
+ }
106
+ export class TooManyTagsException extends __BaseException {
107
+ constructor(opts) {
108
+ super({
109
+ name: "TooManyTagsException",
110
+ $fault: "client",
111
+ ...opts,
112
+ });
113
+ this.name = "TooManyTagsException";
114
+ this.$fault = "client";
115
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
115
116
  }
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;
117
+ }
118
+ export class ResourceProvisionedThroughputExceededException extends __BaseException {
119
+ constructor(opts) {
120
+ super({
121
+ name: "ResourceProvisionedThroughputExceededException",
122
+ $fault: "client",
123
+ ...opts,
124
+ });
125
+ this.name = "ResourceProvisionedThroughputExceededException";
126
+ this.$fault = "client";
127
+ Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
127
128
  }
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;
129
+ }
130
+ export class ServiceUnavailableException extends __BaseException {
131
+ constructor(opts) {
132
+ super({
133
+ name: "ServiceUnavailableException",
134
+ $fault: "server",
135
+ ...opts,
136
+ });
137
+ this.name = "ServiceUnavailableException";
138
+ this.$fault = "server";
139
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
139
140
  }
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;
141
+ }
142
+ export class UnableToDetectSchemaException extends __BaseException {
143
+ constructor(opts) {
144
+ super({
145
+ name: "UnableToDetectSchemaException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ this.name = "UnableToDetectSchemaException";
150
+ this.$fault = "client";
151
+ Object.setPrototypeOf(this, UnableToDetectSchemaException.prototype);
152
+ this.RawInputRecords = opts.RawInputRecords;
153
+ this.ProcessedInputRecords = opts.ProcessedInputRecords;
153
154
  }
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;
155
+ }
156
+ export class InvalidApplicationConfigurationException extends __BaseException {
157
+ constructor(opts) {
158
+ super({
159
+ name: "InvalidApplicationConfigurationException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ this.name = "InvalidApplicationConfigurationException";
164
+ this.$fault = "client";
165
+ Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
165
166
  }
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)); };
167
+ }
168
+ export const CloudWatchLoggingOptionFilterSensitiveLog = (obj) => ({
169
+ ...obj,
170
+ });
171
+ export const AddApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog = (obj) => ({
172
+ ...obj,
173
+ });
174
+ export const AddApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog = (obj) => ({
175
+ ...obj,
176
+ });
177
+ export const InputParallelismFilterSensitiveLog = (obj) => ({
178
+ ...obj,
179
+ });
180
+ export const InputLambdaProcessorFilterSensitiveLog = (obj) => ({
181
+ ...obj,
182
+ });
183
+ export const InputProcessingConfigurationFilterSensitiveLog = (obj) => ({
184
+ ...obj,
185
+ });
186
+ export const RecordColumnFilterSensitiveLog = (obj) => ({
187
+ ...obj,
188
+ });
189
+ export const CSVMappingParametersFilterSensitiveLog = (obj) => ({
190
+ ...obj,
191
+ });
192
+ export const JSONMappingParametersFilterSensitiveLog = (obj) => ({
193
+ ...obj,
194
+ });
195
+ export const MappingParametersFilterSensitiveLog = (obj) => ({
196
+ ...obj,
197
+ });
198
+ export const RecordFormatFilterSensitiveLog = (obj) => ({
199
+ ...obj,
200
+ });
201
+ export const SourceSchemaFilterSensitiveLog = (obj) => ({
202
+ ...obj,
203
+ });
204
+ export const KinesisFirehoseInputFilterSensitiveLog = (obj) => ({
205
+ ...obj,
206
+ });
207
+ export const KinesisStreamsInputFilterSensitiveLog = (obj) => ({
208
+ ...obj,
209
+ });
210
+ export const InputFilterSensitiveLog = (obj) => ({
211
+ ...obj,
212
+ });
213
+ export const AddApplicationInputRequestFilterSensitiveLog = (obj) => ({
214
+ ...obj,
215
+ });
216
+ export const AddApplicationInputResponseFilterSensitiveLog = (obj) => ({
217
+ ...obj,
218
+ });
219
+ export const AddApplicationInputProcessingConfigurationRequestFilterSensitiveLog = (obj) => ({
220
+ ...obj,
221
+ });
222
+ export const AddApplicationInputProcessingConfigurationResponseFilterSensitiveLog = (obj) => ({
223
+ ...obj,
224
+ });
225
+ export const DestinationSchemaFilterSensitiveLog = (obj) => ({
226
+ ...obj,
227
+ });
228
+ export const KinesisFirehoseOutputFilterSensitiveLog = (obj) => ({
229
+ ...obj,
230
+ });
231
+ export const KinesisStreamsOutputFilterSensitiveLog = (obj) => ({
232
+ ...obj,
233
+ });
234
+ export const LambdaOutputFilterSensitiveLog = (obj) => ({
235
+ ...obj,
236
+ });
237
+ export const OutputFilterSensitiveLog = (obj) => ({
238
+ ...obj,
239
+ });
240
+ export const AddApplicationOutputRequestFilterSensitiveLog = (obj) => ({
241
+ ...obj,
242
+ });
243
+ export const AddApplicationOutputResponseFilterSensitiveLog = (obj) => ({
244
+ ...obj,
245
+ });
246
+ export const S3ReferenceDataSourceFilterSensitiveLog = (obj) => ({
247
+ ...obj,
248
+ });
249
+ export const ReferenceDataSourceFilterSensitiveLog = (obj) => ({
250
+ ...obj,
251
+ });
252
+ export const AddApplicationReferenceDataSourceRequestFilterSensitiveLog = (obj) => ({
253
+ ...obj,
254
+ });
255
+ export const AddApplicationReferenceDataSourceResponseFilterSensitiveLog = (obj) => ({
256
+ ...obj,
257
+ });
258
+ export const CloudWatchLoggingOptionDescriptionFilterSensitiveLog = (obj) => ({
259
+ ...obj,
260
+ });
261
+ export const InputLambdaProcessorDescriptionFilterSensitiveLog = (obj) => ({
262
+ ...obj,
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
+ });