@aws-sdk/client-cloudwatch 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 (61) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/CloudWatch.js +154 -161
  3. package/dist-es/CloudWatchClient.js +22 -28
  4. package/dist-es/commands/DeleteAlarmsCommand.js +22 -29
  5. package/dist-es/commands/DeleteAnomalyDetectorCommand.js +21 -28
  6. package/dist-es/commands/DeleteDashboardsCommand.js +21 -28
  7. package/dist-es/commands/DeleteInsightRulesCommand.js +21 -28
  8. package/dist-es/commands/DeleteMetricStreamCommand.js +21 -28
  9. package/dist-es/commands/DescribeAlarmHistoryCommand.js +21 -28
  10. package/dist-es/commands/DescribeAlarmsCommand.js +21 -28
  11. package/dist-es/commands/DescribeAlarmsForMetricCommand.js +21 -28
  12. package/dist-es/commands/DescribeAnomalyDetectorsCommand.js +21 -28
  13. package/dist-es/commands/DescribeInsightRulesCommand.js +21 -28
  14. package/dist-es/commands/DisableAlarmActionsCommand.js +22 -29
  15. package/dist-es/commands/DisableInsightRulesCommand.js +21 -28
  16. package/dist-es/commands/EnableAlarmActionsCommand.js +22 -29
  17. package/dist-es/commands/EnableInsightRulesCommand.js +21 -28
  18. package/dist-es/commands/GetDashboardCommand.js +21 -28
  19. package/dist-es/commands/GetInsightRuleReportCommand.js +21 -28
  20. package/dist-es/commands/GetMetricDataCommand.js +21 -28
  21. package/dist-es/commands/GetMetricStatisticsCommand.js +21 -28
  22. package/dist-es/commands/GetMetricStreamCommand.js +21 -28
  23. package/dist-es/commands/GetMetricWidgetImageCommand.js +21 -28
  24. package/dist-es/commands/ListDashboardsCommand.js +21 -28
  25. package/dist-es/commands/ListManagedInsightRulesCommand.js +21 -28
  26. package/dist-es/commands/ListMetricStreamsCommand.js +21 -28
  27. package/dist-es/commands/ListMetricsCommand.js +21 -28
  28. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  29. package/dist-es/commands/PutAnomalyDetectorCommand.js +21 -28
  30. package/dist-es/commands/PutCompositeAlarmCommand.js +22 -29
  31. package/dist-es/commands/PutDashboardCommand.js +21 -28
  32. package/dist-es/commands/PutInsightRuleCommand.js +21 -28
  33. package/dist-es/commands/PutManagedInsightRulesCommand.js +21 -28
  34. package/dist-es/commands/PutMetricAlarmCommand.js +22 -29
  35. package/dist-es/commands/PutMetricDataCommand.js +22 -29
  36. package/dist-es/commands/PutMetricStreamCommand.js +21 -28
  37. package/dist-es/commands/SetAlarmStateCommand.js +22 -29
  38. package/dist-es/commands/StartMetricStreamsCommand.js +21 -28
  39. package/dist-es/commands/StopMetricStreamsCommand.js +21 -28
  40. package/dist-es/commands/TagResourceCommand.js +21 -28
  41. package/dist-es/commands/UntagResourceCommand.js +21 -28
  42. package/dist-es/endpoints.js +8 -8
  43. package/dist-es/models/CloudWatchServiceException.js +5 -10
  44. package/dist-es/models/models_0.js +459 -254
  45. package/dist-es/pagination/DescribeAlarmHistoryPaginator.js +25 -68
  46. package/dist-es/pagination/DescribeAlarmsPaginator.js +25 -68
  47. package/dist-es/pagination/DescribeAnomalyDetectorsPaginator.js +25 -68
  48. package/dist-es/pagination/DescribeInsightRulesPaginator.js +25 -68
  49. package/dist-es/pagination/GetMetricDataPaginator.js +25 -68
  50. package/dist-es/pagination/ListDashboardsPaginator.js +24 -67
  51. package/dist-es/pagination/ListManagedInsightRulesPaginator.js +25 -68
  52. package/dist-es/pagination/ListMetricStreamsPaginator.js +25 -68
  53. package/dist-es/pagination/ListMetricsPaginator.js +24 -67
  54. package/dist-es/protocols/Aws_query.js +2741 -3777
  55. package/dist-es/runtimeConfig.browser.js +26 -12
  56. package/dist-es/runtimeConfig.js +30 -12
  57. package/dist-es/runtimeConfig.native.js +8 -5
  58. package/dist-es/runtimeConfig.shared.js +8 -11
  59. package/dist-es/waiters/waitForAlarmExists.js +29 -49
  60. package/dist-es/waiters/waitForCompositeAlarmExists.js +29 -49
  61. package/package.json +34 -34
