@aws-sdk/client-iot-events 3.186.0 → 3.188.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 (38) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/IoTEvents.js +106 -113
  3. package/dist-es/IoTEventsClient.js +22 -28
  4. package/dist-es/commands/CreateAlarmModelCommand.js +21 -28
  5. package/dist-es/commands/CreateDetectorModelCommand.js +21 -28
  6. package/dist-es/commands/CreateInputCommand.js +21 -28
  7. package/dist-es/commands/DeleteAlarmModelCommand.js +21 -28
  8. package/dist-es/commands/DeleteDetectorModelCommand.js +21 -28
  9. package/dist-es/commands/DeleteInputCommand.js +21 -28
  10. package/dist-es/commands/DescribeAlarmModelCommand.js +21 -28
  11. package/dist-es/commands/DescribeDetectorModelAnalysisCommand.js +21 -28
  12. package/dist-es/commands/DescribeDetectorModelCommand.js +21 -28
  13. package/dist-es/commands/DescribeInputCommand.js +21 -28
  14. package/dist-es/commands/DescribeLoggingOptionsCommand.js +21 -28
  15. package/dist-es/commands/GetDetectorModelAnalysisResultsCommand.js +21 -28
  16. package/dist-es/commands/ListAlarmModelVersionsCommand.js +21 -28
  17. package/dist-es/commands/ListAlarmModelsCommand.js +21 -28
  18. package/dist-es/commands/ListDetectorModelVersionsCommand.js +21 -28
  19. package/dist-es/commands/ListDetectorModelsCommand.js +21 -28
  20. package/dist-es/commands/ListInputRoutingsCommand.js +21 -28
  21. package/dist-es/commands/ListInputsCommand.js +21 -28
  22. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  23. package/dist-es/commands/PutLoggingOptionsCommand.js +22 -29
  24. package/dist-es/commands/StartDetectorModelAnalysisCommand.js +21 -28
  25. package/dist-es/commands/TagResourceCommand.js +21 -28
  26. package/dist-es/commands/UntagResourceCommand.js +21 -28
  27. package/dist-es/commands/UpdateAlarmModelCommand.js +21 -28
  28. package/dist-es/commands/UpdateDetectorModelCommand.js +21 -28
  29. package/dist-es/commands/UpdateInputCommand.js +21 -28
  30. package/dist-es/endpoints.js +8 -8
  31. package/dist-es/models/IoTEventsServiceException.js +5 -10
  32. package/dist-es/models/models_0.js +440 -215
  33. package/dist-es/protocols/Aws_restJson1.js +2437 -3082
  34. package/dist-es/runtimeConfig.browser.js +26 -12
  35. package/dist-es/runtimeConfig.js +30 -12
  36. package/dist-es/runtimeConfig.native.js +8 -5
  37. package/dist-es/runtimeConfig.shared.js +8 -11
  38. package/package.json +33 -33
@@ -1,4 +1,3 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { IoTEventsServiceException as __BaseException } from "./IoTEventsServiceException";
3
2
  export var PayloadType;
4
3
  (function (PayloadType) {
@@ -33,92 +32,92 @@ export var AnalysisStatus;
33
32
  AnalysisStatus["FAILED"] = "FAILED";
34
33
  AnalysisStatus["RUNNING"] = "RUNNING";
35
34
  })(AnalysisStatus || (AnalysisStatus = {}));
