@aws-sdk/client-cloudwatch 3.131.0 → 3.141.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/DeleteAlarmsCommand.js +1 -1
- package/dist-cjs/commands/DeleteAnomalyDetectorCommand.js +2 -2
- package/dist-cjs/commands/DeleteDashboardsCommand.js +2 -2
- package/dist-cjs/commands/DeleteInsightRulesCommand.js +2 -2
- package/dist-cjs/commands/DeleteMetricStreamCommand.js +2 -2
- package/dist-cjs/commands/DescribeAlarmHistoryCommand.js +2 -2
- package/dist-cjs/commands/DescribeAlarmsCommand.js +2 -2
- package/dist-cjs/commands/DescribeAlarmsForMetricCommand.js +2 -2
- package/dist-cjs/commands/DescribeAnomalyDetectorsCommand.js +2 -2
- package/dist-cjs/commands/DescribeInsightRulesCommand.js +2 -2
- package/dist-cjs/commands/DisableAlarmActionsCommand.js +1 -1
- package/dist-cjs/commands/DisableInsightRulesCommand.js +2 -2
- package/dist-cjs/commands/EnableAlarmActionsCommand.js +1 -1
- package/dist-cjs/commands/EnableInsightRulesCommand.js +2 -2
- package/dist-cjs/commands/GetDashboardCommand.js +2 -2
- package/dist-cjs/commands/GetInsightRuleReportCommand.js +2 -2
- package/dist-cjs/commands/GetMetricDataCommand.js +2 -2
- package/dist-cjs/commands/GetMetricStatisticsCommand.js +2 -2
- package/dist-cjs/commands/GetMetricStreamCommand.js +2 -2
- package/dist-cjs/commands/GetMetricWidgetImageCommand.js +2 -2
- package/dist-cjs/commands/ListDashboardsCommand.js +2 -2
- package/dist-cjs/commands/ListMetricStreamsCommand.js +2 -2
- package/dist-cjs/commands/ListMetricsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutAnomalyDetectorCommand.js +2 -2
- package/dist-cjs/commands/PutCompositeAlarmCommand.js +1 -1
- package/dist-cjs/commands/PutDashboardCommand.js +2 -2
- package/dist-cjs/commands/PutInsightRuleCommand.js +2 -2
- package/dist-cjs/commands/PutMetricAlarmCommand.js +1 -1
- package/dist-cjs/commands/PutMetricDataCommand.js +1 -1
- package/dist-cjs/commands/PutMetricStreamCommand.js +2 -2
- package/dist-cjs/commands/SetAlarmStateCommand.js +1 -1
- package/dist-cjs/commands/StartMetricStreamsCommand.js +2 -2
- package/dist-cjs/commands/StopMetricStreamsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/models/models_0.js +393 -579
- package/dist-cjs/protocols/Aws_query.js +33 -0
- package/dist-es/commands/DeleteAlarmsCommand.js +2 -2
- package/dist-es/commands/DeleteAnomalyDetectorCommand.js +3 -3
- package/dist-es/commands/DeleteDashboardsCommand.js +3 -3
- package/dist-es/commands/DeleteInsightRulesCommand.js +3 -3
- package/dist-es/commands/DeleteMetricStreamCommand.js +3 -3
- package/dist-es/commands/DescribeAlarmHistoryCommand.js +3 -3
- package/dist-es/commands/DescribeAlarmsCommand.js +3 -3
- package/dist-es/commands/DescribeAlarmsForMetricCommand.js +3 -3
- package/dist-es/commands/DescribeAnomalyDetectorsCommand.js +3 -3
- package/dist-es/commands/DescribeInsightRulesCommand.js +3 -3
- package/dist-es/commands/DisableAlarmActionsCommand.js +2 -2
- package/dist-es/commands/DisableInsightRulesCommand.js +3 -3
- package/dist-es/commands/EnableAlarmActionsCommand.js +2 -2
- package/dist-es/commands/EnableInsightRulesCommand.js +3 -3
- package/dist-es/commands/GetDashboardCommand.js +3 -3
- package/dist-es/commands/GetInsightRuleReportCommand.js +3 -3
- package/dist-es/commands/GetMetricDataCommand.js +3 -3
- package/dist-es/commands/GetMetricStatisticsCommand.js +3 -3
- package/dist-es/commands/GetMetricStreamCommand.js +3 -3
- package/dist-es/commands/GetMetricWidgetImageCommand.js +3 -3
- package/dist-es/commands/ListDashboardsCommand.js +3 -3
- package/dist-es/commands/ListMetricStreamsCommand.js +3 -3
- package/dist-es/commands/ListMetricsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutAnomalyDetectorCommand.js +3 -3
- package/dist-es/commands/PutCompositeAlarmCommand.js +2 -2
- package/dist-es/commands/PutDashboardCommand.js +3 -3
- package/dist-es/commands/PutInsightRuleCommand.js +3 -3
- package/dist-es/commands/PutMetricAlarmCommand.js +2 -2
- package/dist-es/commands/PutMetricDataCommand.js +2 -2
- package/dist-es/commands/PutMetricStreamCommand.js +3 -3
- package/dist-es/commands/SetAlarmStateCommand.js +2 -2
- package/dist-es/commands/StartMetricStreamsCommand.js +3 -3
- package/dist-es/commands/StopMetricStreamsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/models/models_0.js +102 -384
- package/dist-es/protocols/Aws_query.js +33 -0
- package/dist-types/models/models_0.d.ts +530 -573
- package/dist-types/ts3.4/models/models_0.d.ts +213 -382
- package/package.json +6 -6
|
@@ -1,58 +1,16 @@
|
|
|
1
1
|
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { CloudWatchServiceException as __BaseException } from "./CloudWatchServiceException";
|
|
3
|
-
export var
|
|
4
|
-
(function (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
(
|
|
9
|
-
Range.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
|
-
})(Range || (Range = {}));
|
|
11
|
-
export var AnomalyDetectorConfiguration;
|
|
12
|
-
(function (AnomalyDetectorConfiguration) {
|
|
13
|
-
AnomalyDetectorConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
14
|
-
})(AnomalyDetectorConfiguration || (AnomalyDetectorConfiguration = {}));
|
|
15
|
-
export var Dimension;
|
|
16
|
-
(function (Dimension) {
|
|
17
|
-
Dimension.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
|
-
})(Dimension || (Dimension = {}));
|
|
19
|
-
export var Metric;
|
|
20
|
-
(function (Metric) {
|
|
21
|
-
Metric.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
22
|
-
})(Metric || (Metric = {}));
|
|
23
|
-
export var MetricStat;
|
|
24
|
-
(function (MetricStat) {
|
|
25
|
-
MetricStat.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
26
|
-
})(MetricStat || (MetricStat = {}));
|
|
27
|
-
export var MetricDataQuery;
|
|
28
|
-
(function (MetricDataQuery) {
|
|
29
|
-
MetricDataQuery.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
30
|
-
})(MetricDataQuery || (MetricDataQuery = {}));
|
|
31
|
-
export var MetricMathAnomalyDetector;
|
|
32
|
-
(function (MetricMathAnomalyDetector) {
|
|
33
|
-
MetricMathAnomalyDetector.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
34
|
-
})(MetricMathAnomalyDetector || (MetricMathAnomalyDetector = {}));
|
|
35
|
-
export var SingleMetricAnomalyDetector;
|
|
36
|
-
(function (SingleMetricAnomalyDetector) {
|
|
37
|
-
SingleMetricAnomalyDetector.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
38
|
-
})(SingleMetricAnomalyDetector || (SingleMetricAnomalyDetector = {}));
|
|
39
|
-
export var AnomalyDetector;
|
|
40
|
-
(function (AnomalyDetector) {
|
|
41
|
-
AnomalyDetector.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
42
|
-
})(AnomalyDetector || (AnomalyDetector = {}));
|
|
3
|
+
export var ActionsSuppressedBy;
|
|
4
|
+
(function (ActionsSuppressedBy) {
|
|
5
|
+
ActionsSuppressedBy["Alarm"] = "Alarm";
|
|
6
|
+
ActionsSuppressedBy["ExtensionPeriod"] = "ExtensionPeriod";
|
|
7
|
+
ActionsSuppressedBy["WaitPeriod"] = "WaitPeriod";
|
|
8
|
+
})(ActionsSuppressedBy || (ActionsSuppressedBy = {}));
|
|
43
9
|
export var AnomalyDetectorType;
|
|
44
10
|
(function (AnomalyDetectorType) {
|
|
45
11
|
AnomalyDetectorType["METRIC_MATH"] = "METRIC_MATH";
|
|
46
12
|
AnomalyDetectorType["SINGLE_METRIC"] = "SINGLE_METRIC";
|
|
47
13
|
})(AnomalyDetectorType || (AnomalyDetectorType = {}));
|
|
48
|
-
export var PartialFailure;
|
|
49
|
-
(function (PartialFailure) {
|
|
50
|
-
PartialFailure.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
51
|
-
})(PartialFailure || (PartialFailure = {}));
|
|
52
|
-
export var CompositeAlarm;
|
|
53
|
-
(function (CompositeAlarm) {
|
|
54
|
-
CompositeAlarm.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
55
|
-
})(CompositeAlarm || (CompositeAlarm = {}));
|
|
56
14
|
var ConcurrentModificationException = (function (_super) {
|
|
57
15
|
__extends(ConcurrentModificationException, _super);
|
|
58
16
|
function ConcurrentModificationException(opts) {
|
|
@@ -66,14 +24,6 @@ var ConcurrentModificationException = (function (_super) {
|
|
|
66
24
|
return ConcurrentModificationException;
|
|
67
25
|
}(__BaseException));
|
|
68
26
|
export { ConcurrentModificationException };
|
|
69
|
-
export var DashboardEntry;
|
|
70
|
-
(function (DashboardEntry) {
|
|
71
|
-
DashboardEntry.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
72
|
-
})(DashboardEntry || (DashboardEntry = {}));
|
|
73
|
-
export var DashboardValidationMessage;
|
|
74
|
-
(function (DashboardValidationMessage) {
|
|
75
|
-
DashboardValidationMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
76
|
-
})(DashboardValidationMessage || (DashboardValidationMessage = {}));
|
|
77
27
|
var DashboardInvalidInputError = (function (_super) {
|
|
78
28
|
__extends(DashboardInvalidInputError, _super);
|
|
79
29
|
function DashboardInvalidInputError(opts) {
|
|
@@ -99,14 +49,6 @@ var DashboardNotFoundError = (function (_super) {
|
|
|
99
49
|
return DashboardNotFoundError;
|
|
100
50
|
}(__BaseException));
|
|
101
51
|
export { DashboardNotFoundError };
|
|
102
|
-
export var Datapoint;
|
|
103
|
-
(function (Datapoint) {
|
|
104
|
-
Datapoint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
105
|
-
})(Datapoint || (Datapoint = {}));
|
|
106
|
-
export var DeleteAlarmsInput;
|
|
107
|
-
(function (DeleteAlarmsInput) {
|
|
108
|
-
DeleteAlarmsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
109
|
-
})(DeleteAlarmsInput || (DeleteAlarmsInput = {}));
|
|
110
52
|
var ResourceNotFound = (function (_super) {
|
|
111
53
|
__extends(ResourceNotFound, _super);
|
|
112
54
|
function ResourceNotFound(opts) {
|
|
@@ -119,14 +61,6 @@ var ResourceNotFound = (function (_super) {
|
|
|
119
61
|
return ResourceNotFound;
|
|
120
62
|
}(__BaseException));
|
|
121
63
|
export { ResourceNotFound };
|
|
122
|
-
export var DeleteAnomalyDetectorInput;
|
|
123
|
-
(function (DeleteAnomalyDetectorInput) {
|
|
124
|
-
DeleteAnomalyDetectorInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
|
-
})(DeleteAnomalyDetectorInput || (DeleteAnomalyDetectorInput = {}));
|
|
126
|
-
export var DeleteAnomalyDetectorOutput;
|
|
127
|
-
(function (DeleteAnomalyDetectorOutput) {
|
|
128
|
-
DeleteAnomalyDetectorOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
-
})(DeleteAnomalyDetectorOutput || (DeleteAnomalyDetectorOutput = {}));
|
|
130
64
|
var InternalServiceFault = (function (_super) {
|
|
131
65
|
__extends(InternalServiceFault, _super);
|
|
132
66
|
function InternalServiceFault(opts) {
|
|
@@ -191,43 +125,11 @@ var ResourceNotFoundException = (function (_super) {
|
|
|
191
125
|
return ResourceNotFoundException;
|
|
192
126
|
}(__BaseException));
|
|
193
127
|
export { ResourceNotFoundException };
|
|
194
|
-
export var DeleteDashboardsInput;
|
|
195
|
-
(function (DeleteDashboardsInput) {
|
|
196
|
-
DeleteDashboardsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
-
})(DeleteDashboardsInput || (DeleteDashboardsInput = {}));
|
|
198
|
-
export var DeleteDashboardsOutput;
|
|
199
|
-
(function (DeleteDashboardsOutput) {
|
|
200
|
-
DeleteDashboardsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
-
})(DeleteDashboardsOutput || (DeleteDashboardsOutput = {}));
|
|
202
|
-
export var DeleteInsightRulesInput;
|
|
203
|
-
(function (DeleteInsightRulesInput) {
|
|
204
|
-
DeleteInsightRulesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
-
})(DeleteInsightRulesInput || (DeleteInsightRulesInput = {}));
|
|
206
|
-
export var DeleteInsightRulesOutput;
|
|
207
|
-
(function (DeleteInsightRulesOutput) {
|
|
208
|
-
DeleteInsightRulesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
-
})(DeleteInsightRulesOutput || (DeleteInsightRulesOutput = {}));
|
|
210
|
-
export var DeleteMetricStreamInput;
|
|
211
|
-
(function (DeleteMetricStreamInput) {
|
|
212
|
-
DeleteMetricStreamInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
213
|
-
})(DeleteMetricStreamInput || (DeleteMetricStreamInput = {}));
|
|
214
|
-
export var DeleteMetricStreamOutput;
|
|
215
|
-
(function (DeleteMetricStreamOutput) {
|
|
216
|
-
DeleteMetricStreamOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
-
})(DeleteMetricStreamOutput || (DeleteMetricStreamOutput = {}));
|
|
218
128
|
export var ScanBy;
|
|
219
129
|
(function (ScanBy) {
|
|
220
130
|
ScanBy["TIMESTAMP_ASCENDING"] = "TimestampAscending";
|
|
221
131
|
ScanBy["TIMESTAMP_DESCENDING"] = "TimestampDescending";
|
|
222
132
|
})(ScanBy || (ScanBy = {}));
|
|
223
|
-
export var DescribeAlarmHistoryInput;
|
|
224
|
-
(function (DescribeAlarmHistoryInput) {
|
|
225
|
-
DescribeAlarmHistoryInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
-
})(DescribeAlarmHistoryInput || (DescribeAlarmHistoryInput = {}));
|
|
227
|
-
export var DescribeAlarmHistoryOutput;
|
|
228
|
-
(function (DescribeAlarmHistoryOutput) {
|
|
229
|
-
DescribeAlarmHistoryOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
-
})(DescribeAlarmHistoryOutput || (DescribeAlarmHistoryOutput = {}));
|
|
231
133
|
var InvalidNextToken = (function (_super) {
|
|
232
134
|
__extends(InvalidNextToken, _super);
|
|
233
135
|
function InvalidNextToken(opts) {
|
|
@@ -240,74 +142,6 @@ var InvalidNextToken = (function (_super) {
|
|
|
240
142
|
return InvalidNextToken;
|
|
241
143
|
}(__BaseException));
|
|
242
144
|
export { InvalidNextToken };
|
|
243
|
-
export var DescribeAlarmsInput;
|
|
244
|
-
(function (DescribeAlarmsInput) {
|
|
245
|
-
DescribeAlarmsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
-
})(DescribeAlarmsInput || (DescribeAlarmsInput = {}));
|
|
247
|
-
export var MetricAlarm;
|
|
248
|
-
(function (MetricAlarm) {
|
|
249
|
-
MetricAlarm.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
-
})(MetricAlarm || (MetricAlarm = {}));
|
|
251
|
-
export var DescribeAlarmsOutput;
|
|
252
|
-
(function (DescribeAlarmsOutput) {
|
|
253
|
-
DescribeAlarmsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
-
})(DescribeAlarmsOutput || (DescribeAlarmsOutput = {}));
|
|
255
|
-
export var DescribeAlarmsForMetricInput;
|
|
256
|
-
(function (DescribeAlarmsForMetricInput) {
|
|
257
|
-
DescribeAlarmsForMetricInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
-
})(DescribeAlarmsForMetricInput || (DescribeAlarmsForMetricInput = {}));
|
|
259
|
-
export var DescribeAlarmsForMetricOutput;
|
|
260
|
-
(function (DescribeAlarmsForMetricOutput) {
|
|
261
|
-
DescribeAlarmsForMetricOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
-
})(DescribeAlarmsForMetricOutput || (DescribeAlarmsForMetricOutput = {}));
|
|
263
|
-
export var DescribeAnomalyDetectorsInput;
|
|
264
|
-
(function (DescribeAnomalyDetectorsInput) {
|
|
265
|
-
DescribeAnomalyDetectorsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
-
})(DescribeAnomalyDetectorsInput || (DescribeAnomalyDetectorsInput = {}));
|
|
267
|
-
export var DescribeAnomalyDetectorsOutput;
|
|
268
|
-
(function (DescribeAnomalyDetectorsOutput) {
|
|
269
|
-
DescribeAnomalyDetectorsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
-
})(DescribeAnomalyDetectorsOutput || (DescribeAnomalyDetectorsOutput = {}));
|
|
271
|
-
export var DescribeInsightRulesInput;
|
|
272
|
-
(function (DescribeInsightRulesInput) {
|
|
273
|
-
DescribeInsightRulesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
-
})(DescribeInsightRulesInput || (DescribeInsightRulesInput = {}));
|
|
275
|
-
export var InsightRule;
|
|
276
|
-
(function (InsightRule) {
|
|
277
|
-
InsightRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
-
})(InsightRule || (InsightRule = {}));
|
|
279
|
-
export var DescribeInsightRulesOutput;
|
|
280
|
-
(function (DescribeInsightRulesOutput) {
|
|
281
|
-
DescribeInsightRulesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
-
})(DescribeInsightRulesOutput || (DescribeInsightRulesOutput = {}));
|
|
283
|
-
export var DimensionFilter;
|
|
284
|
-
(function (DimensionFilter) {
|
|
285
|
-
DimensionFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
-
})(DimensionFilter || (DimensionFilter = {}));
|
|
287
|
-
export var DisableAlarmActionsInput;
|
|
288
|
-
(function (DisableAlarmActionsInput) {
|
|
289
|
-
DisableAlarmActionsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
-
})(DisableAlarmActionsInput || (DisableAlarmActionsInput = {}));
|
|
291
|
-
export var DisableInsightRulesInput;
|
|
292
|
-
(function (DisableInsightRulesInput) {
|
|
293
|
-
DisableInsightRulesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
-
})(DisableInsightRulesInput || (DisableInsightRulesInput = {}));
|
|
295
|
-
export var DisableInsightRulesOutput;
|
|
296
|
-
(function (DisableInsightRulesOutput) {
|
|
297
|
-
DisableInsightRulesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
-
})(DisableInsightRulesOutput || (DisableInsightRulesOutput = {}));
|
|
299
|
-
export var EnableAlarmActionsInput;
|
|
300
|
-
(function (EnableAlarmActionsInput) {
|
|
301
|
-
EnableAlarmActionsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
-
})(EnableAlarmActionsInput || (EnableAlarmActionsInput = {}));
|
|
303
|
-
export var EnableInsightRulesInput;
|
|
304
|
-
(function (EnableInsightRulesInput) {
|
|
305
|
-
EnableInsightRulesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
-
})(EnableInsightRulesInput || (EnableInsightRulesInput = {}));
|
|
307
|
-
export var EnableInsightRulesOutput;
|
|
308
|
-
(function (EnableInsightRulesOutput) {
|
|
309
|
-
EnableInsightRulesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
-
})(EnableInsightRulesOutput || (EnableInsightRulesOutput = {}));
|
|
311
145
|
var LimitExceededException = (function (_super) {
|
|
312
146
|
__extends(LimitExceededException, _super);
|
|
313
147
|
function LimitExceededException(opts) {
|
|
@@ -321,153 +155,21 @@ var LimitExceededException = (function (_super) {
|
|
|
321
155
|
return LimitExceededException;
|
|
322
156
|
}(__BaseException));
|
|
323
157
|
export { LimitExceededException };
|
|
324
|
-
export var GetDashboardInput;
|
|
325
|
-
(function (GetDashboardInput) {
|
|
326
|
-
GetDashboardInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
-
})(GetDashboardInput || (GetDashboardInput = {}));
|
|
328
|
-
export var GetDashboardOutput;
|
|
329
|
-
(function (GetDashboardOutput) {
|
|
330
|
-
GetDashboardOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
-
})(GetDashboardOutput || (GetDashboardOutput = {}));
|
|
332
|
-
export var GetInsightRuleReportInput;
|
|
333
|
-
(function (GetInsightRuleReportInput) {
|
|
334
|
-
GetInsightRuleReportInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
-
})(GetInsightRuleReportInput || (GetInsightRuleReportInput = {}));
|
|
336
|
-
export var InsightRuleContributorDatapoint;
|
|
337
|
-
(function (InsightRuleContributorDatapoint) {
|
|
338
|
-
InsightRuleContributorDatapoint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
-
})(InsightRuleContributorDatapoint || (InsightRuleContributorDatapoint = {}));
|
|
340
|
-
export var InsightRuleContributor;
|
|
341
|
-
(function (InsightRuleContributor) {
|
|
342
|
-
InsightRuleContributor.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
-
})(InsightRuleContributor || (InsightRuleContributor = {}));
|
|
344
|
-
export var InsightRuleMetricDatapoint;
|
|
345
|
-
(function (InsightRuleMetricDatapoint) {
|
|
346
|
-
InsightRuleMetricDatapoint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
-
})(InsightRuleMetricDatapoint || (InsightRuleMetricDatapoint = {}));
|
|
348
|
-
export var GetInsightRuleReportOutput;
|
|
349
|
-
(function (GetInsightRuleReportOutput) {
|
|
350
|
-
GetInsightRuleReportOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
-
})(GetInsightRuleReportOutput || (GetInsightRuleReportOutput = {}));
|
|
352
|
-
export var LabelOptions;
|
|
353
|
-
(function (LabelOptions) {
|
|
354
|
-
LabelOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
-
})(LabelOptions || (LabelOptions = {}));
|
|
356
|
-
export var GetMetricDataInput;
|
|
357
|
-
(function (GetMetricDataInput) {
|
|
358
|
-
GetMetricDataInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
-
})(GetMetricDataInput || (GetMetricDataInput = {}));
|
|
360
|
-
export var MessageData;
|
|
361
|
-
(function (MessageData) {
|
|
362
|
-
MessageData.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
363
|
-
})(MessageData || (MessageData = {}));
|
|
364
158
|
export var StatusCode;
|
|
365
159
|
(function (StatusCode) {
|
|
366
160
|
StatusCode["COMPLETE"] = "Complete";
|
|
367
161
|
StatusCode["INTERNAL_ERROR"] = "InternalError";
|
|
368
162
|
StatusCode["PARTIAL_DATA"] = "PartialData";
|
|
369
163
|
})(StatusCode || (StatusCode = {}));
|
|
370
|
-
export var MetricDataResult;
|
|
371
|
-
(function (MetricDataResult) {
|
|
372
|
-
MetricDataResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
|
-
})(MetricDataResult || (MetricDataResult = {}));
|
|
374
|
-
export var GetMetricDataOutput;
|
|
375
|
-
(function (GetMetricDataOutput) {
|
|
376
|
-
GetMetricDataOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
377
|
-
})(GetMetricDataOutput || (GetMetricDataOutput = {}));
|
|
378
|
-
export var GetMetricStatisticsInput;
|
|
379
|
-
(function (GetMetricStatisticsInput) {
|
|
380
|
-
GetMetricStatisticsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
381
|
-
})(GetMetricStatisticsInput || (GetMetricStatisticsInput = {}));
|
|
382
|
-
export var GetMetricStatisticsOutput;
|
|
383
|
-
(function (GetMetricStatisticsOutput) {
|
|
384
|
-
GetMetricStatisticsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
385
|
-
})(GetMetricStatisticsOutput || (GetMetricStatisticsOutput = {}));
|
|
386
|
-
export var GetMetricStreamInput;
|
|
387
|
-
(function (GetMetricStreamInput) {
|
|
388
|
-
GetMetricStreamInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
389
|
-
})(GetMetricStreamInput || (GetMetricStreamInput = {}));
|
|
390
|
-
export var MetricStreamFilter;
|
|
391
|
-
(function (MetricStreamFilter) {
|
|
392
|
-
MetricStreamFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
393
|
-
})(MetricStreamFilter || (MetricStreamFilter = {}));
|
|
394
164
|
export var MetricStreamOutputFormat;
|
|
395
165
|
(function (MetricStreamOutputFormat) {
|
|
396
166
|
MetricStreamOutputFormat["JSON"] = "json";
|
|
397
167
|
MetricStreamOutputFormat["OPEN_TELEMETRY_0_7"] = "opentelemetry0.7";
|
|
398
168
|
})(MetricStreamOutputFormat || (MetricStreamOutputFormat = {}));
|
|
399
|
-
export var MetricStreamStatisticsMetric;
|
|
400
|
-
(function (MetricStreamStatisticsMetric) {
|
|
401
|
-
MetricStreamStatisticsMetric.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
402
|
-
})(MetricStreamStatisticsMetric || (MetricStreamStatisticsMetric = {}));
|
|
403
|
-
export var MetricStreamStatisticsConfiguration;
|
|
404
|
-
(function (MetricStreamStatisticsConfiguration) {
|
|
405
|
-
MetricStreamStatisticsConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
406
|
-
})(MetricStreamStatisticsConfiguration || (MetricStreamStatisticsConfiguration = {}));
|
|
407
|
-
export var GetMetricStreamOutput;
|
|
408
|
-
(function (GetMetricStreamOutput) {
|
|
409
|
-
GetMetricStreamOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
410
|
-
})(GetMetricStreamOutput || (GetMetricStreamOutput = {}));
|
|
411
|
-
export var GetMetricWidgetImageInput;
|
|
412
|
-
(function (GetMetricWidgetImageInput) {
|
|
413
|
-
GetMetricWidgetImageInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
414
|
-
})(GetMetricWidgetImageInput || (GetMetricWidgetImageInput = {}));
|
|
415
|
-
export var GetMetricWidgetImageOutput;
|
|
416
|
-
(function (GetMetricWidgetImageOutput) {
|
|
417
|
-
GetMetricWidgetImageOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
418
|
-
})(GetMetricWidgetImageOutput || (GetMetricWidgetImageOutput = {}));
|
|
419
|
-
export var ListDashboardsInput;
|
|
420
|
-
(function (ListDashboardsInput) {
|
|
421
|
-
ListDashboardsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
422
|
-
})(ListDashboardsInput || (ListDashboardsInput = {}));
|
|
423
|
-
export var ListDashboardsOutput;
|
|
424
|
-
(function (ListDashboardsOutput) {
|
|
425
|
-
ListDashboardsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
426
|
-
})(ListDashboardsOutput || (ListDashboardsOutput = {}));
|
|
427
169
|
export var RecentlyActive;
|
|
428
170
|
(function (RecentlyActive) {
|
|
429
171
|
RecentlyActive["PT3H"] = "PT3H";
|
|
430
172
|
})(RecentlyActive || (RecentlyActive = {}));
|
|
431
|
-
export var ListMetricsInput;
|
|
432
|
-
(function (ListMetricsInput) {
|
|
433
|
-
ListMetricsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
434
|
-
})(ListMetricsInput || (ListMetricsInput = {}));
|
|
435
|
-
export var ListMetricsOutput;
|
|
436
|
-
(function (ListMetricsOutput) {
|
|
437
|
-
ListMetricsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
438
|
-
})(ListMetricsOutput || (ListMetricsOutput = {}));
|
|
439
|
-
export var ListMetricStreamsInput;
|
|
440
|
-
(function (ListMetricStreamsInput) {
|
|
441
|
-
ListMetricStreamsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
442
|
-
})(ListMetricStreamsInput || (ListMetricStreamsInput = {}));
|
|
443
|
-
export var MetricStreamEntry;
|
|
444
|
-
(function (MetricStreamEntry) {
|
|
445
|
-
MetricStreamEntry.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
446
|
-
})(MetricStreamEntry || (MetricStreamEntry = {}));
|
|
447
|
-
export var ListMetricStreamsOutput;
|
|
448
|
-
(function (ListMetricStreamsOutput) {
|
|
449
|
-
ListMetricStreamsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
450
|
-
})(ListMetricStreamsOutput || (ListMetricStreamsOutput = {}));
|
|
451
|
-
export var ListTagsForResourceInput;
|
|
452
|
-
(function (ListTagsForResourceInput) {
|
|
453
|
-
ListTagsForResourceInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
454
|
-
})(ListTagsForResourceInput || (ListTagsForResourceInput = {}));
|
|
455
|
-
export var Tag;
|
|
456
|
-
(function (Tag) {
|
|
457
|
-
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
458
|
-
})(Tag || (Tag = {}));
|
|
459
|
-
export var ListTagsForResourceOutput;
|
|
460
|
-
(function (ListTagsForResourceOutput) {
|
|
461
|
-
ListTagsForResourceOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
462
|
-
})(ListTagsForResourceOutput || (ListTagsForResourceOutput = {}));
|
|
463
|
-
export var PutAnomalyDetectorInput;
|
|
464
|
-
(function (PutAnomalyDetectorInput) {
|
|
465
|
-
PutAnomalyDetectorInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
466
|
-
})(PutAnomalyDetectorInput || (PutAnomalyDetectorInput = {}));
|
|
467
|
-
export var PutAnomalyDetectorOutput;
|
|
468
|
-
(function (PutAnomalyDetectorOutput) {
|
|
469
|
-
PutAnomalyDetectorOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
470
|
-
})(PutAnomalyDetectorOutput || (PutAnomalyDetectorOutput = {}));
|
|
471
173
|
var LimitExceededFault = (function (_super) {
|
|
472
174
|
__extends(LimitExceededFault, _super);
|
|
473
175
|
function LimitExceededFault(opts) {
|
|
@@ -480,50 +182,6 @@ var LimitExceededFault = (function (_super) {
|
|
|
480
182
|
return LimitExceededFault;
|
|
481
183
|
}(__BaseException));
|
|
482
184
|
export { LimitExceededFault };
|
|
483
|
-
export var PutCompositeAlarmInput;
|
|
484
|
-
(function (PutCompositeAlarmInput) {
|
|
485
|
-
PutCompositeAlarmInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
486
|
-
})(PutCompositeAlarmInput || (PutCompositeAlarmInput = {}));
|
|
487
|
-
export var PutDashboardInput;
|
|
488
|
-
(function (PutDashboardInput) {
|
|
489
|
-
PutDashboardInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
490
|
-
})(PutDashboardInput || (PutDashboardInput = {}));
|
|
491
|
-
export var PutDashboardOutput;
|
|
492
|
-
(function (PutDashboardOutput) {
|
|
493
|
-
PutDashboardOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
494
|
-
})(PutDashboardOutput || (PutDashboardOutput = {}));
|
|
495
|
-
export var PutInsightRuleInput;
|
|
496
|
-
(function (PutInsightRuleInput) {
|
|
497
|
-
PutInsightRuleInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
498
|
-
})(PutInsightRuleInput || (PutInsightRuleInput = {}));
|
|
499
|
-
export var PutInsightRuleOutput;
|
|
500
|
-
(function (PutInsightRuleOutput) {
|
|
501
|
-
PutInsightRuleOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
502
|
-
})(PutInsightRuleOutput || (PutInsightRuleOutput = {}));
|
|
503
|
-
export var PutMetricAlarmInput;
|
|
504
|
-
(function (PutMetricAlarmInput) {
|
|
505
|
-
PutMetricAlarmInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
506
|
-
})(PutMetricAlarmInput || (PutMetricAlarmInput = {}));
|
|
507
|
-
export var StatisticSet;
|
|
508
|
-
(function (StatisticSet) {
|
|
509
|
-
StatisticSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
510
|
-
})(StatisticSet || (StatisticSet = {}));
|
|
511
|
-
export var MetricDatum;
|
|
512
|
-
(function (MetricDatum) {
|
|
513
|
-
MetricDatum.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
514
|
-
})(MetricDatum || (MetricDatum = {}));
|
|
515
|
-
export var PutMetricDataInput;
|
|
516
|
-
(function (PutMetricDataInput) {
|
|
517
|
-
PutMetricDataInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
518
|
-
})(PutMetricDataInput || (PutMetricDataInput = {}));
|
|
519
|
-
export var PutMetricStreamInput;
|
|
520
|
-
(function (PutMetricStreamInput) {
|
|
521
|
-
PutMetricStreamInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
522
|
-
})(PutMetricStreamInput || (PutMetricStreamInput = {}));
|
|
523
|
-
export var PutMetricStreamOutput;
|
|
524
|
-
(function (PutMetricStreamOutput) {
|
|
525
|
-
PutMetricStreamOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
526
|
-
})(PutMetricStreamOutput || (PutMetricStreamOutput = {}));
|
|
527
185
|
var InvalidFormatFault = (function (_super) {
|
|
528
186
|
__extends(InvalidFormatFault, _super);
|
|
529
187
|
function InvalidFormatFault(opts) {
|
|
@@ -536,39 +194,99 @@ var InvalidFormatFault = (function (_super) {
|
|
|
536
194
|
return InvalidFormatFault;
|
|
537
195
|
}(__BaseException));
|
|
538
196
|
export { InvalidFormatFault };
|
|
539
|
-
export var
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
export var
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
export var
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
export var
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
export var
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
export var
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
export var
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
export var
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
export var
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
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 ListMetricsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var ListMetricsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var ListMetricStreamsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var MetricStreamEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var ListMetricStreamsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var ListTagsForResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var ListTagsForResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var PutAnomalyDetectorInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var PutAnomalyDetectorOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var PutCompositeAlarmInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var PutDashboardInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var PutDashboardOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var PutInsightRuleInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var PutInsightRuleOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var PutMetricAlarmInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var StatisticSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var MetricDatumFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var PutMetricDataInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var PutMetricStreamInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var PutMetricStreamOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var SetAlarmStateInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var StartMetricStreamsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var StartMetricStreamsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var StopMetricStreamsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var StopMetricStreamsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var TagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var TagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var UntagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var UntagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -3738,6 +3738,15 @@ var serializeAws_queryPutCompositeAlarmInput = function (input, context) {
|
|
|
3738
3738
|
entries[loc] = value;
|
|
3739
3739
|
});
|
|
3740
3740
|
}
|
|
3741
|
+
if (input.ActionsSuppressor !== undefined && input.ActionsSuppressor !== null) {
|
|
3742
|
+
entries["ActionsSuppressor"] = input.ActionsSuppressor;
|
|
3743
|
+
}
|
|
3744
|
+
if (input.ActionsSuppressorWaitPeriod !== undefined && input.ActionsSuppressorWaitPeriod !== null) {
|
|
3745
|
+
entries["ActionsSuppressorWaitPeriod"] = input.ActionsSuppressorWaitPeriod;
|
|
3746
|
+
}
|
|
3747
|
+
if (input.ActionsSuppressorExtensionPeriod !== undefined && input.ActionsSuppressorExtensionPeriod !== null) {
|
|
3748
|
+
entries["ActionsSuppressorExtensionPeriod"] = input.ActionsSuppressorExtensionPeriod;
|
|
3749
|
+
}
|
|
3741
3750
|
return entries;
|
|
3742
3751
|
};
|
|
3743
3752
|
var serializeAws_queryPutDashboardInput = function (input, context) {
|
|
@@ -4320,6 +4329,12 @@ var deserializeAws_queryCompositeAlarm = function (output, context) {
|
|
|
4320
4329
|
StateReasonData: undefined,
|
|
4321
4330
|
StateUpdatedTimestamp: undefined,
|
|
4322
4331
|
StateValue: undefined,
|
|
4332
|
+
StateTransitionedTimestamp: undefined,
|
|
4333
|
+
ActionsSuppressedBy: undefined,
|
|
4334
|
+
ActionsSuppressedReason: undefined,
|
|
4335
|
+
ActionsSuppressor: undefined,
|
|
4336
|
+
ActionsSuppressorWaitPeriod: undefined,
|
|
4337
|
+
ActionsSuppressorExtensionPeriod: undefined,
|
|
4323
4338
|
};
|
|
4324
4339
|
if (output["ActionsEnabled"] !== undefined) {
|
|
4325
4340
|
contents.ActionsEnabled = __parseBoolean(output["ActionsEnabled"]);
|
|
@@ -4370,6 +4385,24 @@ var deserializeAws_queryCompositeAlarm = function (output, context) {
|
|
|
4370
4385
|
if (output["StateValue"] !== undefined) {
|
|
4371
4386
|
contents.StateValue = __expectString(output["StateValue"]);
|
|
4372
4387
|
}
|
|
4388
|
+
if (output["StateTransitionedTimestamp"] !== undefined) {
|
|
4389
|
+
contents.StateTransitionedTimestamp = __expectNonNull(__parseRfc3339DateTime(output["StateTransitionedTimestamp"]));
|
|
4390
|
+
}
|
|
4391
|
+
if (output["ActionsSuppressedBy"] !== undefined) {
|
|
4392
|
+
contents.ActionsSuppressedBy = __expectString(output["ActionsSuppressedBy"]);
|
|
4393
|
+
}
|
|
4394
|
+
if (output["ActionsSuppressedReason"] !== undefined) {
|
|
4395
|
+
contents.ActionsSuppressedReason = __expectString(output["ActionsSuppressedReason"]);
|
|
4396
|
+
}
|
|
4397
|
+
if (output["ActionsSuppressor"] !== undefined) {
|
|
4398
|
+
contents.ActionsSuppressor = __expectString(output["ActionsSuppressor"]);
|
|
4399
|
+
}
|
|
4400
|
+
if (output["ActionsSuppressorWaitPeriod"] !== undefined) {
|
|
4401
|
+
contents.ActionsSuppressorWaitPeriod = __strictParseInt32(output["ActionsSuppressorWaitPeriod"]);
|
|
4402
|
+
}
|
|
4403
|
+
if (output["ActionsSuppressorExtensionPeriod"] !== undefined) {
|
|
4404
|
+
contents.ActionsSuppressorExtensionPeriod = __strictParseInt32(output["ActionsSuppressorExtensionPeriod"]);
|
|
4405
|
+
}
|
|
4373
4406
|
return contents;
|
|
4374
4407
|
};
|
|
4375
4408
|
var deserializeAws_queryCompositeAlarms = function (output, context) {
|