@@ -1,4 +1,3 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { CloudWatchServiceException as __BaseException } from "./CloudWatchServiceException";
3
2
  export var ActionsSuppressedBy;
4
3
  (function (ActionsSuppressedBy) {
@@ -11,150 +10,150 @@ export var AnomalyDetectorType;
11
10
  AnomalyDetectorType["METRIC_MATH"] = "METRIC_MATH";
12
11
  AnomalyDetectorType["SINGLE_METRIC"] = "SINGLE_METRIC";
13
12
  })(AnomalyDetectorType || (AnomalyDetectorType = {}));
14
- var ConcurrentModificationException = (function (_super) {
15
- __extends(ConcurrentModificationException, _super);
16
- function ConcurrentModificationException(opts) {
17
- var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
18
- _this.name = "ConcurrentModificationException";
19
- _this.$fault = "client";
20
- Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
21
- _this.Message = opts.Message;
22
- return _this;
13
+ export class ConcurrentModificationException extends __BaseException {
14
+ constructor(opts) {
15
+ super({
16
+ name: "ConcurrentModificationException",
17
+ $fault: "client",
18
+ ...opts,
19
+ });
20
+ this.name = "ConcurrentModificationException";
21
+ this.$fault = "client";
22
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
23
+ this.Message = opts.Message;
23
24
  }
24
- return ConcurrentModificationException;
25
- }(__BaseException));
26
- export { ConcurrentModificationException };
27
- var DashboardInvalidInputError = (function (_super) {
28
- __extends(DashboardInvalidInputError, _super);
29
- function DashboardInvalidInputError(opts) {
30
- var _this = _super.call(this, __assign({ name: "DashboardInvalidInputError", $fault: "client" }, opts)) || this;
31
- _this.name = "DashboardInvalidInputError";
32
- _this.$fault = "client";
33
- Object.setPrototypeOf(_this, DashboardInvalidInputError.prototype);
34
- _this.dashboardValidationMessages = opts.dashboardValidationMessages;
35
- return _this;
25
+ }
26
+ export class DashboardInvalidInputError extends __BaseException {
27
+ constructor(opts) {
28
+ super({
29
+ name: "DashboardInvalidInputError",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ this.name = "DashboardInvalidInputError";
34
+ this.$fault = "client";
35
+ Object.setPrototypeOf(this, DashboardInvalidInputError.prototype);
36
+ this.dashboardValidationMessages = opts.dashboardValidationMessages;
36
37
  }
37
- return DashboardInvalidInputError;
38
- }(__BaseException));
39
- export { DashboardInvalidInputError };
40
- var DashboardNotFoundError = (function (_super) {
41
- __extends(DashboardNotFoundError, _super);
42
- function DashboardNotFoundError(opts) {
43
- var _this = _super.call(this, __assign({ name: "DashboardNotFoundError", $fault: "client" }, opts)) || this;
44
- _this.name = "DashboardNotFoundError";
45
- _this.$fault = "client";
46
- Object.setPrototypeOf(_this, DashboardNotFoundError.prototype);
47
- return _this;
38
+ }
39
+ export class DashboardNotFoundError extends __BaseException {
40
+ constructor(opts) {
41
+ super({
42
+ name: "DashboardNotFoundError",
43
+ $fault: "client",
44
+ ...opts,
45
+ });
46
+ this.name = "DashboardNotFoundError";
47
+ this.$fault = "client";
48
+ Object.setPrototypeOf(this, DashboardNotFoundError.prototype);
48
49
  }
49
- return DashboardNotFoundError;
50
- }(__BaseException));
51
- export { DashboardNotFoundError };
52
- var ResourceNotFound = (function (_super) {
53
- __extends(ResourceNotFound, _super);
54
- function ResourceNotFound(opts) {
55
- var _this = _super.call(this, __assign({ name: "ResourceNotFound", $fault: "client" }, opts)) || this;
56
- _this.name = "ResourceNotFound";
57
- _this.$fault = "client";
58
- Object.setPrototypeOf(_this, ResourceNotFound.prototype);
59
- return _this;
50
+ }
51
+ export class ResourceNotFound extends __BaseException {
52
+ constructor(opts) {
53
+ super({
54
+ name: "ResourceNotFound",
55
+ $fault: "client",
56
+ ...opts,
57
+ });
58
+ this.name = "ResourceNotFound";
59
+ this.$fault = "client";
60
+ Object.setPrototypeOf(this, ResourceNotFound.prototype);
60
61
  }
61
- return ResourceNotFound;
62
- }(__BaseException));
63
- export { ResourceNotFound };
64
- var InternalServiceFault = (function (_super) {
65
- __extends(InternalServiceFault, _super);
66
- function InternalServiceFault(opts) {
67
- var _this = _super.call(this, __assign({ name: "InternalServiceFault", $fault: "server" }, opts)) || this;
68
- _this.name = "InternalServiceFault";
69
- _this.$fault = "server";
70
- Object.setPrototypeOf(_this, InternalServiceFault.prototype);
71
- _this.Message = opts.Message;
72
- return _this;
62
+ }
63
+ export class InternalServiceFault extends __BaseException {
64
+ constructor(opts) {
65
+ super({
66
+ name: "InternalServiceFault",
67
+ $fault: "server",
68
+ ...opts,
69
+ });
70
+ this.name = "InternalServiceFault";
71
+ this.$fault = "server";
72
+ Object.setPrototypeOf(this, InternalServiceFault.prototype);
73
+ this.Message = opts.Message;
73
74
  }
74
- return InternalServiceFault;
75
- }(__BaseException));
76
- export { InternalServiceFault };
77
- var InvalidParameterCombinationException = (function (_super) {
78
- __extends(InvalidParameterCombinationException, _super);
79
- function InvalidParameterCombinationException(opts) {
80
- var _this = _super.call(this, __assign({ name: "InvalidParameterCombinationException", $fault: "client" }, opts)) || this;
81
- _this.name = "InvalidParameterCombinationException";
82
- _this.$fault = "client";
83
- Object.setPrototypeOf(_this, InvalidParameterCombinationException.prototype);
84
- return _this;
75
+ }
76
+ export class InvalidParameterCombinationException extends __BaseException {
77
+ constructor(opts) {
78
+ super({
79
+ name: "InvalidParameterCombinationException",
80
+ $fault: "client",
81
+ ...opts,
82
+ });
83
+ this.name = "InvalidParameterCombinationException";
84
+ this.$fault = "client";
85
+ Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
85
86
  }
86
- return InvalidParameterCombinationException;
87
- }(__BaseException));
88
- export { InvalidParameterCombinationException };
89
- var InvalidParameterValueException = (function (_super) {
90
- __extends(InvalidParameterValueException, _super);
91
- function InvalidParameterValueException(opts) {
92
- var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
93
- _this.name = "InvalidParameterValueException";
94
- _this.$fault = "client";
95
- Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
96
- return _this;
87
+ }
88
+ export class InvalidParameterValueException extends __BaseException {
89
+ constructor(opts) {
90
+ super({
91
+ name: "InvalidParameterValueException",
92
+ $fault: "client",
93
+ ...opts,
94
+ });
95
+ this.name = "InvalidParameterValueException";
96
+ this.$fault = "client";
97
+ Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
97
98
  }
98
- return InvalidParameterValueException;
99
- }(__BaseException));
100
- export { InvalidParameterValueException };
101
- var MissingRequiredParameterException = (function (_super) {
102
- __extends(MissingRequiredParameterException, _super);
103
- function MissingRequiredParameterException(opts) {
104
- var _this = _super.call(this, __assign({ name: "MissingRequiredParameterException", $fault: "client" }, opts)) || this;
105
- _this.name = "MissingRequiredParameterException";
106
- _this.$fault = "client";
107
- Object.setPrototypeOf(_this, MissingRequiredParameterException.prototype);
108
- return _this;
99
+ }
100
+ export class MissingRequiredParameterException extends __BaseException {
101
+ constructor(opts) {
102
+ super({
103
+ name: "MissingRequiredParameterException",
104
+ $fault: "client",
105
+ ...opts,
106
+ });
107
+ this.name = "MissingRequiredParameterException";
108
+ this.$fault = "client";
109
+ Object.setPrototypeOf(this, MissingRequiredParameterException.prototype);
109
110
  }
110
- return MissingRequiredParameterException;
111
- }(__BaseException));
112
- export { MissingRequiredParameterException };
113
- var ResourceNotFoundException = (function (_super) {
114
- __extends(ResourceNotFoundException, _super);
115
- function ResourceNotFoundException(opts) {
116
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
117
- _this.name = "ResourceNotFoundException";
118
- _this.$fault = "client";
119
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
120
- _this.ResourceType = opts.ResourceType;
121
- _this.ResourceId = opts.ResourceId;
122
- _this.Message = opts.Message;
123
- return _this;
111
+ }
112
+ export class ResourceNotFoundException extends __BaseException {
113
+ constructor(opts) {
114
+ super({
115
+ name: "ResourceNotFoundException",
116
+ $fault: "client",
117
+ ...opts,
118
+ });
119
+ this.name = "ResourceNotFoundException";
120
+ this.$fault = "client";
121
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
122
+ this.ResourceType = opts.ResourceType;
123
+ this.ResourceId = opts.ResourceId;
124
+ this.Message = opts.Message;
124
125
  }
125
- return ResourceNotFoundException;
126
- }(__BaseException));
127
- export { ResourceNotFoundException };
126
+ }
128
127
  export var ScanBy;
129
128
  (function (ScanBy) {
130
129
  ScanBy["TIMESTAMP_ASCENDING"] = "TimestampAscending";
131
130
  ScanBy["TIMESTAMP_DESCENDING"] = "TimestampDescending";
132
131
  })(ScanBy || (ScanBy = {}));
133
- var InvalidNextToken = (function (_super) {
134
- __extends(InvalidNextToken, _super);
135
- function InvalidNextToken(opts) {
136
- var _this = _super.call(this, __assign({ name: "InvalidNextToken", $fault: "client" }, opts)) || this;
137
- _this.name = "InvalidNextToken";
138
- _this.$fault = "client";
139
- Object.setPrototypeOf(_this, InvalidNextToken.prototype);
140
- return _this;
132
+ export class InvalidNextToken extends __BaseException {
133
+ constructor(opts) {
134
+ super({
135
+ name: "InvalidNextToken",
136
+ $fault: "client",
137
+ ...opts,
138
+ });
139
+ this.name = "InvalidNextToken";
140
+ this.$fault = "client";
141
+ Object.setPrototypeOf(this, InvalidNextToken.prototype);
141
142
  }
142
- return InvalidNextToken;
143
- }(__BaseException));
144
- export { InvalidNextToken };
145
- var LimitExceededException = (function (_super) {
146
- __extends(LimitExceededException, _super);
147
- function LimitExceededException(opts) {
148
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
149
- _this.name = "LimitExceededException";
150
- _this.$fault = "client";
151
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
152
- _this.Message = opts.Message;
153
- return _this;
143
+ }
144
+ export class LimitExceededException extends __BaseException {
145
+ constructor(opts) {
146
+ super({
147
+ name: "LimitExceededException",
148
+ $fault: "client",
149
+ ...opts,
150
+ });
151
+ this.name = "LimitExceededException";
152
+ this.$fault = "client";
153
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
154
+ this.Message = opts.Message;
154
155
  }
155
- return LimitExceededException;
156
- }(__BaseException));
157
- export { LimitExceededException };
156
+ }
158
157
  export var StatusCode;
159
158
  (function (StatusCode) {
160
159
  StatusCode["COMPLETE"] = "Complete";
@@ -170,130 +169,336 @@ export var RecentlyActive;
170
169
  (function (RecentlyActive) {
171
170
  RecentlyActive["PT3H"] = "PT3H";
172
171
  })(RecentlyActive || (RecentlyActive = {}));
173
- var LimitExceededFault = (function (_super) {
174
- __extends(LimitExceededFault, _super);
175
- function LimitExceededFault(opts) {
176
- var _this = _super.call(this, __assign({ name: "LimitExceededFault", $fault: "client" }, opts)) || this;
177
- _this.name = "LimitExceededFault";
178
- _this.$fault = "client";
179
- Object.setPrototypeOf(_this, LimitExceededFault.prototype);
180
- return _this;
172
+ export class LimitExceededFault extends __BaseException {
173
+ constructor(opts) {
174
+ super({
175
+ name: "LimitExceededFault",
176
+ $fault: "client",
177
+ ...opts,
178
+ });
179
+ this.name = "LimitExceededFault";
180
+ this.$fault = "client";
181
+ Object.setPrototypeOf(this, LimitExceededFault.prototype);
181
182
  }
182
- return LimitExceededFault;
183
- }(__BaseException));
184
- export { LimitExceededFault };
185
- var InvalidFormatFault = (function (_super) {
186
- __extends(InvalidFormatFault, _super);
187
- function InvalidFormatFault(opts) {
188
- var _this = _super.call(this, __assign({ name: "InvalidFormatFault", $fault: "client" }, opts)) || this;
189
- _this.name = "InvalidFormatFault";
190
- _this.$fault = "client";
191
- Object.setPrototypeOf(_this, InvalidFormatFault.prototype);
192
- return _this;
183
+ }
184
+ export class InvalidFormatFault extends __BaseException {
185
+ constructor(opts) {
186
+ super({
187
+ name: "InvalidFormatFault",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ this.name = "InvalidFormatFault";
192
+ this.$fault = "client";
193
+ Object.setPrototypeOf(this, InvalidFormatFault.prototype);
193
194
  }
194
- return InvalidFormatFault;
195
- }(__BaseException));
196
- export { InvalidFormatFault };
197
- export var AlarmHistoryItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
- export var RangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
- export var AnomalyDetectorConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
200
- export var DimensionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
201
- export var MetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
202
- export var MetricStatFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
- export var MetricDataQueryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
- export var MetricMathAnomalyDetectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
- export var SingleMetricAnomalyDetectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
206
- export var AnomalyDetectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
- export var PartialFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
- export var CompositeAlarmFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
- export var DashboardEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
210
- export var DashboardValidationMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
- export var DatapointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
- export var DeleteAlarmsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
213
- export var DeleteAnomalyDetectorInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
214
- export var DeleteAnomalyDetectorOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
- export var DeleteDashboardsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
- export var DeleteDashboardsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
- export var DeleteInsightRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
218
- export var DeleteInsightRulesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
- export var DeleteMetricStreamInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
220
- export var DeleteMetricStreamOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
221
- export var DescribeAlarmHistoryInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
222
- export var DescribeAlarmHistoryOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
- export var DescribeAlarmsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
- export var MetricAlarmFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
225
- export var DescribeAlarmsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
- export var DescribeAlarmsForMetricInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
- export var DescribeAlarmsForMetricOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
- export var DescribeAnomalyDetectorsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
- export var DescribeAnomalyDetectorsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
- export var DescribeInsightRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
231
- export var InsightRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
232
- export var DescribeInsightRulesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
233
- export var DimensionFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
234
- export var DisableAlarmActionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
235
- export var DisableInsightRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
236
- export var DisableInsightRulesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
- export var EnableAlarmActionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
238
- export var EnableInsightRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
239
- export var EnableInsightRulesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
240
- export var GetDashboardInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
241
- export var GetDashboardOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
242
- export var GetInsightRuleReportInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
243
- export var InsightRuleContributorDatapointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
- export var InsightRuleContributorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
245
- export var InsightRuleMetricDatapointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
- export var GetInsightRuleReportOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
- export var LabelOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
- export var GetMetricDataInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
249
- export var MessageDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
250
- export var MetricDataResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
- export var GetMetricDataOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
252
- export var GetMetricStatisticsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
253
- export var GetMetricStatisticsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
- export var GetMetricStreamInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
- export var MetricStreamFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
256
- export var MetricStreamStatisticsMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
257
- export var MetricStreamStatisticsConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
- export var GetMetricStreamOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
259
- export var GetMetricWidgetImageInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
- export var GetMetricWidgetImageOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
- export var ListDashboardsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
- export var ListDashboardsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
- export var ListManagedInsightRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
- export var ManagedRuleStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
- export var ManagedRuleDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
- export var ListManagedInsightRulesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
- export var ListMetricsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
- export var ListMetricsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
- export var ListMetricStreamsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
- export var MetricStreamEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
- export var ListMetricStreamsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
- export var ListTagsForResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
- export var ListTagsForResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
- export var PutAnomalyDetectorInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
- export var PutAnomalyDetectorOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
- export var PutCompositeAlarmInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var PutDashboardInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
- export var PutDashboardOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
- export var PutInsightRuleInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
- export var PutInsightRuleOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
- export var ManagedRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var PutManagedInsightRulesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
- export var PutManagedInsightRulesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var PutMetricAlarmInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var StatisticSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
- export var MetricDatumFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var PutMetricDataInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
- export var PutMetricStreamInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var PutMetricStreamOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var SetAlarmStateInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var StartMetricStreamsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var StartMetricStreamsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
- export var StopMetricStreamsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var StopMetricStreamsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var TagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var TagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var UntagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var UntagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
+ }
196
+ export const AlarmHistoryItemFilterSensitiveLog = (obj) => ({
197
+ ...obj,
198
+ });
199
+ export const RangeFilterSensitiveLog = (obj) => ({
200
+ ...obj,
201
+ });
202
+ export const AnomalyDetectorConfigurationFilterSensitiveLog = (obj) => ({
203
+ ...obj,
204
+ });
205
+ export const DimensionFilterSensitiveLog = (obj) => ({
206
+ ...obj,
207
+ });
208
+ export const MetricFilterSensitiveLog = (obj) => ({
209
+ ...obj,
210
+ });
211
+ export const MetricStatFilterSensitiveLog = (obj) => ({
212
+ ...obj,
213
+ });
214
+ export const MetricDataQueryFilterSensitiveLog = (obj) => ({
215
+ ...obj,
216
+ });
217
+ export const MetricMathAnomalyDetectorFilterSensitiveLog = (obj) => ({
218
+ ...obj,
219
+ });
220
+ export const SingleMetricAnomalyDetectorFilterSensitiveLog = (obj) => ({
221
+ ...obj,
222
+ });
223
+ export const AnomalyDetectorFilterSensitiveLog = (obj) => ({
224
+ ...obj,
225
+ });
226
+ export const PartialFailureFilterSensitiveLog = (obj) => ({
227
+ ...obj,
228
+ });
229
+ export const CompositeAlarmFilterSensitiveLog = (obj) => ({
230
+ ...obj,
231
+ });
232
+ export const DashboardEntryFilterSensitiveLog = (obj) => ({
233
+ ...obj,
234
+ });
235
+ export const DashboardValidationMessageFilterSensitiveLog = (obj) => ({
236
+ ...obj,
237
+ });
238
+ export const DatapointFilterSensitiveLog = (obj) => ({
239
+ ...obj,
240
+ });
241
+ export const DeleteAlarmsInputFilterSensitiveLog = (obj) => ({
242
+ ...obj,
243
+ });
244
+ export const DeleteAnomalyDetectorInputFilterSensitiveLog = (obj) => ({
245
+ ...obj,
246
+ });
247
+ export const DeleteAnomalyDetectorOutputFilterSensitiveLog = (obj) => ({
248
+ ...obj,
249
+ });
250
+ export const DeleteDashboardsInputFilterSensitiveLog = (obj) => ({
251
+ ...obj,
252
+ });
253
+ export const DeleteDashboardsOutputFilterSensitiveLog = (obj) => ({
254
+ ...obj,
255
+ });
256
+ export const DeleteInsightRulesInputFilterSensitiveLog = (obj) => ({
257
+ ...obj,
258
+ });
259
+ export const DeleteInsightRulesOutputFilterSensitiveLog = (obj) => ({
260
+ ...obj,
261
+ });
262
+ export const DeleteMetricStreamInputFilterSensitiveLog = (obj) => ({
263
+ ...obj,
264
+ });
265
+ export const DeleteMetricStreamOutputFilterSensitiveLog = (obj) => ({
266
+ ...obj,
267
+ });
268
+ export const DescribeAlarmHistoryInputFilterSensitiveLog = (obj) => ({
269
+ ...obj,
270
+ });
271
+ export const DescribeAlarmHistoryOutputFilterSensitiveLog = (obj) => ({
272
+ ...obj,
273
+ });
274
+ export const DescribeAlarmsInputFilterSensitiveLog = (obj) => ({
275
+ ...obj,
276
+ });
277
+ export const MetricAlarmFilterSensitiveLog = (obj) => ({
278
+ ...obj,
279
+ });
280
+ export const DescribeAlarmsOutputFilterSensitiveLog = (obj) => ({
281
+ ...obj,
282
+ });
283
+ export const DescribeAlarmsForMetricInputFilterSensitiveLog = (obj) => ({
284
+ ...obj,
285
+ });
286
+ export const DescribeAlarmsForMetricOutputFilterSensitiveLog = (obj) => ({
287
+ ...obj,
288
+ });
289
+ export const DescribeAnomalyDetectorsInputFilterSensitiveLog = (obj) => ({
290
+ ...obj,
291
+ });
292
+ export const DescribeAnomalyDetectorsOutputFilterSensitiveLog = (obj) => ({
293
+ ...obj,
294
+ });
295
+ export const DescribeInsightRulesInputFilterSensitiveLog = (obj) => ({
296
+ ...obj,
297
+ });
298
+ export const InsightRuleFilterSensitiveLog = (obj) => ({
299
+ ...obj,
300
+ });
301
+ export const DescribeInsightRulesOutputFilterSensitiveLog = (obj) => ({
302
+ ...obj,
303
+ });
304
+ export const DimensionFilterFilterSensitiveLog = (obj) => ({
305
+ ...obj,
306
+ });
307
+ export const DisableAlarmActionsInputFilterSensitiveLog = (obj) => ({
308
+ ...obj,
309
+ });
310
+ export const DisableInsightRulesInputFilterSensitiveLog = (obj) => ({
311
+ ...obj,
312
+ });
313
+ export const DisableInsightRulesOutputFilterSensitiveLog = (obj) => ({
314
+ ...obj,
315
+ });
316
+ export const EnableAlarmActionsInputFilterSensitiveLog = (obj) => ({
317
+ ...obj,
318
+ });
319
+ export const EnableInsightRulesInputFilterSensitiveLog = (obj) => ({
320
+ ...obj,
321
+ });
322
+ export const EnableInsightRulesOutputFilterSensitiveLog = (obj) => ({
323
+ ...obj,
324
+ });
325
+ export const GetDashboardInputFilterSensitiveLog = (obj) => ({
326
+ ...obj,
327
+ });
328
+ export const GetDashboardOutputFilterSensitiveLog = (obj) => ({
329
+ ...obj,
330
+ });
331
+ export const GetInsightRuleReportInputFilterSensitiveLog = (obj) => ({
332
+ ...obj,
333
+ });
334
+ export const InsightRuleContributorDatapointFilterSensitiveLog = (obj) => ({
335
+ ...obj,
336
+ });
337
+ export const InsightRuleContributorFilterSensitiveLog = (obj) => ({
338
+ ...obj,
339
+ });
340
+ export const InsightRuleMetricDatapointFilterSensitiveLog = (obj) => ({
341
+ ...obj,
342
+ });
343
+ export const GetInsightRuleReportOutputFilterSensitiveLog = (obj) => ({
344
+ ...obj,
345
+ });
346
+ export const LabelOptionsFilterSensitiveLog = (obj) => ({
347
+ ...obj,
348
+ });
349
+ export const GetMetricDataInputFilterSensitiveLog = (obj) => ({
350
+ ...obj,
351
+ });
352
+ export const MessageDataFilterSensitiveLog = (obj) => ({
353
+ ...obj,
354
+ });
355
+ export const MetricDataResultFilterSensitiveLog = (obj) => ({
356
+ ...obj,
357
+ });
358
+ export const GetMetricDataOutputFilterSensitiveLog = (obj) => ({
359
+ ...obj,
360
+ });
361
+ export const GetMetricStatisticsInputFilterSensitiveLog = (obj) => ({
362
+ ...obj,
363
+ });
364
+ export const GetMetricStatisticsOutputFilterSensitiveLog = (obj) => ({
365
+ ...obj,
366
+ });
367
+ export const GetMetricStreamInputFilterSensitiveLog = (obj) => ({
368
+ ...obj,
369
+ });
370
+ export const MetricStreamFilterFilterSensitiveLog = (obj) => ({
371
+ ...obj,
372
+ });
373
+ export const MetricStreamStatisticsMetricFilterSensitiveLog = (obj) => ({
374
+ ...obj,
375
+ });
376
+ export const MetricStreamStatisticsConfigurationFilterSensitiveLog = (obj) => ({
377
+ ...obj,
378
+ });
379
+ export const GetMetricStreamOutputFilterSensitiveLog = (obj) => ({
380
+ ...obj,
381
+ });
382
+ export const GetMetricWidgetImageInputFilterSensitiveLog = (obj) => ({
383
+ ...obj,
384
+ });
385
+ export const GetMetricWidgetImageOutputFilterSensitiveLog = (obj) => ({
386
+ ...obj,
387
+ });
388
+ export const ListDashboardsInputFilterSensitiveLog = (obj) => ({
389
+ ...obj,
390
+ });
391
+ export const ListDashboardsOutputFilterSensitiveLog = (obj) => ({
392
+ ...obj,
393
+ });
394
+ export const ListManagedInsightRulesInputFilterSensitiveLog = (obj) => ({
395
+ ...obj,
396
+ });
397
+ export const ManagedRuleStateFilterSensitiveLog = (obj) => ({
398
+ ...obj,
399
+ });
400
+ export const ManagedRuleDescriptionFilterSensitiveLog = (obj) => ({
401
+ ...obj,
402
+ });
403
+ export const ListManagedInsightRulesOutputFilterSensitiveLog = (obj) => ({
404
+ ...obj,
405
+ });
406
+ export const ListMetricsInputFilterSensitiveLog = (obj) => ({
407
+ ...obj,
408
+ });
409
+ export const ListMetricsOutputFilterSensitiveLog = (obj) => ({
410
+ ...obj,
411
+ });
412
+ export const ListMetricStreamsInputFilterSensitiveLog = (obj) => ({
413
+ ...obj,
414
+ });
415
+ export const MetricStreamEntryFilterSensitiveLog = (obj) => ({
416
+ ...obj,
417
+ });
418
+ export const ListMetricStreamsOutputFilterSensitiveLog = (obj) => ({
419
+ ...obj,
420
+ });
421
+ export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
422
+ ...obj,
423
+ });
424
+ export const TagFilterSensitiveLog = (obj) => ({
425
+ ...obj,
426
+ });
427
+ export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
428
+ ...obj,
429
+ });
430
+ export const PutAnomalyDetectorInputFilterSensitiveLog = (obj) => ({
431
+ ...obj,
432
+ });
433
+ export const PutAnomalyDetectorOutputFilterSensitiveLog = (obj) => ({
434
+ ...obj,
435
+ });
436
+ export const PutCompositeAlarmInputFilterSensitiveLog = (obj) => ({
437
+ ...obj,
438
+ });
439
+ export const PutDashboardInputFilterSensitiveLog = (obj) => ({
440
+ ...obj,
441
+ });
442
+ export const PutDashboardOutputFilterSensitiveLog = (obj) => ({
443
+ ...obj,
444
+ });
445
+ export const PutInsightRuleInputFilterSensitiveLog = (obj) => ({
446
+ ...obj,
447
+ });
448
+ export const PutInsightRuleOutputFilterSensitiveLog = (obj) => ({
449
+ ...obj,
450
+ });
451
+ export const ManagedRuleFilterSensitiveLog = (obj) => ({
452
+ ...obj,
453
+ });
454
+ export const PutManagedInsightRulesInputFilterSensitiveLog = (obj) => ({
455
+ ...obj,
456
+ });
457
+ export const PutManagedInsightRulesOutputFilterSensitiveLog = (obj) => ({
458
+ ...obj,
459
+ });
460
+ export const PutMetricAlarmInputFilterSensitiveLog = (obj) => ({
461
+ ...obj,
462
+ });
463
+ export const StatisticSetFilterSensitiveLog = (obj) => ({
464
+ ...obj,
465
+ });
466
+ export const MetricDatumFilterSensitiveLog = (obj) => ({
467
+ ...obj,
468
+ });
469
+ export const PutMetricDataInputFilterSensitiveLog = (obj) => ({
470
+ ...obj,
471
+ });
472
+ export const PutMetricStreamInputFilterSensitiveLog = (obj) => ({
473
+ ...obj,
474
+ });
475
+ export const PutMetricStreamOutputFilterSensitiveLog = (obj) => ({
476
+ ...obj,
477
+ });
478
+ export const SetAlarmStateInputFilterSensitiveLog = (obj) => ({
479
+ ...obj,
480
+ });
481
+ export const StartMetricStreamsInputFilterSensitiveLog = (obj) => ({
482
+ ...obj,
483
+ });
484
+ export const StartMetricStreamsOutputFilterSensitiveLog = (obj) => ({
485
+ ...obj,
486
+ });
487
+ export const StopMetricStreamsInputFilterSensitiveLog = (obj) => ({
488
+ ...obj,
489
+ });
490
+ export const StopMetricStreamsOutputFilterSensitiveLog = (obj) => ({
491
+ ...obj,
492
+ });
493
+ export const TagResourceInputFilterSensitiveLog = (obj) => ({
494
+ ...obj,
495
+ });
496
+ export const TagResourceOutputFilterSensitiveLog = (obj) => ({
497
+ ...obj,
498
+ });
499
+ export const UntagResourceInputFilterSensitiveLog = (obj) => ({
500
+ ...obj,
501
+ });
502
+ export const UntagResourceOutputFilterSensitiveLog = (obj) => ({
503
+ ...obj,
504
+ });