36
- var InternalFailureException = (function (_super) {
37
- __extends(InternalFailureException, _super);
38
- function InternalFailureException(opts) {
39
- var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
40
- _this.name = "InternalFailureException";
41
- _this.$fault = "server";
42
- Object.setPrototypeOf(_this, InternalFailureException.prototype);
43
- return _this;
35
+ export class InternalFailureException extends __BaseException {
36
+ constructor(opts) {
37
+ super({
38
+ name: "InternalFailureException",
39
+ $fault: "server",
40
+ ...opts,
41
+ });
42
+ this.name = "InternalFailureException";
43
+ this.$fault = "server";
44
+ Object.setPrototypeOf(this, InternalFailureException.prototype);
44
45
  }
45
- return InternalFailureException;
46
- }(__BaseException));
47
- export { InternalFailureException };
48
- var InvalidRequestException = (function (_super) {
49
- __extends(InvalidRequestException, _super);
50
- function InvalidRequestException(opts) {
51
- var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
52
- _this.name = "InvalidRequestException";
53
- _this.$fault = "client";
54
- Object.setPrototypeOf(_this, InvalidRequestException.prototype);
55
- return _this;
46
+ }
47
+ export class InvalidRequestException extends __BaseException {
48
+ constructor(opts) {
49
+ super({
50
+ name: "InvalidRequestException",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ this.name = "InvalidRequestException";
55
+ this.$fault = "client";
56
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
56
57
  }
57
- return InvalidRequestException;
58
- }(__BaseException));
59
- export { InvalidRequestException };
60
- var LimitExceededException = (function (_super) {
61
- __extends(LimitExceededException, _super);
62
- function LimitExceededException(opts) {
63
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
64
- _this.name = "LimitExceededException";
65
- _this.$fault = "client";
66
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
67
- return _this;
58
+ }
59
+ export class LimitExceededException extends __BaseException {
60
+ constructor(opts) {
61
+ super({
62
+ name: "LimitExceededException",
63
+ $fault: "client",
64
+ ...opts,
65
+ });
66
+ this.name = "LimitExceededException";
67
+ this.$fault = "client";
68
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
68
69
  }
69
- return LimitExceededException;
70
- }(__BaseException));
71
- export { LimitExceededException };
72
- var ResourceAlreadyExistsException = (function (_super) {
73
- __extends(ResourceAlreadyExistsException, _super);
74
- function ResourceAlreadyExistsException(opts) {
75
- var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
76
- _this.name = "ResourceAlreadyExistsException";
77
- _this.$fault = "client";
78
- Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
79
- _this.resourceId = opts.resourceId;
80
- _this.resourceArn = opts.resourceArn;
81
- return _this;
70
+ }
71
+ export class ResourceAlreadyExistsException extends __BaseException {
72
+ constructor(opts) {
73
+ super({
74
+ name: "ResourceAlreadyExistsException",
75
+ $fault: "client",
76
+ ...opts,
77
+ });
78
+ this.name = "ResourceAlreadyExistsException";
79
+ this.$fault = "client";
80
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
81
+ this.resourceId = opts.resourceId;
82
+ this.resourceArn = opts.resourceArn;
82
83
  }
83
- return ResourceAlreadyExistsException;
84
- }(__BaseException));
85
- export { ResourceAlreadyExistsException };
86
- var ResourceInUseException = (function (_super) {
87
- __extends(ResourceInUseException, _super);
88
- function ResourceInUseException(opts) {
89
- var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
90
- _this.name = "ResourceInUseException";
91
- _this.$fault = "client";
92
- Object.setPrototypeOf(_this, ResourceInUseException.prototype);
93
- return _this;
84
+ }
85
+ export class ResourceInUseException extends __BaseException {
86
+ constructor(opts) {
87
+ super({
88
+ name: "ResourceInUseException",
89
+ $fault: "client",
90
+ ...opts,
91
+ });
92
+ this.name = "ResourceInUseException";
93
+ this.$fault = "client";
94
+ Object.setPrototypeOf(this, ResourceInUseException.prototype);
94
95
  }
95
- return ResourceInUseException;
96
- }(__BaseException));
97
- export { ResourceInUseException };
98
- var ServiceUnavailableException = (function (_super) {
99
- __extends(ServiceUnavailableException, _super);
100
- function ServiceUnavailableException(opts) {
101
- var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
102
- _this.name = "ServiceUnavailableException";
103
- _this.$fault = "server";
104
- Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
105
- return _this;
96
+ }
97
+ export class ServiceUnavailableException extends __BaseException {
98
+ constructor(opts) {
99
+ super({
100
+ name: "ServiceUnavailableException",
101
+ $fault: "server",
102
+ ...opts,
103
+ });
104
+ this.name = "ServiceUnavailableException";
105
+ this.$fault = "server";
106
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
106
107
  }
107
- return ServiceUnavailableException;
108
- }(__BaseException));
109
- export { ServiceUnavailableException };
110
- var ThrottlingException = (function (_super) {
111
- __extends(ThrottlingException, _super);
112
- function ThrottlingException(opts) {
113
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
114
- _this.name = "ThrottlingException";
115
- _this.$fault = "client";
116
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
117
- return _this;
108
+ }
109
+ export class ThrottlingException extends __BaseException {
110
+ constructor(opts) {
111
+ super({
112
+ name: "ThrottlingException",
113
+ $fault: "client",
114
+ ...opts,
115
+ });
116
+ this.name = "ThrottlingException";
117
+ this.$fault = "client";
118
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
118
119
  }
119
- return ThrottlingException;
120
- }(__BaseException));
121
- export { ThrottlingException };
120
+ }
122
121
  export var EvaluationMethod;
123
122
  (function (EvaluationMethod) {
124
123
  EvaluationMethod["BATCH"] = "BATCH";
@@ -141,146 +140,372 @@ export var InputStatus;
141
140
  InputStatus["DELETING"] = "DELETING";
142
141
  InputStatus["UPDATING"] = "UPDATING";
143
142
  })(InputStatus || (InputStatus = {}));
144
- var ResourceNotFoundException = (function (_super) {
145
- __extends(ResourceNotFoundException, _super);
146
- function ResourceNotFoundException(opts) {
147
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
148
- _this.name = "ResourceNotFoundException";
149
- _this.$fault = "client";
150
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
151
- return _this;
143
+ export class ResourceNotFoundException extends __BaseException {
144
+ constructor(opts) {
145
+ super({
146
+ name: "ResourceNotFoundException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ this.name = "ResourceNotFoundException";
151
+ this.$fault = "client";
152
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
152
153
  }
153
- return ResourceNotFoundException;
154
- }(__BaseException));
155
- export { ResourceNotFoundException };
154
+ }
156
155
  export var LoggingLevel;
157
156
  (function (LoggingLevel) {
158
157
  LoggingLevel["DEBUG"] = "DEBUG";
159
158
  LoggingLevel["ERROR"] = "ERROR";
160
159
  LoggingLevel["INFO"] = "INFO";
161
160
  })(LoggingLevel || (LoggingLevel = {}));
162
- var UnsupportedOperationException = (function (_super) {
163
- __extends(UnsupportedOperationException, _super);
164
- function UnsupportedOperationException(opts) {
165
- var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "server" }, opts)) || this;
166
- _this.name = "UnsupportedOperationException";
167
- _this.$fault = "server";
168
- Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
169
- return _this;
161
+ export class UnsupportedOperationException extends __BaseException {
162
+ constructor(opts) {
163
+ super({
164
+ name: "UnsupportedOperationException",
165
+ $fault: "server",
166
+ ...opts,
167
+ });
168
+ this.name = "UnsupportedOperationException";
169
+ this.$fault = "server";
170
+ Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
170
171
  }
171
- return UnsupportedOperationException;
172
- }(__BaseException));
173
- export { UnsupportedOperationException };
174
- export var AcknowledgeFlowFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
- export var ClearTimerActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
- export var PayloadFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
- export var DynamoDBActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
- export var DynamoDBv2ActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
- export var FirehoseActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
- export var IotEventsActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
- export var AssetPropertyTimestampFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
- export var AssetPropertyVariantFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
- export var AssetPropertyValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
- export var IotSiteWiseActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
185
- export var IotTopicPublishActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
- export var LambdaActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
187
- export var ResetTimerActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
- export var SetTimerActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
- export var SetVariableActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
- export var SNSTopicPublishActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
- export var SqsActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
192
- export var ActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
193
- export var AlarmActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
194
- export var InitializationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
- export var AlarmCapabilitiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
196
- export var AlarmEventActionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
197
- export var AlarmModelSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
- export var AlarmModelVersionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
- export var NotificationTargetActionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
200
- export var EmailContentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
201
- export var SSOIdentityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
202
- export var RecipientDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
- export var EmailRecipientsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
- export var EmailConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
- export var SMSConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
206
- export var NotificationActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
- export var AlarmNotificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
- export var SimpleRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
- export var AlarmRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
210
- export var AnalysisResultLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
- export var AnalysisResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
- export var AttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
213
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
214
- export var CreateAlarmModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
- export var CreateAlarmModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
- export var EventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
- export var OnEnterLifecycleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
218
- export var OnExitLifecycleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
- export var TransitionEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
220
- export var OnInputLifecycleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
221
- export var StateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
222
- export var DetectorModelDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
- export var CreateDetectorModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
- export var DetectorModelConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
225
- export var CreateDetectorModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
- export var InputDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
- export var CreateInputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
- export var InputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
- export var CreateInputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
- export var DeleteAlarmModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
231
- export var DeleteAlarmModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
232
- export var DeleteDetectorModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
233
- export var DeleteDetectorModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
234
- export var DeleteInputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
235
- export var DeleteInputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
236
- export var DescribeAlarmModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
- export var DescribeAlarmModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
238
- export var DescribeDetectorModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
239
- export var DetectorModelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
240
- export var DescribeDetectorModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
241
- export var DescribeDetectorModelAnalysisRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
242
- export var DescribeDetectorModelAnalysisResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
243
- export var DescribeInputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
- export var InputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
245
- export var DescribeInputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
- export var DescribeLoggingOptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
- export var DetectorDebugOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
- export var LoggingOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
249
- export var DescribeLoggingOptionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
250
- export var DetectorModelSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
- export var DetectorModelVersionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
252
- export var GetDetectorModelAnalysisResultsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
253
- export var GetDetectorModelAnalysisResultsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
- export var IotEventsInputIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
- export var IotSiteWiseAssetModelPropertyIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
256
- export var IotSiteWiseInputIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
257
- export var InputIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
- export var InputSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
259
- export var ListAlarmModelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
- export var ListAlarmModelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
- export var ListAlarmModelVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
- export var ListAlarmModelVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
- export var ListDetectorModelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
- export var ListDetectorModelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
- export var ListDetectorModelVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
- export var ListDetectorModelVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
- export var ListInputRoutingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
- export var RoutedResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
- export var ListInputRoutingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
- export var ListInputsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
- export var ListInputsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
- export var PutLoggingOptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
- export var StartDetectorModelAnalysisRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
- export var StartDetectorModelAnalysisResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
- export var UpdateAlarmModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
- export var UpdateAlarmModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var UpdateDetectorModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
- export var UpdateDetectorModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var UpdateInputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var UpdateInputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
172
+ }
173
+ export const AcknowledgeFlowFilterSensitiveLog = (obj) => ({
174
+ ...obj,
175
+ });
176
+ export const ClearTimerActionFilterSensitiveLog = (obj) => ({
177
+ ...obj,
178
+ });
179
+ export const PayloadFilterSensitiveLog = (obj) => ({
180
+ ...obj,
181
+ });
182
+ export const DynamoDBActionFilterSensitiveLog = (obj) => ({
183
+ ...obj,
184
+ });
185
+ export const DynamoDBv2ActionFilterSensitiveLog = (obj) => ({
186
+ ...obj,
187
+ });
188
+ export const FirehoseActionFilterSensitiveLog = (obj) => ({
189
+ ...obj,
190
+ });
191
+ export const IotEventsActionFilterSensitiveLog = (obj) => ({
192
+ ...obj,
193
+ });
194
+ export const AssetPropertyTimestampFilterSensitiveLog = (obj) => ({
195
+ ...obj,
196
+ });
197
+ export const AssetPropertyVariantFilterSensitiveLog = (obj) => ({
198
+ ...obj,
199
+ });
200
+ export const AssetPropertyValueFilterSensitiveLog = (obj) => ({
201
+ ...obj,
202
+ });
203
+ export const IotSiteWiseActionFilterSensitiveLog = (obj) => ({
204
+ ...obj,
205
+ });
206
+ export const IotTopicPublishActionFilterSensitiveLog = (obj) => ({
207
+ ...obj,
208
+ });
209
+ export const LambdaActionFilterSensitiveLog = (obj) => ({
210
+ ...obj,
211
+ });
212
+ export const ResetTimerActionFilterSensitiveLog = (obj) => ({
213
+ ...obj,
214
+ });
215
+ export const SetTimerActionFilterSensitiveLog = (obj) => ({
216
+ ...obj,
217
+ });
218
+ export const SetVariableActionFilterSensitiveLog = (obj) => ({
219
+ ...obj,
220
+ });
221
+ export const SNSTopicPublishActionFilterSensitiveLog = (obj) => ({
222
+ ...obj,
223
+ });
224
+ export const SqsActionFilterSensitiveLog = (obj) => ({
225
+ ...obj,
226
+ });
227
+ export const ActionFilterSensitiveLog = (obj) => ({
228
+ ...obj,
229
+ });
230
+ export const AlarmActionFilterSensitiveLog = (obj) => ({
231
+ ...obj,
232
+ });
233
+ export const InitializationConfigurationFilterSensitiveLog = (obj) => ({
234
+ ...obj,
235
+ });
236
+ export const AlarmCapabilitiesFilterSensitiveLog = (obj) => ({
237
+ ...obj,
238
+ });
239
+ export const AlarmEventActionsFilterSensitiveLog = (obj) => ({
240
+ ...obj,
241
+ });
242
+ export const AlarmModelSummaryFilterSensitiveLog = (obj) => ({
243
+ ...obj,
244
+ });
245
+ export const AlarmModelVersionSummaryFilterSensitiveLog = (obj) => ({
246
+ ...obj,
247
+ });
248
+ export const NotificationTargetActionsFilterSensitiveLog = (obj) => ({
249
+ ...obj,
250
+ });
251
+ export const EmailContentFilterSensitiveLog = (obj) => ({
252
+ ...obj,
253
+ });
254
+ export const SSOIdentityFilterSensitiveLog = (obj) => ({
255
+ ...obj,
256
+ });
257
+ export const RecipientDetailFilterSensitiveLog = (obj) => ({
258
+ ...obj,
259
+ });
260
+ export const EmailRecipientsFilterSensitiveLog = (obj) => ({
261
+ ...obj,
262
+ });
263
+ export const EmailConfigurationFilterSensitiveLog = (obj) => ({
264
+ ...obj,
265
+ });
266
+ export const SMSConfigurationFilterSensitiveLog = (obj) => ({
267
+ ...obj,
268
+ });
269
+ export const NotificationActionFilterSensitiveLog = (obj) => ({
270
+ ...obj,
271
+ });
272
+ export const AlarmNotificationFilterSensitiveLog = (obj) => ({
273
+ ...obj,
274
+ });
275
+ export const SimpleRuleFilterSensitiveLog = (obj) => ({
276
+ ...obj,
277
+ });
278
+ export const AlarmRuleFilterSensitiveLog = (obj) => ({
279
+ ...obj,
280
+ });
281
+ export const AnalysisResultLocationFilterSensitiveLog = (obj) => ({
282
+ ...obj,
283
+ });
284
+ export const AnalysisResultFilterSensitiveLog = (obj) => ({
285
+ ...obj,
286
+ });
287
+ export const AttributeFilterSensitiveLog = (obj) => ({
288
+ ...obj,
289
+ });
290
+ export const TagFilterSensitiveLog = (obj) => ({
291
+ ...obj,
292
+ });
293
+ export const CreateAlarmModelRequestFilterSensitiveLog = (obj) => ({
294
+ ...obj,
295
+ });
296
+ export const CreateAlarmModelResponseFilterSensitiveLog = (obj) => ({
297
+ ...obj,
298
+ });
299
+ export const EventFilterSensitiveLog = (obj) => ({
300
+ ...obj,
301
+ });
302
+ export const OnEnterLifecycleFilterSensitiveLog = (obj) => ({
303
+ ...obj,
304
+ });
305
+ export const OnExitLifecycleFilterSensitiveLog = (obj) => ({
306
+ ...obj,
307
+ });
308
+ export const TransitionEventFilterSensitiveLog = (obj) => ({
309
+ ...obj,
310
+ });
311
+ export const OnInputLifecycleFilterSensitiveLog = (obj) => ({
312
+ ...obj,
313
+ });
314
+ export const StateFilterSensitiveLog = (obj) => ({
315
+ ...obj,
316
+ });
317
+ export const DetectorModelDefinitionFilterSensitiveLog = (obj) => ({
318
+ ...obj,
319
+ });
320
+ export const CreateDetectorModelRequestFilterSensitiveLog = (obj) => ({
321
+ ...obj,
322
+ });
323
+ export const DetectorModelConfigurationFilterSensitiveLog = (obj) => ({
324
+ ...obj,
325
+ });
326
+ export const CreateDetectorModelResponseFilterSensitiveLog = (obj) => ({
327
+ ...obj,
328
+ });
329
+ export const InputDefinitionFilterSensitiveLog = (obj) => ({
330
+ ...obj,
331
+ });
332
+ export const CreateInputRequestFilterSensitiveLog = (obj) => ({
333
+ ...obj,
334
+ });
335
+ export const InputConfigurationFilterSensitiveLog = (obj) => ({
336
+ ...obj,
337
+ });
338
+ export const CreateInputResponseFilterSensitiveLog = (obj) => ({
339
+ ...obj,
340
+ });
341
+ export const DeleteAlarmModelRequestFilterSensitiveLog = (obj) => ({
342
+ ...obj,
343
+ });
344
+ export const DeleteAlarmModelResponseFilterSensitiveLog = (obj) => ({
345
+ ...obj,
346
+ });
347
+ export const DeleteDetectorModelRequestFilterSensitiveLog = (obj) => ({
348
+ ...obj,
349
+ });
350
+ export const DeleteDetectorModelResponseFilterSensitiveLog = (obj) => ({
351
+ ...obj,
352
+ });
353
+ export const DeleteInputRequestFilterSensitiveLog = (obj) => ({
354
+ ...obj,
355
+ });
356
+ export const DeleteInputResponseFilterSensitiveLog = (obj) => ({
357
+ ...obj,
358
+ });
359
+ export const DescribeAlarmModelRequestFilterSensitiveLog = (obj) => ({
360
+ ...obj,
361
+ });
362
+ export const DescribeAlarmModelResponseFilterSensitiveLog = (obj) => ({
363
+ ...obj,
364
+ });
365
+ export const DescribeDetectorModelRequestFilterSensitiveLog = (obj) => ({
366
+ ...obj,
367
+ });
368
+ export const DetectorModelFilterSensitiveLog = (obj) => ({
369
+ ...obj,
370
+ });
371
+ export const DescribeDetectorModelResponseFilterSensitiveLog = (obj) => ({
372
+ ...obj,
373
+ });
374
+ export const DescribeDetectorModelAnalysisRequestFilterSensitiveLog = (obj) => ({
375
+ ...obj,
376
+ });
377
+ export const DescribeDetectorModelAnalysisResponseFilterSensitiveLog = (obj) => ({
378
+ ...obj,
379
+ });
380
+ export const DescribeInputRequestFilterSensitiveLog = (obj) => ({
381
+ ...obj,
382
+ });
383
+ export const InputFilterSensitiveLog = (obj) => ({
384
+ ...obj,
385
+ });
386
+ export const DescribeInputResponseFilterSensitiveLog = (obj) => ({
387
+ ...obj,
388
+ });
389
+ export const DescribeLoggingOptionsRequestFilterSensitiveLog = (obj) => ({
390
+ ...obj,
391
+ });
392
+ export const DetectorDebugOptionFilterSensitiveLog = (obj) => ({
393
+ ...obj,
394
+ });
395
+ export const LoggingOptionsFilterSensitiveLog = (obj) => ({
396
+ ...obj,
397
+ });
398
+ export const DescribeLoggingOptionsResponseFilterSensitiveLog = (obj) => ({
399
+ ...obj,
400
+ });
401
+ export const DetectorModelSummaryFilterSensitiveLog = (obj) => ({
402
+ ...obj,
403
+ });
404
+ export const DetectorModelVersionSummaryFilterSensitiveLog = (obj) => ({
405
+ ...obj,
406
+ });
407
+ export const GetDetectorModelAnalysisResultsRequestFilterSensitiveLog = (obj) => ({
408
+ ...obj,
409
+ });
410
+ export const GetDetectorModelAnalysisResultsResponseFilterSensitiveLog = (obj) => ({
411
+ ...obj,
412
+ });
413
+ export const IotEventsInputIdentifierFilterSensitiveLog = (obj) => ({
414
+ ...obj,
415
+ });
416
+ export const IotSiteWiseAssetModelPropertyIdentifierFilterSensitiveLog = (obj) => ({
417
+ ...obj,
418
+ });
419
+ export const IotSiteWiseInputIdentifierFilterSensitiveLog = (obj) => ({
420
+ ...obj,
421
+ });
422
+ export const InputIdentifierFilterSensitiveLog = (obj) => ({
423
+ ...obj,
424
+ });
425
+ export const InputSummaryFilterSensitiveLog = (obj) => ({
426
+ ...obj,
427
+ });
428
+ export const ListAlarmModelsRequestFilterSensitiveLog = (obj) => ({
429
+ ...obj,
430
+ });
431
+ export const ListAlarmModelsResponseFilterSensitiveLog = (obj) => ({
432
+ ...obj,
433
+ });
434
+ export const ListAlarmModelVersionsRequestFilterSensitiveLog = (obj) => ({
435
+ ...obj,
436
+ });
437
+ export const ListAlarmModelVersionsResponseFilterSensitiveLog = (obj) => ({
438
+ ...obj,
439
+ });
440
+ export const ListDetectorModelsRequestFilterSensitiveLog = (obj) => ({
441
+ ...obj,
442
+ });
443
+ export const ListDetectorModelsResponseFilterSensitiveLog = (obj) => ({
444
+ ...obj,
445
+ });
446
+ export const ListDetectorModelVersionsRequestFilterSensitiveLog = (obj) => ({
447
+ ...obj,
448
+ });
449
+ export const ListDetectorModelVersionsResponseFilterSensitiveLog = (obj) => ({
450
+ ...obj,
451
+ });
452
+ export const ListInputRoutingsRequestFilterSensitiveLog = (obj) => ({
453
+ ...obj,
454
+ });
455
+ export const RoutedResourceFilterSensitiveLog = (obj) => ({
456
+ ...obj,
457
+ });
458
+ export const ListInputRoutingsResponseFilterSensitiveLog = (obj) => ({
459
+ ...obj,
460
+ });
461
+ export const ListInputsRequestFilterSensitiveLog = (obj) => ({
462
+ ...obj,
463
+ });
464
+ export const ListInputsResponseFilterSensitiveLog = (obj) => ({
465
+ ...obj,
466
+ });
467
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
468
+ ...obj,
469
+ });
470
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
471
+ ...obj,
472
+ });
473
+ export const PutLoggingOptionsRequestFilterSensitiveLog = (obj) => ({
474
+ ...obj,
475
+ });
476
+ export const StartDetectorModelAnalysisRequestFilterSensitiveLog = (obj) => ({
477
+ ...obj,
478
+ });
479
+ export const StartDetectorModelAnalysisResponseFilterSensitiveLog = (obj) => ({
480
+ ...obj,
481
+ });
482
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
483
+ ...obj,
484
+ });
485
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
486
+ ...obj,
487
+ });
488
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
489
+ ...obj,
490
+ });
491
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
492
+ ...obj,
493
+ });
494
+ export const UpdateAlarmModelRequestFilterSensitiveLog = (obj) => ({
495
+ ...obj,
496
+ });
497
+ export const UpdateAlarmModelResponseFilterSensitiveLog = (obj) => ({
498
+ ...obj,
499
+ });
500
+ export const UpdateDetectorModelRequestFilterSensitiveLog = (obj) => ({
501
+ ...obj,
502
+ });
503
+ export const UpdateDetectorModelResponseFilterSensitiveLog = (obj) => ({
504
+ ...obj,
505
+ });
506
+ export const UpdateInputRequestFilterSensitiveLog = (obj) => ({
507
+ ...obj,
508
+ });
509
+ export const UpdateInputResponseFilterSensitiveLog = (obj) => ({
510
+ ...obj,
511
+ });