@aws-sdk/client-cloudwatch 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CloudWatch.d.ts +0 -38
- package/dist-types/ts3.4/CloudWatchClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/DeleteAlarmsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteAnomalyDetectorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteDashboardsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteInsightRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteMetricStreamCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAlarmHistoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAlarmsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAlarmsForMetricCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAnomalyDetectorsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeInsightRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableAlarmActionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableInsightRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableAlarmActionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableInsightRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetInsightRuleReportCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetMetricStatisticsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetMetricStreamCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetMetricWidgetImageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListManagedInsightRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListMetricStreamsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListMetricsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutAnomalyDetectorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutCompositeAlarmCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutDashboardCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutInsightRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutManagedInsightRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutMetricAlarmCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutMetricDataCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutMetricStreamCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SetAlarmStateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartMetricStreamsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopMetricStreamsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/CloudWatchServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -441
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/dist-types/ts3.4/waiters/waitForAlarmExists.d.ts +0 -2
- package/dist-types/ts3.4/waiters/waitForCompositeAlarmExists.d.ts +0 -2
- package/package.json +27 -27
|
@@ -10,44 +10,29 @@ export declare type HistoryItemType =
|
|
|
10
10
|
| "Action"
|
|
11
11
|
| "ConfigurationUpdate"
|
|
12
12
|
| "StateUpdate";
|
|
13
|
-
|
|
14
13
|
export interface AlarmHistoryItem {
|
|
15
14
|
AlarmName?: string;
|
|
16
|
-
|
|
17
15
|
AlarmType?: AlarmType | string;
|
|
18
|
-
|
|
19
16
|
Timestamp?: Date;
|
|
20
|
-
|
|
21
17
|
HistoryItemType?: HistoryItemType | string;
|
|
22
|
-
|
|
23
18
|
HistorySummary?: string;
|
|
24
|
-
|
|
25
19
|
HistoryData?: string;
|
|
26
20
|
}
|
|
27
|
-
|
|
28
21
|
export interface Range {
|
|
29
22
|
StartTime: Date | undefined;
|
|
30
|
-
|
|
31
23
|
EndTime: Date | undefined;
|
|
32
24
|
}
|
|
33
|
-
|
|
34
25
|
export interface AnomalyDetectorConfiguration {
|
|
35
26
|
ExcludedTimeRanges?: Range[];
|
|
36
|
-
|
|
37
27
|
MetricTimezone?: string;
|
|
38
28
|
}
|
|
39
|
-
|
|
40
29
|
export interface Dimension {
|
|
41
30
|
Name: string | undefined;
|
|
42
|
-
|
|
43
31
|
Value: string | undefined;
|
|
44
32
|
}
|
|
45
|
-
|
|
46
33
|
export interface Metric {
|
|
47
34
|
Namespace?: string;
|
|
48
|
-
|
|
49
35
|
MetricName?: string;
|
|
50
|
-
|
|
51
36
|
Dimensions?: Dimension[];
|
|
52
37
|
}
|
|
53
38
|
export declare type StandardUnit =
|
|
@@ -78,80 +63,52 @@ export declare type StandardUnit =
|
|
|
78
63
|
| "Terabits/Second"
|
|
79
64
|
| "Terabytes"
|
|
80
65
|
| "Terabytes/Second";
|
|
81
|
-
|
|
82
66
|
export interface MetricStat {
|
|
83
67
|
Metric: Metric | undefined;
|
|
84
|
-
|
|
85
68
|
Period: number | undefined;
|
|
86
|
-
|
|
87
69
|
Stat: string | undefined;
|
|
88
|
-
|
|
89
70
|
Unit?: StandardUnit | string;
|
|
90
71
|
}
|
|
91
|
-
|
|
92
72
|
export interface MetricDataQuery {
|
|
93
73
|
Id: string | undefined;
|
|
94
|
-
|
|
95
74
|
MetricStat?: MetricStat;
|
|
96
|
-
|
|
97
75
|
Expression?: string;
|
|
98
|
-
|
|
99
76
|
Label?: string;
|
|
100
|
-
|
|
101
77
|
ReturnData?: boolean;
|
|
102
|
-
|
|
103
78
|
Period?: number;
|
|
104
|
-
|
|
105
79
|
AccountId?: string;
|
|
106
80
|
}
|
|
107
|
-
|
|
108
81
|
export interface MetricMathAnomalyDetector {
|
|
109
82
|
MetricDataQueries?: MetricDataQuery[];
|
|
110
83
|
}
|
|
111
|
-
|
|
112
84
|
export interface SingleMetricAnomalyDetector {
|
|
113
85
|
Namespace?: string;
|
|
114
|
-
|
|
115
86
|
MetricName?: string;
|
|
116
|
-
|
|
117
87
|
Dimensions?: Dimension[];
|
|
118
|
-
|
|
119
88
|
Stat?: string;
|
|
120
89
|
}
|
|
121
90
|
export declare type AnomalyDetectorStateValue =
|
|
122
91
|
| "PENDING_TRAINING"
|
|
123
92
|
| "TRAINED"
|
|
124
93
|
| "TRAINED_INSUFFICIENT_DATA";
|
|
125
|
-
|
|
126
94
|
export interface AnomalyDetector {
|
|
127
95
|
Namespace?: string;
|
|
128
|
-
|
|
129
96
|
MetricName?: string;
|
|
130
|
-
|
|
131
97
|
Dimensions?: Dimension[];
|
|
132
|
-
|
|
133
98
|
Stat?: string;
|
|
134
|
-
|
|
135
99
|
Configuration?: AnomalyDetectorConfiguration;
|
|
136
|
-
|
|
137
100
|
StateValue?: AnomalyDetectorStateValue | string;
|
|
138
|
-
|
|
139
101
|
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector;
|
|
140
|
-
|
|
141
102
|
MetricMathAnomalyDetector?: MetricMathAnomalyDetector;
|
|
142
103
|
}
|
|
143
104
|
export declare enum AnomalyDetectorType {
|
|
144
105
|
METRIC_MATH = "METRIC_MATH",
|
|
145
106
|
SINGLE_METRIC = "SINGLE_METRIC",
|
|
146
107
|
}
|
|
147
|
-
|
|
148
108
|
export interface PartialFailure {
|
|
149
109
|
FailureResource?: string;
|
|
150
|
-
|
|
151
110
|
ExceptionType?: string;
|
|
152
|
-
|
|
153
111
|
FailureCode?: string;
|
|
154
|
-
|
|
155
112
|
FailureDescription?: string;
|
|
156
113
|
}
|
|
157
114
|
export declare type ComparisonOperator =
|
|
@@ -163,52 +120,31 @@ export declare type ComparisonOperator =
|
|
|
163
120
|
| "LessThanOrEqualToThreshold"
|
|
164
121
|
| "LessThanThreshold";
|
|
165
122
|
export declare type StateValue = "ALARM" | "INSUFFICIENT_DATA" | "OK";
|
|
166
|
-
|
|
167
123
|
export interface CompositeAlarm {
|
|
168
124
|
ActionsEnabled?: boolean;
|
|
169
|
-
|
|
170
125
|
AlarmActions?: string[];
|
|
171
|
-
|
|
172
126
|
AlarmArn?: string;
|
|
173
|
-
|
|
174
127
|
AlarmConfigurationUpdatedTimestamp?: Date;
|
|
175
|
-
|
|
176
128
|
AlarmDescription?: string;
|
|
177
|
-
|
|
178
129
|
AlarmName?: string;
|
|
179
|
-
|
|
180
130
|
AlarmRule?: string;
|
|
181
|
-
|
|
182
131
|
InsufficientDataActions?: string[];
|
|
183
|
-
|
|
184
132
|
OKActions?: string[];
|
|
185
|
-
|
|
186
133
|
StateReason?: string;
|
|
187
|
-
|
|
188
134
|
StateReasonData?: string;
|
|
189
|
-
|
|
190
135
|
StateUpdatedTimestamp?: Date;
|
|
191
|
-
|
|
192
136
|
StateValue?: StateValue | string;
|
|
193
|
-
|
|
194
137
|
StateTransitionedTimestamp?: Date;
|
|
195
|
-
|
|
196
138
|
ActionsSuppressedBy?: ActionsSuppressedBy | string;
|
|
197
|
-
|
|
198
139
|
ActionsSuppressedReason?: string;
|
|
199
|
-
|
|
200
140
|
ActionsSuppressor?: string;
|
|
201
|
-
|
|
202
141
|
ActionsSuppressorWaitPeriod?: number;
|
|
203
|
-
|
|
204
142
|
ActionsSuppressorExtensionPeriod?: number;
|
|
205
143
|
}
|
|
206
|
-
|
|
207
144
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
208
145
|
readonly name: "ConcurrentModificationException";
|
|
209
146
|
readonly $fault: "client";
|
|
210
147
|
Message?: string;
|
|
211
|
-
|
|
212
148
|
constructor(
|
|
213
149
|
opts: __ExceptionOptionType<
|
|
214
150
|
ConcurrentModificationException,
|
|
@@ -216,99 +152,69 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
216
152
|
>
|
|
217
153
|
);
|
|
218
154
|
}
|
|
219
|
-
|
|
220
155
|
export interface DashboardEntry {
|
|
221
156
|
DashboardName?: string;
|
|
222
|
-
|
|
223
157
|
DashboardArn?: string;
|
|
224
|
-
|
|
225
158
|
LastModified?: Date;
|
|
226
|
-
|
|
227
159
|
Size?: number;
|
|
228
160
|
}
|
|
229
|
-
|
|
230
161
|
export interface DashboardValidationMessage {
|
|
231
162
|
DataPath?: string;
|
|
232
|
-
|
|
233
163
|
Message?: string;
|
|
234
164
|
}
|
|
235
|
-
|
|
236
165
|
export declare class DashboardInvalidInputError extends __BaseException {
|
|
237
166
|
readonly name: "DashboardInvalidInputError";
|
|
238
167
|
readonly $fault: "client";
|
|
239
168
|
dashboardValidationMessages?: DashboardValidationMessage[];
|
|
240
|
-
|
|
241
169
|
constructor(
|
|
242
170
|
opts: __ExceptionOptionType<DashboardInvalidInputError, __BaseException>
|
|
243
171
|
);
|
|
244
172
|
}
|
|
245
|
-
|
|
246
173
|
export declare class DashboardNotFoundError extends __BaseException {
|
|
247
174
|
readonly name: "DashboardNotFoundError";
|
|
248
175
|
readonly $fault: "client";
|
|
249
|
-
|
|
250
176
|
constructor(
|
|
251
177
|
opts: __ExceptionOptionType<DashboardNotFoundError, __BaseException>
|
|
252
178
|
);
|
|
253
179
|
}
|
|
254
|
-
|
|
255
180
|
export interface Datapoint {
|
|
256
181
|
Timestamp?: Date;
|
|
257
|
-
|
|
258
182
|
SampleCount?: number;
|
|
259
|
-
|
|
260
183
|
Average?: number;
|
|
261
|
-
|
|
262
184
|
Sum?: number;
|
|
263
|
-
|
|
264
185
|
Minimum?: number;
|
|
265
|
-
|
|
266
186
|
Maximum?: number;
|
|
267
|
-
|
|
268
187
|
Unit?: StandardUnit | string;
|
|
269
|
-
|
|
270
188
|
ExtendedStatistics?: Record<string, number>;
|
|
271
189
|
}
|
|
272
190
|
export interface DeleteAlarmsInput {
|
|
273
191
|
AlarmNames: string[] | undefined;
|
|
274
192
|
}
|
|
275
|
-
|
|
276
193
|
export declare class ResourceNotFound extends __BaseException {
|
|
277
194
|
readonly name: "ResourceNotFound";
|
|
278
195
|
readonly $fault: "client";
|
|
279
|
-
|
|
280
196
|
constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
|
|
281
197
|
}
|
|
282
198
|
export interface DeleteAnomalyDetectorInput {
|
|
283
199
|
Namespace?: string;
|
|
284
|
-
|
|
285
200
|
MetricName?: string;
|
|
286
|
-
|
|
287
201
|
Dimensions?: Dimension[];
|
|
288
|
-
|
|
289
202
|
Stat?: string;
|
|
290
|
-
|
|
291
203
|
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector;
|
|
292
|
-
|
|
293
204
|
MetricMathAnomalyDetector?: MetricMathAnomalyDetector;
|
|
294
205
|
}
|
|
295
206
|
export interface DeleteAnomalyDetectorOutput {}
|
|
296
|
-
|
|
297
207
|
export declare class InternalServiceFault extends __BaseException {
|
|
298
208
|
readonly name: "InternalServiceFault";
|
|
299
209
|
readonly $fault: "server";
|
|
300
|
-
|
|
301
210
|
Message?: string;
|
|
302
|
-
|
|
303
211
|
constructor(
|
|
304
212
|
opts: __ExceptionOptionType<InternalServiceFault, __BaseException>
|
|
305
213
|
);
|
|
306
214
|
}
|
|
307
|
-
|
|
308
215
|
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
309
216
|
readonly name: "InvalidParameterCombinationException";
|
|
310
217
|
readonly $fault: "client";
|
|
311
|
-
|
|
312
218
|
constructor(
|
|
313
219
|
opts: __ExceptionOptionType<
|
|
314
220
|
InvalidParameterCombinationException,
|
|
@@ -316,20 +222,16 @@ export declare class InvalidParameterCombinationException extends __BaseExceptio
|
|
|
316
222
|
>
|
|
317
223
|
);
|
|
318
224
|
}
|
|
319
|
-
|
|
320
225
|
export declare class InvalidParameterValueException extends __BaseException {
|
|
321
226
|
readonly name: "InvalidParameterValueException";
|
|
322
227
|
readonly $fault: "client";
|
|
323
|
-
|
|
324
228
|
constructor(
|
|
325
229
|
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
326
230
|
);
|
|
327
231
|
}
|
|
328
|
-
|
|
329
232
|
export declare class MissingRequiredParameterException extends __BaseException {
|
|
330
233
|
readonly name: "MissingRequiredParameterException";
|
|
331
234
|
readonly $fault: "client";
|
|
332
|
-
|
|
333
235
|
constructor(
|
|
334
236
|
opts: __ExceptionOptionType<
|
|
335
237
|
MissingRequiredParameterException,
|
|
@@ -337,14 +239,12 @@ export declare class MissingRequiredParameterException extends __BaseException {
|
|
|
337
239
|
>
|
|
338
240
|
);
|
|
339
241
|
}
|
|
340
|
-
|
|
341
242
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
342
243
|
readonly name: "ResourceNotFoundException";
|
|
343
244
|
readonly $fault: "client";
|
|
344
245
|
ResourceType?: string;
|
|
345
246
|
ResourceId?: string;
|
|
346
247
|
Message?: string;
|
|
347
|
-
|
|
348
248
|
constructor(
|
|
349
249
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
350
250
|
);
|
|
@@ -369,50 +269,32 @@ export declare enum ScanBy {
|
|
|
369
269
|
}
|
|
370
270
|
export interface DescribeAlarmHistoryInput {
|
|
371
271
|
AlarmName?: string;
|
|
372
|
-
|
|
373
272
|
AlarmTypes?: (AlarmType | string)[];
|
|
374
|
-
|
|
375
273
|
HistoryItemType?: HistoryItemType | string;
|
|
376
|
-
|
|
377
274
|
StartDate?: Date;
|
|
378
|
-
|
|
379
275
|
EndDate?: Date;
|
|
380
|
-
|
|
381
276
|
MaxRecords?: number;
|
|
382
|
-
|
|
383
277
|
NextToken?: string;
|
|
384
|
-
|
|
385
278
|
ScanBy?: ScanBy | string;
|
|
386
279
|
}
|
|
387
280
|
export interface DescribeAlarmHistoryOutput {
|
|
388
281
|
AlarmHistoryItems?: AlarmHistoryItem[];
|
|
389
|
-
|
|
390
282
|
NextToken?: string;
|
|
391
283
|
}
|
|
392
|
-
|
|
393
284
|
export declare class InvalidNextToken extends __BaseException {
|
|
394
285
|
readonly name: "InvalidNextToken";
|
|
395
286
|
readonly $fault: "client";
|
|
396
|
-
|
|
397
287
|
constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
|
|
398
288
|
}
|
|
399
289
|
export interface DescribeAlarmsInput {
|
|
400
290
|
AlarmNames?: string[];
|
|
401
|
-
|
|
402
291
|
AlarmNamePrefix?: string;
|
|
403
|
-
|
|
404
292
|
AlarmTypes?: (AlarmType | string)[];
|
|
405
|
-
|
|
406
293
|
ChildrenOfAlarmName?: string;
|
|
407
|
-
|
|
408
294
|
ParentsOfAlarmName?: string;
|
|
409
|
-
|
|
410
295
|
StateValue?: StateValue | string;
|
|
411
|
-
|
|
412
296
|
ActionPrefix?: string;
|
|
413
|
-
|
|
414
297
|
MaxRecords?: number;
|
|
415
|
-
|
|
416
298
|
NextToken?: string;
|
|
417
299
|
}
|
|
418
300
|
export declare type Statistic =
|
|
@@ -421,82 +303,47 @@ export declare type Statistic =
|
|
|
421
303
|
| "Minimum"
|
|
422
304
|
| "SampleCount"
|
|
423
305
|
| "Sum";
|
|
424
|
-
|
|
425
306
|
export interface MetricAlarm {
|
|
426
307
|
AlarmName?: string;
|
|
427
|
-
|
|
428
308
|
AlarmArn?: string;
|
|
429
|
-
|
|
430
309
|
AlarmDescription?: string;
|
|
431
|
-
|
|
432
310
|
AlarmConfigurationUpdatedTimestamp?: Date;
|
|
433
|
-
|
|
434
311
|
ActionsEnabled?: boolean;
|
|
435
|
-
|
|
436
312
|
OKActions?: string[];
|
|
437
|
-
|
|
438
313
|
AlarmActions?: string[];
|
|
439
|
-
|
|
440
314
|
InsufficientDataActions?: string[];
|
|
441
|
-
|
|
442
315
|
StateValue?: StateValue | string;
|
|
443
|
-
|
|
444
316
|
StateReason?: string;
|
|
445
|
-
|
|
446
317
|
StateReasonData?: string;
|
|
447
|
-
|
|
448
318
|
StateUpdatedTimestamp?: Date;
|
|
449
|
-
|
|
450
319
|
MetricName?: string;
|
|
451
|
-
|
|
452
320
|
Namespace?: string;
|
|
453
|
-
|
|
454
321
|
Statistic?: Statistic | string;
|
|
455
|
-
|
|
456
322
|
ExtendedStatistic?: string;
|
|
457
|
-
|
|
458
323
|
Dimensions?: Dimension[];
|
|
459
|
-
|
|
460
324
|
Period?: number;
|
|
461
|
-
|
|
462
325
|
Unit?: StandardUnit | string;
|
|
463
|
-
|
|
464
326
|
EvaluationPeriods?: number;
|
|
465
|
-
|
|
466
327
|
DatapointsToAlarm?: number;
|
|
467
|
-
|
|
468
328
|
Threshold?: number;
|
|
469
|
-
|
|
470
329
|
ComparisonOperator?: ComparisonOperator | string;
|
|
471
|
-
|
|
472
330
|
TreatMissingData?: string;
|
|
473
|
-
|
|
474
331
|
EvaluateLowSampleCountPercentile?: string;
|
|
475
|
-
|
|
476
332
|
Metrics?: MetricDataQuery[];
|
|
477
|
-
|
|
478
333
|
ThresholdMetricId?: string;
|
|
479
334
|
}
|
|
480
335
|
export interface DescribeAlarmsOutput {
|
|
481
336
|
CompositeAlarms?: CompositeAlarm[];
|
|
482
|
-
|
|
483
337
|
MetricAlarms?: MetricAlarm[];
|
|
484
|
-
|
|
485
338
|
NextToken?: string;
|
|
486
339
|
}
|
|
487
340
|
export interface DescribeAlarmsForMetricInput {
|
|
488
341
|
MetricName: string | undefined;
|
|
489
|
-
|
|
490
342
|
Namespace: string | undefined;
|
|
491
|
-
|
|
492
343
|
Statistic?: Statistic | string;
|
|
493
|
-
|
|
494
344
|
ExtendedStatistic?: string;
|
|
495
|
-
|
|
496
345
|
Dimensions?: Dimension[];
|
|
497
|
-
|
|
498
346
|
Period?: number;
|
|
499
|
-
|
|
500
347
|
Unit?: StandardUnit | string;
|
|
501
348
|
}
|
|
502
349
|
export interface DescribeAlarmsForMetricOutput {
|
|
@@ -504,48 +351,33 @@ export interface DescribeAlarmsForMetricOutput {
|
|
|
504
351
|
}
|
|
505
352
|
export interface DescribeAnomalyDetectorsInput {
|
|
506
353
|
NextToken?: string;
|
|
507
|
-
|
|
508
354
|
MaxResults?: number;
|
|
509
|
-
|
|
510
355
|
Namespace?: string;
|
|
511
|
-
|
|
512
356
|
MetricName?: string;
|
|
513
|
-
|
|
514
357
|
Dimensions?: Dimension[];
|
|
515
|
-
|
|
516
358
|
AnomalyDetectorTypes?: (AnomalyDetectorType | string)[];
|
|
517
359
|
}
|
|
518
360
|
export interface DescribeAnomalyDetectorsOutput {
|
|
519
361
|
AnomalyDetectors?: AnomalyDetector[];
|
|
520
|
-
|
|
521
362
|
NextToken?: string;
|
|
522
363
|
}
|
|
523
364
|
export interface DescribeInsightRulesInput {
|
|
524
365
|
NextToken?: string;
|
|
525
|
-
|
|
526
366
|
MaxResults?: number;
|
|
527
367
|
}
|
|
528
|
-
|
|
529
368
|
export interface InsightRule {
|
|
530
369
|
Name: string | undefined;
|
|
531
|
-
|
|
532
370
|
State: string | undefined;
|
|
533
|
-
|
|
534
371
|
Schema: string | undefined;
|
|
535
|
-
|
|
536
372
|
Definition: string | undefined;
|
|
537
|
-
|
|
538
373
|
ManagedRule?: boolean;
|
|
539
374
|
}
|
|
540
375
|
export interface DescribeInsightRulesOutput {
|
|
541
376
|
NextToken?: string;
|
|
542
|
-
|
|
543
377
|
InsightRules?: InsightRule[];
|
|
544
378
|
}
|
|
545
|
-
|
|
546
379
|
export interface DimensionFilter {
|
|
547
380
|
Name: string | undefined;
|
|
548
|
-
|
|
549
381
|
Value?: string;
|
|
550
382
|
}
|
|
551
383
|
export interface DisableAlarmActionsInput {
|
|
@@ -566,12 +398,10 @@ export interface EnableInsightRulesInput {
|
|
|
566
398
|
export interface EnableInsightRulesOutput {
|
|
567
399
|
Failures?: PartialFailure[];
|
|
568
400
|
}
|
|
569
|
-
|
|
570
401
|
export declare class LimitExceededException extends __BaseException {
|
|
571
402
|
readonly name: "LimitExceededException";
|
|
572
403
|
readonly $fault: "client";
|
|
573
404
|
Message?: string;
|
|
574
|
-
|
|
575
405
|
constructor(
|
|
576
406
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
577
407
|
);
|
|
@@ -581,94 +411,59 @@ export interface GetDashboardInput {
|
|
|
581
411
|
}
|
|
582
412
|
export interface GetDashboardOutput {
|
|
583
413
|
DashboardArn?: string;
|
|
584
|
-
|
|
585
414
|
DashboardBody?: string;
|
|
586
|
-
|
|
587
415
|
DashboardName?: string;
|
|
588
416
|
}
|
|
589
417
|
export interface GetInsightRuleReportInput {
|
|
590
418
|
RuleName: string | undefined;
|
|
591
|
-
|
|
592
419
|
StartTime: Date | undefined;
|
|
593
|
-
|
|
594
420
|
EndTime: Date | undefined;
|
|
595
|
-
|
|
596
421
|
Period: number | undefined;
|
|
597
|
-
|
|
598
422
|
MaxContributorCount?: number;
|
|
599
|
-
|
|
600
423
|
Metrics?: string[];
|
|
601
|
-
|
|
602
424
|
OrderBy?: string;
|
|
603
425
|
}
|
|
604
|
-
|
|
605
426
|
export interface InsightRuleContributorDatapoint {
|
|
606
427
|
Timestamp: Date | undefined;
|
|
607
|
-
|
|
608
428
|
ApproximateValue: number | undefined;
|
|
609
429
|
}
|
|
610
|
-
|
|
611
430
|
export interface InsightRuleContributor {
|
|
612
431
|
Keys: string[] | undefined;
|
|
613
|
-
|
|
614
432
|
ApproximateAggregateValue: number | undefined;
|
|
615
|
-
|
|
616
433
|
Datapoints: InsightRuleContributorDatapoint[] | undefined;
|
|
617
434
|
}
|
|
618
|
-
|
|
619
435
|
export interface InsightRuleMetricDatapoint {
|
|
620
436
|
Timestamp: Date | undefined;
|
|
621
|
-
|
|
622
437
|
UniqueContributors?: number;
|
|
623
|
-
|
|
624
438
|
MaxContributorValue?: number;
|
|
625
|
-
|
|
626
439
|
SampleCount?: number;
|
|
627
|
-
|
|
628
440
|
Average?: number;
|
|
629
|
-
|
|
630
441
|
Sum?: number;
|
|
631
|
-
|
|
632
442
|
Minimum?: number;
|
|
633
|
-
|
|
634
443
|
Maximum?: number;
|
|
635
444
|
}
|
|
636
445
|
export interface GetInsightRuleReportOutput {
|
|
637
446
|
KeyLabels?: string[];
|
|
638
|
-
|
|
639
447
|
AggregationStatistic?: string;
|
|
640
|
-
|
|
641
448
|
AggregateValue?: number;
|
|
642
|
-
|
|
643
449
|
ApproximateUniqueCount?: number;
|
|
644
|
-
|
|
645
450
|
Contributors?: InsightRuleContributor[];
|
|
646
|
-
|
|
647
451
|
MetricDatapoints?: InsightRuleMetricDatapoint[];
|
|
648
452
|
}
|
|
649
|
-
|
|
650
453
|
export interface LabelOptions {
|
|
651
454
|
Timezone?: string;
|
|
652
455
|
}
|
|
653
456
|
export interface GetMetricDataInput {
|
|
654
457
|
MetricDataQueries: MetricDataQuery[] | undefined;
|
|
655
|
-
|
|
656
458
|
StartTime: Date | undefined;
|
|
657
|
-
|
|
658
459
|
EndTime: Date | undefined;
|
|
659
|
-
|
|
660
460
|
NextToken?: string;
|
|
661
|
-
|
|
662
461
|
ScanBy?: ScanBy | string;
|
|
663
|
-
|
|
664
462
|
MaxDatapoints?: number;
|
|
665
|
-
|
|
666
463
|
LabelOptions?: LabelOptions;
|
|
667
464
|
}
|
|
668
|
-
|
|
669
465
|
export interface MessageData {
|
|
670
466
|
Code?: string;
|
|
671
|
-
|
|
672
467
|
Value?: string;
|
|
673
468
|
}
|
|
674
469
|
export declare enum StatusCode {
|
|
@@ -676,55 +471,37 @@ export declare enum StatusCode {
|
|
|
676
471
|
INTERNAL_ERROR = "InternalError",
|
|
677
472
|
PARTIAL_DATA = "PartialData",
|
|
678
473
|
}
|
|
679
|
-
|
|
680
474
|
export interface MetricDataResult {
|
|
681
475
|
Id?: string;
|
|
682
|
-
|
|
683
476
|
Label?: string;
|
|
684
|
-
|
|
685
477
|
Timestamps?: Date[];
|
|
686
|
-
|
|
687
478
|
Values?: number[];
|
|
688
|
-
|
|
689
479
|
StatusCode?: StatusCode | string;
|
|
690
|
-
|
|
691
480
|
Messages?: MessageData[];
|
|
692
481
|
}
|
|
693
482
|
export interface GetMetricDataOutput {
|
|
694
483
|
MetricDataResults?: MetricDataResult[];
|
|
695
|
-
|
|
696
484
|
NextToken?: string;
|
|
697
|
-
|
|
698
485
|
Messages?: MessageData[];
|
|
699
486
|
}
|
|
700
487
|
export interface GetMetricStatisticsInput {
|
|
701
488
|
Namespace: string | undefined;
|
|
702
|
-
|
|
703
489
|
MetricName: string | undefined;
|
|
704
|
-
|
|
705
490
|
Dimensions?: Dimension[];
|
|
706
|
-
|
|
707
491
|
StartTime: Date | undefined;
|
|
708
|
-
|
|
709
492
|
EndTime: Date | undefined;
|
|
710
|
-
|
|
711
493
|
Period: number | undefined;
|
|
712
|
-
|
|
713
494
|
Statistics?: (Statistic | string)[];
|
|
714
|
-
|
|
715
495
|
ExtendedStatistics?: string[];
|
|
716
|
-
|
|
717
496
|
Unit?: StandardUnit | string;
|
|
718
497
|
}
|
|
719
498
|
export interface GetMetricStatisticsOutput {
|
|
720
499
|
Label?: string;
|
|
721
|
-
|
|
722
500
|
Datapoints?: Datapoint[];
|
|
723
501
|
}
|
|
724
502
|
export interface GetMetricStreamInput {
|
|
725
503
|
Name: string | undefined;
|
|
726
504
|
}
|
|
727
|
-
|
|
728
505
|
export interface MetricStreamFilter {
|
|
729
506
|
Namespace?: string;
|
|
730
507
|
}
|
|
@@ -732,44 +509,29 @@ export declare enum MetricStreamOutputFormat {
|
|
|
732
509
|
JSON = "json",
|
|
733
510
|
OPEN_TELEMETRY_0_7 = "opentelemetry0.7",
|
|
734
511
|
}
|
|
735
|
-
|
|
736
512
|
export interface MetricStreamStatisticsMetric {
|
|
737
513
|
Namespace: string | undefined;
|
|
738
|
-
|
|
739
514
|
MetricName: string | undefined;
|
|
740
515
|
}
|
|
741
|
-
|
|
742
516
|
export interface MetricStreamStatisticsConfiguration {
|
|
743
517
|
IncludeMetrics: MetricStreamStatisticsMetric[] | undefined;
|
|
744
|
-
|
|
745
518
|
AdditionalStatistics: string[] | undefined;
|
|
746
519
|
}
|
|
747
520
|
export interface GetMetricStreamOutput {
|
|
748
521
|
Arn?: string;
|
|
749
|
-
|
|
750
522
|
Name?: string;
|
|
751
|
-
|
|
752
523
|
IncludeFilters?: MetricStreamFilter[];
|
|
753
|
-
|
|
754
524
|
ExcludeFilters?: MetricStreamFilter[];
|
|
755
|
-
|
|
756
525
|
FirehoseArn?: string;
|
|
757
|
-
|
|
758
526
|
RoleArn?: string;
|
|
759
|
-
|
|
760
527
|
State?: string;
|
|
761
|
-
|
|
762
528
|
CreationDate?: Date;
|
|
763
|
-
|
|
764
529
|
LastUpdateDate?: Date;
|
|
765
|
-
|
|
766
530
|
OutputFormat?: MetricStreamOutputFormat | string;
|
|
767
|
-
|
|
768
531
|
StatisticsConfigurations?: MetricStreamStatisticsConfiguration[];
|
|
769
532
|
}
|
|
770
533
|
export interface GetMetricWidgetImageInput {
|
|
771
534
|
MetricWidget: string | undefined;
|
|
772
|
-
|
|
773
535
|
OutputFormat?: string;
|
|
774
536
|
}
|
|
775
537
|
export interface GetMetricWidgetImageOutput {
|
|
@@ -777,38 +539,28 @@ export interface GetMetricWidgetImageOutput {
|
|
|
777
539
|
}
|
|
778
540
|
export interface ListDashboardsInput {
|
|
779
541
|
DashboardNamePrefix?: string;
|
|
780
|
-
|
|
781
542
|
NextToken?: string;
|
|
782
543
|
}
|
|
783
544
|
export interface ListDashboardsOutput {
|
|
784
545
|
DashboardEntries?: DashboardEntry[];
|
|
785
|
-
|
|
786
546
|
NextToken?: string;
|
|
787
547
|
}
|
|
788
548
|
export interface ListManagedInsightRulesInput {
|
|
789
549
|
ResourceARN: string | undefined;
|
|
790
|
-
|
|
791
550
|
NextToken?: string;
|
|
792
|
-
|
|
793
551
|
MaxResults?: number;
|
|
794
552
|
}
|
|
795
|
-
|
|
796
553
|
export interface ManagedRuleState {
|
|
797
554
|
RuleName: string | undefined;
|
|
798
|
-
|
|
799
555
|
State: string | undefined;
|
|
800
556
|
}
|
|
801
|
-
|
|
802
557
|
export interface ManagedRuleDescription {
|
|
803
558
|
TemplateName?: string;
|
|
804
|
-
|
|
805
559
|
ResourceARN?: string;
|
|
806
|
-
|
|
807
560
|
RuleState?: ManagedRuleState;
|
|
808
561
|
}
|
|
809
562
|
export interface ListManagedInsightRulesOutput {
|
|
810
563
|
ManagedRules?: ManagedRuleDescription[];
|
|
811
|
-
|
|
812
564
|
NextToken?: string;
|
|
813
565
|
}
|
|
814
566
|
export declare enum RecentlyActive {
|
|
@@ -816,53 +568,37 @@ export declare enum RecentlyActive {
|
|
|
816
568
|
}
|
|
817
569
|
export interface ListMetricsInput {
|
|
818
570
|
Namespace?: string;
|
|
819
|
-
|
|
820
571
|
MetricName?: string;
|
|
821
|
-
|
|
822
572
|
Dimensions?: DimensionFilter[];
|
|
823
|
-
|
|
824
573
|
NextToken?: string;
|
|
825
|
-
|
|
826
574
|
RecentlyActive?: RecentlyActive | string;
|
|
827
575
|
}
|
|
828
576
|
export interface ListMetricsOutput {
|
|
829
577
|
Metrics?: Metric[];
|
|
830
|
-
|
|
831
578
|
NextToken?: string;
|
|
832
579
|
}
|
|
833
580
|
export interface ListMetricStreamsInput {
|
|
834
581
|
NextToken?: string;
|
|
835
|
-
|
|
836
582
|
MaxResults?: number;
|
|
837
583
|
}
|
|
838
|
-
|
|
839
584
|
export interface MetricStreamEntry {
|
|
840
585
|
Arn?: string;
|
|
841
|
-
|
|
842
586
|
CreationDate?: Date;
|
|
843
|
-
|
|
844
587
|
LastUpdateDate?: Date;
|
|
845
|
-
|
|
846
588
|
Name?: string;
|
|
847
|
-
|
|
848
589
|
FirehoseArn?: string;
|
|
849
|
-
|
|
850
590
|
State?: string;
|
|
851
|
-
|
|
852
591
|
OutputFormat?: MetricStreamOutputFormat | string;
|
|
853
592
|
}
|
|
854
593
|
export interface ListMetricStreamsOutput {
|
|
855
594
|
NextToken?: string;
|
|
856
|
-
|
|
857
595
|
Entries?: MetricStreamEntry[];
|
|
858
596
|
}
|
|
859
597
|
export interface ListTagsForResourceInput {
|
|
860
598
|
ResourceARN: string | undefined;
|
|
861
599
|
}
|
|
862
|
-
|
|
863
600
|
export interface Tag {
|
|
864
601
|
Key: string | undefined;
|
|
865
|
-
|
|
866
602
|
Value: string | undefined;
|
|
867
603
|
}
|
|
868
604
|
export interface ListTagsForResourceOutput {
|
|
@@ -870,53 +606,34 @@ export interface ListTagsForResourceOutput {
|
|
|
870
606
|
}
|
|
871
607
|
export interface PutAnomalyDetectorInput {
|
|
872
608
|
Namespace?: string;
|
|
873
|
-
|
|
874
609
|
MetricName?: string;
|
|
875
|
-
|
|
876
610
|
Dimensions?: Dimension[];
|
|
877
|
-
|
|
878
611
|
Stat?: string;
|
|
879
|
-
|
|
880
612
|
Configuration?: AnomalyDetectorConfiguration;
|
|
881
|
-
|
|
882
613
|
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector;
|
|
883
|
-
|
|
884
614
|
MetricMathAnomalyDetector?: MetricMathAnomalyDetector;
|
|
885
615
|
}
|
|
886
616
|
export interface PutAnomalyDetectorOutput {}
|
|
887
|
-
|
|
888
617
|
export declare class LimitExceededFault extends __BaseException {
|
|
889
618
|
readonly name: "LimitExceededFault";
|
|
890
619
|
readonly $fault: "client";
|
|
891
|
-
|
|
892
620
|
constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
|
|
893
621
|
}
|
|
894
622
|
export interface PutCompositeAlarmInput {
|
|
895
623
|
ActionsEnabled?: boolean;
|
|
896
|
-
|
|
897
624
|
AlarmActions?: string[];
|
|
898
|
-
|
|
899
625
|
AlarmDescription?: string;
|
|
900
|
-
|
|
901
626
|
AlarmName: string | undefined;
|
|
902
|
-
|
|
903
627
|
AlarmRule: string | undefined;
|
|
904
|
-
|
|
905
628
|
InsufficientDataActions?: string[];
|
|
906
|
-
|
|
907
629
|
OKActions?: string[];
|
|
908
|
-
|
|
909
630
|
Tags?: Tag[];
|
|
910
|
-
|
|
911
631
|
ActionsSuppressor?: string;
|
|
912
|
-
|
|
913
632
|
ActionsSuppressorWaitPeriod?: number;
|
|
914
|
-
|
|
915
633
|
ActionsSuppressorExtensionPeriod?: number;
|
|
916
634
|
}
|
|
917
635
|
export interface PutDashboardInput {
|
|
918
636
|
DashboardName: string | undefined;
|
|
919
|
-
|
|
920
637
|
DashboardBody: string | undefined;
|
|
921
638
|
}
|
|
922
639
|
export interface PutDashboardOutput {
|
|
@@ -924,20 +641,14 @@ export interface PutDashboardOutput {
|
|
|
924
641
|
}
|
|
925
642
|
export interface PutInsightRuleInput {
|
|
926
643
|
RuleName: string | undefined;
|
|
927
|
-
|
|
928
644
|
RuleState?: string;
|
|
929
|
-
|
|
930
645
|
RuleDefinition: string | undefined;
|
|
931
|
-
|
|
932
646
|
Tags?: Tag[];
|
|
933
647
|
}
|
|
934
648
|
export interface PutInsightRuleOutput {}
|
|
935
|
-
|
|
936
649
|
export interface ManagedRule {
|
|
937
650
|
TemplateName: string | undefined;
|
|
938
|
-
|
|
939
651
|
ResourceARN: string | undefined;
|
|
940
|
-
|
|
941
652
|
Tags?: Tag[];
|
|
942
653
|
}
|
|
943
654
|
export interface PutManagedInsightRulesInput {
|
|
@@ -948,118 +659,71 @@ export interface PutManagedInsightRulesOutput {
|
|
|
948
659
|
}
|
|
949
660
|
export interface PutMetricAlarmInput {
|
|
950
661
|
AlarmName: string | undefined;
|
|
951
|
-
|
|
952
662
|
AlarmDescription?: string;
|
|
953
|
-
|
|
954
663
|
ActionsEnabled?: boolean;
|
|
955
|
-
|
|
956
664
|
OKActions?: string[];
|
|
957
|
-
|
|
958
665
|
AlarmActions?: string[];
|
|
959
|
-
|
|
960
666
|
InsufficientDataActions?: string[];
|
|
961
|
-
|
|
962
667
|
MetricName?: string;
|
|
963
|
-
|
|
964
668
|
Namespace?: string;
|
|
965
|
-
|
|
966
669
|
Statistic?: Statistic | string;
|
|
967
|
-
|
|
968
670
|
ExtendedStatistic?: string;
|
|
969
|
-
|
|
970
671
|
Dimensions?: Dimension[];
|
|
971
|
-
|
|
972
672
|
Period?: number;
|
|
973
|
-
|
|
974
673
|
Unit?: StandardUnit | string;
|
|
975
|
-
|
|
976
674
|
EvaluationPeriods: number | undefined;
|
|
977
|
-
|
|
978
675
|
DatapointsToAlarm?: number;
|
|
979
|
-
|
|
980
676
|
Threshold?: number;
|
|
981
|
-
|
|
982
677
|
ComparisonOperator: ComparisonOperator | string | undefined;
|
|
983
|
-
|
|
984
678
|
TreatMissingData?: string;
|
|
985
|
-
|
|
986
679
|
EvaluateLowSampleCountPercentile?: string;
|
|
987
|
-
|
|
988
680
|
Metrics?: MetricDataQuery[];
|
|
989
|
-
|
|
990
681
|
Tags?: Tag[];
|
|
991
|
-
|
|
992
682
|
ThresholdMetricId?: string;
|
|
993
683
|
}
|
|
994
|
-
|
|
995
684
|
export interface StatisticSet {
|
|
996
685
|
SampleCount: number | undefined;
|
|
997
|
-
|
|
998
686
|
Sum: number | undefined;
|
|
999
|
-
|
|
1000
687
|
Minimum: number | undefined;
|
|
1001
|
-
|
|
1002
688
|
Maximum: number | undefined;
|
|
1003
689
|
}
|
|
1004
|
-
|
|
1005
690
|
export interface MetricDatum {
|
|
1006
691
|
MetricName: string | undefined;
|
|
1007
|
-
|
|
1008
692
|
Dimensions?: Dimension[];
|
|
1009
|
-
|
|
1010
693
|
Timestamp?: Date;
|
|
1011
|
-
|
|
1012
694
|
Value?: number;
|
|
1013
|
-
|
|
1014
695
|
StatisticValues?: StatisticSet;
|
|
1015
|
-
|
|
1016
696
|
Values?: number[];
|
|
1017
|
-
|
|
1018
697
|
Counts?: number[];
|
|
1019
|
-
|
|
1020
698
|
Unit?: StandardUnit | string;
|
|
1021
|
-
|
|
1022
699
|
StorageResolution?: number;
|
|
1023
700
|
}
|
|
1024
701
|
export interface PutMetricDataInput {
|
|
1025
702
|
Namespace: string | undefined;
|
|
1026
|
-
|
|
1027
703
|
MetricData: MetricDatum[] | undefined;
|
|
1028
704
|
}
|
|
1029
705
|
export interface PutMetricStreamInput {
|
|
1030
706
|
Name: string | undefined;
|
|
1031
|
-
|
|
1032
707
|
IncludeFilters?: MetricStreamFilter[];
|
|
1033
|
-
|
|
1034
708
|
ExcludeFilters?: MetricStreamFilter[];
|
|
1035
|
-
|
|
1036
709
|
FirehoseArn: string | undefined;
|
|
1037
|
-
|
|
1038
710
|
RoleArn: string | undefined;
|
|
1039
|
-
|
|
1040
711
|
OutputFormat: MetricStreamOutputFormat | string | undefined;
|
|
1041
|
-
|
|
1042
712
|
Tags?: Tag[];
|
|
1043
|
-
|
|
1044
713
|
StatisticsConfigurations?: MetricStreamStatisticsConfiguration[];
|
|
1045
714
|
}
|
|
1046
715
|
export interface PutMetricStreamOutput {
|
|
1047
716
|
Arn?: string;
|
|
1048
717
|
}
|
|
1049
|
-
|
|
1050
718
|
export declare class InvalidFormatFault extends __BaseException {
|
|
1051
719
|
readonly name: "InvalidFormatFault";
|
|
1052
720
|
readonly $fault: "client";
|
|
1053
|
-
|
|
1054
721
|
constructor(opts: __ExceptionOptionType<InvalidFormatFault, __BaseException>);
|
|
1055
722
|
}
|
|
1056
723
|
export interface SetAlarmStateInput {
|
|
1057
724
|
AlarmName: string | undefined;
|
|
1058
|
-
|
|
1059
725
|
StateValue: StateValue | string | undefined;
|
|
1060
|
-
|
|
1061
726
|
StateReason: string | undefined;
|
|
1062
|
-
|
|
1063
727
|
StateReasonData?: string;
|
|
1064
728
|
}
|
|
1065
729
|
export interface StartMetricStreamsInput {
|
|
@@ -1072,399 +736,294 @@ export interface StopMetricStreamsInput {
|
|
|
1072
736
|
export interface StopMetricStreamsOutput {}
|
|
1073
737
|
export interface TagResourceInput {
|
|
1074
738
|
ResourceARN: string | undefined;
|
|
1075
|
-
|
|
1076
739
|
Tags: Tag[] | undefined;
|
|
1077
740
|
}
|
|
1078
741
|
export interface TagResourceOutput {}
|
|
1079
742
|
export interface UntagResourceInput {
|
|
1080
743
|
ResourceARN: string | undefined;
|
|
1081
|
-
|
|
1082
744
|
TagKeys: string[] | undefined;
|
|
1083
745
|
}
|
|
1084
746
|
export interface UntagResourceOutput {}
|
|
1085
|
-
|
|
1086
747
|
export declare const AlarmHistoryItemFilterSensitiveLog: (
|
|
1087
748
|
obj: AlarmHistoryItem
|
|
1088
749
|
) => any;
|
|
1089
|
-
|
|
1090
750
|
export declare const RangeFilterSensitiveLog: (obj: Range) => any;
|
|
1091
|
-
|
|
1092
751
|
export declare const AnomalyDetectorConfigurationFilterSensitiveLog: (
|
|
1093
752
|
obj: AnomalyDetectorConfiguration
|
|
1094
753
|
) => any;
|
|
1095
|
-
|
|
1096
754
|
export declare const DimensionFilterSensitiveLog: (obj: Dimension) => any;
|
|
1097
|
-
|
|
1098
755
|
export declare const MetricFilterSensitiveLog: (obj: Metric) => any;
|
|
1099
|
-
|
|
1100
756
|
export declare const MetricStatFilterSensitiveLog: (obj: MetricStat) => any;
|
|
1101
|
-
|
|
1102
757
|
export declare const MetricDataQueryFilterSensitiveLog: (
|
|
1103
758
|
obj: MetricDataQuery
|
|
1104
759
|
) => any;
|
|
1105
|
-
|
|
1106
760
|
export declare const MetricMathAnomalyDetectorFilterSensitiveLog: (
|
|
1107
761
|
obj: MetricMathAnomalyDetector
|
|
1108
762
|
) => any;
|
|
1109
|
-
|
|
1110
763
|
export declare const SingleMetricAnomalyDetectorFilterSensitiveLog: (
|
|
1111
764
|
obj: SingleMetricAnomalyDetector
|
|
1112
765
|
) => any;
|
|
1113
|
-
|
|
1114
766
|
export declare const AnomalyDetectorFilterSensitiveLog: (
|
|
1115
767
|
obj: AnomalyDetector
|
|
1116
768
|
) => any;
|
|
1117
|
-
|
|
1118
769
|
export declare const PartialFailureFilterSensitiveLog: (
|
|
1119
770
|
obj: PartialFailure
|
|
1120
771
|
) => any;
|
|
1121
|
-
|
|
1122
772
|
export declare const CompositeAlarmFilterSensitiveLog: (
|
|
1123
773
|
obj: CompositeAlarm
|
|
1124
774
|
) => any;
|
|
1125
|
-
|
|
1126
775
|
export declare const DashboardEntryFilterSensitiveLog: (
|
|
1127
776
|
obj: DashboardEntry
|
|
1128
777
|
) => any;
|
|
1129
|
-
|
|
1130
778
|
export declare const DashboardValidationMessageFilterSensitiveLog: (
|
|
1131
779
|
obj: DashboardValidationMessage
|
|
1132
780
|
) => any;
|
|
1133
|
-
|
|
1134
781
|
export declare const DatapointFilterSensitiveLog: (obj: Datapoint) => any;
|
|
1135
|
-
|
|
1136
782
|
export declare const DeleteAlarmsInputFilterSensitiveLog: (
|
|
1137
783
|
obj: DeleteAlarmsInput
|
|
1138
784
|
) => any;
|
|
1139
|
-
|
|
1140
785
|
export declare const DeleteAnomalyDetectorInputFilterSensitiveLog: (
|
|
1141
786
|
obj: DeleteAnomalyDetectorInput
|
|
1142
787
|
) => any;
|
|
1143
|
-
|
|
1144
788
|
export declare const DeleteAnomalyDetectorOutputFilterSensitiveLog: (
|
|
1145
789
|
obj: DeleteAnomalyDetectorOutput
|
|
1146
790
|
) => any;
|
|
1147
|
-
|
|
1148
791
|
export declare const DeleteDashboardsInputFilterSensitiveLog: (
|
|
1149
792
|
obj: DeleteDashboardsInput
|
|
1150
793
|
) => any;
|
|
1151
|
-
|
|
1152
794
|
export declare const DeleteDashboardsOutputFilterSensitiveLog: (
|
|
1153
795
|
obj: DeleteDashboardsOutput
|
|
1154
796
|
) => any;
|
|
1155
|
-
|
|
1156
797
|
export declare const DeleteInsightRulesInputFilterSensitiveLog: (
|
|
1157
798
|
obj: DeleteInsightRulesInput
|
|
1158
799
|
) => any;
|
|
1159
|
-
|
|
1160
800
|
export declare const DeleteInsightRulesOutputFilterSensitiveLog: (
|
|
1161
801
|
obj: DeleteInsightRulesOutput
|
|
1162
802
|
) => any;
|
|
1163
|
-
|
|
1164
803
|
export declare const DeleteMetricStreamInputFilterSensitiveLog: (
|
|
1165
804
|
obj: DeleteMetricStreamInput
|
|
1166
805
|
) => any;
|
|
1167
|
-
|
|
1168
806
|
export declare const DeleteMetricStreamOutputFilterSensitiveLog: (
|
|
1169
807
|
obj: DeleteMetricStreamOutput
|
|
1170
808
|
) => any;
|
|
1171
|
-
|
|
1172
809
|
export declare const DescribeAlarmHistoryInputFilterSensitiveLog: (
|
|
1173
810
|
obj: DescribeAlarmHistoryInput
|
|
1174
811
|
) => any;
|
|
1175
|
-
|
|
1176
812
|
export declare const DescribeAlarmHistoryOutputFilterSensitiveLog: (
|
|
1177
813
|
obj: DescribeAlarmHistoryOutput
|
|
1178
814
|
) => any;
|
|
1179
|
-
|
|
1180
815
|
export declare const DescribeAlarmsInputFilterSensitiveLog: (
|
|
1181
816
|
obj: DescribeAlarmsInput
|
|
1182
817
|
) => any;
|
|
1183
|
-
|
|
1184
818
|
export declare const MetricAlarmFilterSensitiveLog: (obj: MetricAlarm) => any;
|
|
1185
|
-
|
|
1186
819
|
export declare const DescribeAlarmsOutputFilterSensitiveLog: (
|
|
1187
820
|
obj: DescribeAlarmsOutput
|
|
1188
821
|
) => any;
|
|
1189
|
-
|
|
1190
822
|
export declare const DescribeAlarmsForMetricInputFilterSensitiveLog: (
|
|
1191
823
|
obj: DescribeAlarmsForMetricInput
|
|
1192
824
|
) => any;
|
|
1193
|
-
|
|
1194
825
|
export declare const DescribeAlarmsForMetricOutputFilterSensitiveLog: (
|
|
1195
826
|
obj: DescribeAlarmsForMetricOutput
|
|
1196
827
|
) => any;
|
|
1197
|
-
|
|
1198
828
|
export declare const DescribeAnomalyDetectorsInputFilterSensitiveLog: (
|
|
1199
829
|
obj: DescribeAnomalyDetectorsInput
|
|
1200
830
|
) => any;
|
|
1201
|
-
|
|
1202
831
|
export declare const DescribeAnomalyDetectorsOutputFilterSensitiveLog: (
|
|
1203
832
|
obj: DescribeAnomalyDetectorsOutput
|
|
1204
833
|
) => any;
|
|
1205
|
-
|
|
1206
834
|
export declare const DescribeInsightRulesInputFilterSensitiveLog: (
|
|
1207
835
|
obj: DescribeInsightRulesInput
|
|
1208
836
|
) => any;
|
|
1209
|
-
|
|
1210
837
|
export declare const InsightRuleFilterSensitiveLog: (obj: InsightRule) => any;
|
|
1211
|
-
|
|
1212
838
|
export declare const DescribeInsightRulesOutputFilterSensitiveLog: (
|
|
1213
839
|
obj: DescribeInsightRulesOutput
|
|
1214
840
|
) => any;
|
|
1215
|
-
|
|
1216
841
|
export declare const DimensionFilterFilterSensitiveLog: (
|
|
1217
842
|
obj: DimensionFilter
|
|
1218
843
|
) => any;
|
|
1219
|
-
|
|
1220
844
|
export declare const DisableAlarmActionsInputFilterSensitiveLog: (
|
|
1221
845
|
obj: DisableAlarmActionsInput
|
|
1222
846
|
) => any;
|
|
1223
|
-
|
|
1224
847
|
export declare const DisableInsightRulesInputFilterSensitiveLog: (
|
|
1225
848
|
obj: DisableInsightRulesInput
|
|
1226
849
|
) => any;
|
|
1227
|
-
|
|
1228
850
|
export declare const DisableInsightRulesOutputFilterSensitiveLog: (
|
|
1229
851
|
obj: DisableInsightRulesOutput
|
|
1230
852
|
) => any;
|
|
1231
|
-
|
|
1232
853
|
export declare const EnableAlarmActionsInputFilterSensitiveLog: (
|
|
1233
854
|
obj: EnableAlarmActionsInput
|
|
1234
855
|
) => any;
|
|
1235
|
-
|
|
1236
856
|
export declare const EnableInsightRulesInputFilterSensitiveLog: (
|
|
1237
857
|
obj: EnableInsightRulesInput
|
|
1238
858
|
) => any;
|
|
1239
|
-
|
|
1240
859
|
export declare const EnableInsightRulesOutputFilterSensitiveLog: (
|
|
1241
860
|
obj: EnableInsightRulesOutput
|
|
1242
861
|
) => any;
|
|
1243
|
-
|
|
1244
862
|
export declare const GetDashboardInputFilterSensitiveLog: (
|
|
1245
863
|
obj: GetDashboardInput
|
|
1246
864
|
) => any;
|
|
1247
|
-
|
|
1248
865
|
export declare const GetDashboardOutputFilterSensitiveLog: (
|
|
1249
866
|
obj: GetDashboardOutput
|
|
1250
867
|
) => any;
|
|
1251
|
-
|
|
1252
868
|
export declare const GetInsightRuleReportInputFilterSensitiveLog: (
|
|
1253
869
|
obj: GetInsightRuleReportInput
|
|
1254
870
|
) => any;
|
|
1255
|
-
|
|
1256
871
|
export declare const InsightRuleContributorDatapointFilterSensitiveLog: (
|
|
1257
872
|
obj: InsightRuleContributorDatapoint
|
|
1258
873
|
) => any;
|
|
1259
|
-
|
|
1260
874
|
export declare const InsightRuleContributorFilterSensitiveLog: (
|
|
1261
875
|
obj: InsightRuleContributor
|
|
1262
876
|
) => any;
|
|
1263
|
-
|
|
1264
877
|
export declare const InsightRuleMetricDatapointFilterSensitiveLog: (
|
|
1265
878
|
obj: InsightRuleMetricDatapoint
|
|
1266
879
|
) => any;
|
|
1267
|
-
|
|
1268
880
|
export declare const GetInsightRuleReportOutputFilterSensitiveLog: (
|
|
1269
881
|
obj: GetInsightRuleReportOutput
|
|
1270
882
|
) => any;
|
|
1271
|
-
|
|
1272
883
|
export declare const LabelOptionsFilterSensitiveLog: (obj: LabelOptions) => any;
|
|
1273
|
-
|
|
1274
884
|
export declare const GetMetricDataInputFilterSensitiveLog: (
|
|
1275
885
|
obj: GetMetricDataInput
|
|
1276
886
|
) => any;
|
|
1277
|
-
|
|
1278
887
|
export declare const MessageDataFilterSensitiveLog: (obj: MessageData) => any;
|
|
1279
|
-
|
|
1280
888
|
export declare const MetricDataResultFilterSensitiveLog: (
|
|
1281
889
|
obj: MetricDataResult
|
|
1282
890
|
) => any;
|
|
1283
|
-
|
|
1284
891
|
export declare const GetMetricDataOutputFilterSensitiveLog: (
|
|
1285
892
|
obj: GetMetricDataOutput
|
|
1286
893
|
) => any;
|
|
1287
|
-
|
|
1288
894
|
export declare const GetMetricStatisticsInputFilterSensitiveLog: (
|
|
1289
895
|
obj: GetMetricStatisticsInput
|
|
1290
896
|
) => any;
|
|
1291
|
-
|
|
1292
897
|
export declare const GetMetricStatisticsOutputFilterSensitiveLog: (
|
|
1293
898
|
obj: GetMetricStatisticsOutput
|
|
1294
899
|
) => any;
|
|
1295
|
-
|
|
1296
900
|
export declare const GetMetricStreamInputFilterSensitiveLog: (
|
|
1297
901
|
obj: GetMetricStreamInput
|
|
1298
902
|
) => any;
|
|
1299
|
-
|
|
1300
903
|
export declare const MetricStreamFilterFilterSensitiveLog: (
|
|
1301
904
|
obj: MetricStreamFilter
|
|
1302
905
|
) => any;
|
|
1303
|
-
|
|
1304
906
|
export declare const MetricStreamStatisticsMetricFilterSensitiveLog: (
|
|
1305
907
|
obj: MetricStreamStatisticsMetric
|
|
1306
908
|
) => any;
|
|
1307
|
-
|
|
1308
909
|
export declare const MetricStreamStatisticsConfigurationFilterSensitiveLog: (
|
|
1309
910
|
obj: MetricStreamStatisticsConfiguration
|
|
1310
911
|
) => any;
|
|
1311
|
-
|
|
1312
912
|
export declare const GetMetricStreamOutputFilterSensitiveLog: (
|
|
1313
913
|
obj: GetMetricStreamOutput
|
|
1314
914
|
) => any;
|
|
1315
|
-
|
|
1316
915
|
export declare const GetMetricWidgetImageInputFilterSensitiveLog: (
|
|
1317
916
|
obj: GetMetricWidgetImageInput
|
|
1318
917
|
) => any;
|
|
1319
|
-
|
|
1320
918
|
export declare const GetMetricWidgetImageOutputFilterSensitiveLog: (
|
|
1321
919
|
obj: GetMetricWidgetImageOutput
|
|
1322
920
|
) => any;
|
|
1323
|
-
|
|
1324
921
|
export declare const ListDashboardsInputFilterSensitiveLog: (
|
|
1325
922
|
obj: ListDashboardsInput
|
|
1326
923
|
) => any;
|
|
1327
|
-
|
|
1328
924
|
export declare const ListDashboardsOutputFilterSensitiveLog: (
|
|
1329
925
|
obj: ListDashboardsOutput
|
|
1330
926
|
) => any;
|
|
1331
|
-
|
|
1332
927
|
export declare const ListManagedInsightRulesInputFilterSensitiveLog: (
|
|
1333
928
|
obj: ListManagedInsightRulesInput
|
|
1334
929
|
) => any;
|
|
1335
|
-
|
|
1336
930
|
export declare const ManagedRuleStateFilterSensitiveLog: (
|
|
1337
931
|
obj: ManagedRuleState
|
|
1338
932
|
) => any;
|
|
1339
|
-
|
|
1340
933
|
export declare const ManagedRuleDescriptionFilterSensitiveLog: (
|
|
1341
934
|
obj: ManagedRuleDescription
|
|
1342
935
|
) => any;
|
|
1343
|
-
|
|
1344
936
|
export declare const ListManagedInsightRulesOutputFilterSensitiveLog: (
|
|
1345
937
|
obj: ListManagedInsightRulesOutput
|
|
1346
938
|
) => any;
|
|
1347
|
-
|
|
1348
939
|
export declare const ListMetricsInputFilterSensitiveLog: (
|
|
1349
940
|
obj: ListMetricsInput
|
|
1350
941
|
) => any;
|
|
1351
|
-
|
|
1352
942
|
export declare const ListMetricsOutputFilterSensitiveLog: (
|
|
1353
943
|
obj: ListMetricsOutput
|
|
1354
944
|
) => any;
|
|
1355
|
-
|
|
1356
945
|
export declare const ListMetricStreamsInputFilterSensitiveLog: (
|
|
1357
946
|
obj: ListMetricStreamsInput
|
|
1358
947
|
) => any;
|
|
1359
|
-
|
|
1360
948
|
export declare const MetricStreamEntryFilterSensitiveLog: (
|
|
1361
949
|
obj: MetricStreamEntry
|
|
1362
950
|
) => any;
|
|
1363
|
-
|
|
1364
951
|
export declare const ListMetricStreamsOutputFilterSensitiveLog: (
|
|
1365
952
|
obj: ListMetricStreamsOutput
|
|
1366
953
|
) => any;
|
|
1367
|
-
|
|
1368
954
|
export declare const ListTagsForResourceInputFilterSensitiveLog: (
|
|
1369
955
|
obj: ListTagsForResourceInput
|
|
1370
956
|
) => any;
|
|
1371
|
-
|
|
1372
957
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1373
|
-
|
|
1374
958
|
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
1375
959
|
obj: ListTagsForResourceOutput
|
|
1376
960
|
) => any;
|
|
1377
|
-
|
|
1378
961
|
export declare const PutAnomalyDetectorInputFilterSensitiveLog: (
|
|
1379
962
|
obj: PutAnomalyDetectorInput
|
|
1380
963
|
) => any;
|
|
1381
|
-
|
|
1382
964
|
export declare const PutAnomalyDetectorOutputFilterSensitiveLog: (
|
|
1383
965
|
obj: PutAnomalyDetectorOutput
|
|
1384
966
|
) => any;
|
|
1385
|
-
|
|
1386
967
|
export declare const PutCompositeAlarmInputFilterSensitiveLog: (
|
|
1387
968
|
obj: PutCompositeAlarmInput
|
|
1388
969
|
) => any;
|
|
1389
|
-
|
|
1390
970
|
export declare const PutDashboardInputFilterSensitiveLog: (
|
|
1391
971
|
obj: PutDashboardInput
|
|
1392
972
|
) => any;
|
|
1393
|
-
|
|
1394
973
|
export declare const PutDashboardOutputFilterSensitiveLog: (
|
|
1395
974
|
obj: PutDashboardOutput
|
|
1396
975
|
) => any;
|
|
1397
|
-
|
|
1398
976
|
export declare const PutInsightRuleInputFilterSensitiveLog: (
|
|
1399
977
|
obj: PutInsightRuleInput
|
|
1400
978
|
) => any;
|
|
1401
|
-
|
|
1402
979
|
export declare const PutInsightRuleOutputFilterSensitiveLog: (
|
|
1403
980
|
obj: PutInsightRuleOutput
|
|
1404
981
|
) => any;
|
|
1405
|
-
|
|
1406
982
|
export declare const ManagedRuleFilterSensitiveLog: (obj: ManagedRule) => any;
|
|
1407
|
-
|
|
1408
983
|
export declare const PutManagedInsightRulesInputFilterSensitiveLog: (
|
|
1409
984
|
obj: PutManagedInsightRulesInput
|
|
1410
985
|
) => any;
|
|
1411
|
-
|
|
1412
986
|
export declare const PutManagedInsightRulesOutputFilterSensitiveLog: (
|
|
1413
987
|
obj: PutManagedInsightRulesOutput
|
|
1414
988
|
) => any;
|
|
1415
|
-
|
|
1416
989
|
export declare const PutMetricAlarmInputFilterSensitiveLog: (
|
|
1417
990
|
obj: PutMetricAlarmInput
|
|
1418
991
|
) => any;
|
|
1419
|
-
|
|
1420
992
|
export declare const StatisticSetFilterSensitiveLog: (obj: StatisticSet) => any;
|
|
1421
|
-
|
|
1422
993
|
export declare const MetricDatumFilterSensitiveLog: (obj: MetricDatum) => any;
|
|
1423
|
-
|
|
1424
994
|
export declare const PutMetricDataInputFilterSensitiveLog: (
|
|
1425
995
|
obj: PutMetricDataInput
|
|
1426
996
|
) => any;
|
|
1427
|
-
|
|
1428
997
|
export declare const PutMetricStreamInputFilterSensitiveLog: (
|
|
1429
998
|
obj: PutMetricStreamInput
|
|
1430
999
|
) => any;
|
|
1431
|
-
|
|
1432
1000
|
export declare const PutMetricStreamOutputFilterSensitiveLog: (
|
|
1433
1001
|
obj: PutMetricStreamOutput
|
|
1434
1002
|
) => any;
|
|
1435
|
-
|
|
1436
1003
|
export declare const SetAlarmStateInputFilterSensitiveLog: (
|
|
1437
1004
|
obj: SetAlarmStateInput
|
|
1438
1005
|
) => any;
|
|
1439
|
-
|
|
1440
1006
|
export declare const StartMetricStreamsInputFilterSensitiveLog: (
|
|
1441
1007
|
obj: StartMetricStreamsInput
|
|
1442
1008
|
) => any;
|
|
1443
|
-
|
|
1444
1009
|
export declare const StartMetricStreamsOutputFilterSensitiveLog: (
|
|
1445
1010
|
obj: StartMetricStreamsOutput
|
|
1446
1011
|
) => any;
|
|
1447
|
-
|
|
1448
1012
|
export declare const StopMetricStreamsInputFilterSensitiveLog: (
|
|
1449
1013
|
obj: StopMetricStreamsInput
|
|
1450
1014
|
) => any;
|
|
1451
|
-
|
|
1452
1015
|
export declare const StopMetricStreamsOutputFilterSensitiveLog: (
|
|
1453
1016
|
obj: StopMetricStreamsOutput
|
|
1454
1017
|
) => any;
|
|
1455
|
-
|
|
1456
1018
|
export declare const TagResourceInputFilterSensitiveLog: (
|
|
1457
1019
|
obj: TagResourceInput
|
|
1458
1020
|
) => any;
|
|
1459
|
-
|
|
1460
1021
|
export declare const TagResourceOutputFilterSensitiveLog: (
|
|
1461
1022
|
obj: TagResourceOutput
|
|
1462
1023
|
) => any;
|
|
1463
|
-
|
|
1464
1024
|
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
1465
1025
|
obj: UntagResourceInput
|
|
1466
1026
|
) => any;
|
|
1467
|
-
|
|
1468
1027
|
export declare const UntagResourceOutputFilterSensitiveLog: (
|
|
1469
1028
|
obj: UntagResourceOutput
|
|
1470
1029
|
) => any;
|