@aws-sdk/client-cloudwatch 3.934.0 → 3.935.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/dist-cjs/index.js +97 -96
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +96 -0
- package/dist-es/models/errors.js +185 -0
- package/dist-es/models/models_0.js +1 -281
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +208 -0
- package/dist-types/models/errors.d.ts +184 -0
- package/dist-types/models/models_0.d.ts +1 -391
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +118 -0
- package/dist-types/ts3.4/models/errors.d.ts +108 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -225
- package/package.json +13 -13
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CloudWatchServiceException as __BaseException } from "./CloudWatchServiceException";
|
|
3
|
+
import { DashboardValidationMessage } from "./models_0";
|
|
4
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
5
|
+
readonly name: "ConcurrentModificationException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message?: string | undefined;
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<
|
|
10
|
+
ConcurrentModificationException,
|
|
11
|
+
__BaseException
|
|
12
|
+
>
|
|
13
|
+
);
|
|
14
|
+
}
|
|
15
|
+
export declare class ConflictException extends __BaseException {
|
|
16
|
+
readonly name: "ConflictException";
|
|
17
|
+
readonly $fault: "client";
|
|
18
|
+
Message?: string | undefined;
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
20
|
+
}
|
|
21
|
+
export declare class DashboardInvalidInputError extends __BaseException {
|
|
22
|
+
readonly name: "DashboardInvalidInputError";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
dashboardValidationMessages?: DashboardValidationMessage[] | undefined;
|
|
25
|
+
constructor(
|
|
26
|
+
opts: __ExceptionOptionType<DashboardInvalidInputError, __BaseException>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
export declare class DashboardNotFoundError extends __BaseException {
|
|
30
|
+
readonly name: "DashboardNotFoundError";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<DashboardNotFoundError, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
export declare class ResourceNotFound extends __BaseException {
|
|
37
|
+
readonly name: "ResourceNotFound";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
|
|
40
|
+
}
|
|
41
|
+
export declare class InternalServiceFault extends __BaseException {
|
|
42
|
+
readonly name: "InternalServiceFault";
|
|
43
|
+
readonly $fault: "server";
|
|
44
|
+
Message?: string | undefined;
|
|
45
|
+
constructor(
|
|
46
|
+
opts: __ExceptionOptionType<InternalServiceFault, __BaseException>
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
50
|
+
readonly name: "InvalidParameterCombinationException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
constructor(
|
|
53
|
+
opts: __ExceptionOptionType<
|
|
54
|
+
InvalidParameterCombinationException,
|
|
55
|
+
__BaseException
|
|
56
|
+
>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
60
|
+
readonly name: "InvalidParameterValueException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
constructor(
|
|
63
|
+
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
66
|
+
export declare class MissingRequiredParameterException extends __BaseException {
|
|
67
|
+
readonly name: "MissingRequiredParameterException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
constructor(
|
|
70
|
+
opts: __ExceptionOptionType<
|
|
71
|
+
MissingRequiredParameterException,
|
|
72
|
+
__BaseException
|
|
73
|
+
>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
77
|
+
readonly name: "ResourceNotFoundException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
ResourceType?: string | undefined;
|
|
80
|
+
ResourceId?: string | undefined;
|
|
81
|
+
Message?: string | undefined;
|
|
82
|
+
constructor(
|
|
83
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
export declare class InvalidNextToken extends __BaseException {
|
|
87
|
+
readonly name: "InvalidNextToken";
|
|
88
|
+
readonly $fault: "client";
|
|
89
|
+
constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
|
|
90
|
+
}
|
|
91
|
+
export declare class LimitExceededException extends __BaseException {
|
|
92
|
+
readonly name: "LimitExceededException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
Message?: string | undefined;
|
|
95
|
+
constructor(
|
|
96
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
export declare class LimitExceededFault extends __BaseException {
|
|
100
|
+
readonly name: "LimitExceededFault";
|
|
101
|
+
readonly $fault: "client";
|
|
102
|
+
constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
|
|
103
|
+
}
|
|
104
|
+
export declare class InvalidFormatFault extends __BaseException {
|
|
105
|
+
readonly name: "InvalidFormatFault";
|
|
106
|
+
readonly $fault: "client";
|
|
107
|
+
constructor(opts: __ExceptionOptionType<InvalidFormatFault, __BaseException>);
|
|
108
|
+
}
|
|
@@ -1,32 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import {
|
|
2
|
+
ActionsSuppressedBy,
|
|
3
|
+
AlarmType,
|
|
4
|
+
AnomalyDetectorStateValue,
|
|
5
|
+
AnomalyDetectorType,
|
|
6
|
+
ComparisonOperator,
|
|
7
|
+
EvaluationState,
|
|
8
|
+
HistoryItemType,
|
|
9
|
+
MetricStreamOutputFormat,
|
|
10
|
+
RecentlyActive,
|
|
11
|
+
ScanBy,
|
|
12
|
+
StandardUnit,
|
|
13
|
+
StateValue,
|
|
14
|
+
Statistic,
|
|
15
|
+
StatusCode,
|
|
16
|
+
} from "./enums";
|
|
10
17
|
export interface AlarmContributor {
|
|
11
18
|
ContributorId: string | undefined;
|
|
12
19
|
ContributorAttributes: Record<string, string> | undefined;
|
|
13
20
|
StateReason: string | undefined;
|
|
14
21
|
StateTransitionedTimestamp?: Date | undefined;
|
|
15
22
|
}
|
|
16
|
-
export declare const AlarmType: {
|
|
17
|
-
readonly CompositeAlarm: "CompositeAlarm";
|
|
18
|
-
readonly MetricAlarm: "MetricAlarm";
|
|
19
|
-
};
|
|
20
|
-
export type AlarmType = (typeof AlarmType)[keyof typeof AlarmType];
|
|
21
|
-
export declare const HistoryItemType: {
|
|
22
|
-
readonly Action: "Action";
|
|
23
|
-
readonly AlarmContributorAction: "AlarmContributorAction";
|
|
24
|
-
readonly AlarmContributorStateUpdate: "AlarmContributorStateUpdate";
|
|
25
|
-
readonly ConfigurationUpdate: "ConfigurationUpdate";
|
|
26
|
-
readonly StateUpdate: "StateUpdate";
|
|
27
|
-
};
|
|
28
|
-
export type HistoryItemType =
|
|
29
|
-
(typeof HistoryItemType)[keyof typeof HistoryItemType];
|
|
30
23
|
export interface AlarmHistoryItem {
|
|
31
24
|
AlarmName?: string | undefined;
|
|
32
25
|
AlarmContributorId?: string | undefined;
|
|
@@ -57,36 +50,6 @@ export interface Metric {
|
|
|
57
50
|
MetricName?: string | undefined;
|
|
58
51
|
Dimensions?: Dimension[] | undefined;
|
|
59
52
|
}
|
|
60
|
-
export declare const StandardUnit: {
|
|
61
|
-
readonly Bits: "Bits";
|
|
62
|
-
readonly Bits_Second: "Bits/Second";
|
|
63
|
-
readonly Bytes: "Bytes";
|
|
64
|
-
readonly Bytes_Second: "Bytes/Second";
|
|
65
|
-
readonly Count: "Count";
|
|
66
|
-
readonly Count_Second: "Count/Second";
|
|
67
|
-
readonly Gigabits: "Gigabits";
|
|
68
|
-
readonly Gigabits_Second: "Gigabits/Second";
|
|
69
|
-
readonly Gigabytes: "Gigabytes";
|
|
70
|
-
readonly Gigabytes_Second: "Gigabytes/Second";
|
|
71
|
-
readonly Kilobits: "Kilobits";
|
|
72
|
-
readonly Kilobits_Second: "Kilobits/Second";
|
|
73
|
-
readonly Kilobytes: "Kilobytes";
|
|
74
|
-
readonly Kilobytes_Second: "Kilobytes/Second";
|
|
75
|
-
readonly Megabits: "Megabits";
|
|
76
|
-
readonly Megabits_Second: "Megabits/Second";
|
|
77
|
-
readonly Megabytes: "Megabytes";
|
|
78
|
-
readonly Megabytes_Second: "Megabytes/Second";
|
|
79
|
-
readonly Microseconds: "Microseconds";
|
|
80
|
-
readonly Milliseconds: "Milliseconds";
|
|
81
|
-
readonly None: "None";
|
|
82
|
-
readonly Percent: "Percent";
|
|
83
|
-
readonly Seconds: "Seconds";
|
|
84
|
-
readonly Terabits: "Terabits";
|
|
85
|
-
readonly Terabits_Second: "Terabits/Second";
|
|
86
|
-
readonly Terabytes: "Terabytes";
|
|
87
|
-
readonly Terabytes_Second: "Terabytes/Second";
|
|
88
|
-
};
|
|
89
|
-
export type StandardUnit = (typeof StandardUnit)[keyof typeof StandardUnit];
|
|
90
53
|
export interface MetricStat {
|
|
91
54
|
Metric: Metric | undefined;
|
|
92
55
|
Period: number | undefined;
|
|
@@ -112,13 +75,6 @@ export interface SingleMetricAnomalyDetector {
|
|
|
112
75
|
Dimensions?: Dimension[] | undefined;
|
|
113
76
|
Stat?: string | undefined;
|
|
114
77
|
}
|
|
115
|
-
export declare const AnomalyDetectorStateValue: {
|
|
116
|
-
readonly PENDING_TRAINING: "PENDING_TRAINING";
|
|
117
|
-
readonly TRAINED: "TRAINED";
|
|
118
|
-
readonly TRAINED_INSUFFICIENT_DATA: "TRAINED_INSUFFICIENT_DATA";
|
|
119
|
-
};
|
|
120
|
-
export type AnomalyDetectorStateValue =
|
|
121
|
-
(typeof AnomalyDetectorStateValue)[keyof typeof AnomalyDetectorStateValue];
|
|
122
78
|
export interface AnomalyDetector {
|
|
123
79
|
Namespace?: string | undefined;
|
|
124
80
|
MetricName?: string | undefined;
|
|
@@ -130,35 +86,12 @@ export interface AnomalyDetector {
|
|
|
130
86
|
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | undefined;
|
|
131
87
|
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
|
|
132
88
|
}
|
|
133
|
-
export declare const AnomalyDetectorType: {
|
|
134
|
-
readonly METRIC_MATH: "METRIC_MATH";
|
|
135
|
-
readonly SINGLE_METRIC: "SINGLE_METRIC";
|
|
136
|
-
};
|
|
137
|
-
export type AnomalyDetectorType =
|
|
138
|
-
(typeof AnomalyDetectorType)[keyof typeof AnomalyDetectorType];
|
|
139
89
|
export interface PartialFailure {
|
|
140
90
|
FailureResource?: string | undefined;
|
|
141
91
|
ExceptionType?: string | undefined;
|
|
142
92
|
FailureCode?: string | undefined;
|
|
143
93
|
FailureDescription?: string | undefined;
|
|
144
94
|
}
|
|
145
|
-
export declare const ComparisonOperator: {
|
|
146
|
-
readonly GreaterThanOrEqualToThreshold: "GreaterThanOrEqualToThreshold";
|
|
147
|
-
readonly GreaterThanThreshold: "GreaterThanThreshold";
|
|
148
|
-
readonly GreaterThanUpperThreshold: "GreaterThanUpperThreshold";
|
|
149
|
-
readonly LessThanLowerOrGreaterThanUpperThreshold: "LessThanLowerOrGreaterThanUpperThreshold";
|
|
150
|
-
readonly LessThanLowerThreshold: "LessThanLowerThreshold";
|
|
151
|
-
readonly LessThanOrEqualToThreshold: "LessThanOrEqualToThreshold";
|
|
152
|
-
readonly LessThanThreshold: "LessThanThreshold";
|
|
153
|
-
};
|
|
154
|
-
export type ComparisonOperator =
|
|
155
|
-
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
156
|
-
export declare const StateValue: {
|
|
157
|
-
readonly ALARM: "ALARM";
|
|
158
|
-
readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
|
|
159
|
-
readonly OK: "OK";
|
|
160
|
-
};
|
|
161
|
-
export type StateValue = (typeof StateValue)[keyof typeof StateValue];
|
|
162
95
|
export interface CompositeAlarm {
|
|
163
96
|
ActionsEnabled?: boolean | undefined;
|
|
164
97
|
AlarmActions?: string[] | undefined;
|
|
@@ -180,23 +113,6 @@ export interface CompositeAlarm {
|
|
|
180
113
|
ActionsSuppressorWaitPeriod?: number | undefined;
|
|
181
114
|
ActionsSuppressorExtensionPeriod?: number | undefined;
|
|
182
115
|
}
|
|
183
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
184
|
-
readonly name: "ConcurrentModificationException";
|
|
185
|
-
readonly $fault: "client";
|
|
186
|
-
Message?: string | undefined;
|
|
187
|
-
constructor(
|
|
188
|
-
opts: __ExceptionOptionType<
|
|
189
|
-
ConcurrentModificationException,
|
|
190
|
-
__BaseException
|
|
191
|
-
>
|
|
192
|
-
);
|
|
193
|
-
}
|
|
194
|
-
export declare class ConflictException extends __BaseException {
|
|
195
|
-
readonly name: "ConflictException";
|
|
196
|
-
readonly $fault: "client";
|
|
197
|
-
Message?: string | undefined;
|
|
198
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
199
|
-
}
|
|
200
116
|
export interface DashboardEntry {
|
|
201
117
|
DashboardName?: string | undefined;
|
|
202
118
|
DashboardArn?: string | undefined;
|
|
@@ -207,21 +123,6 @@ export interface DashboardValidationMessage {
|
|
|
207
123
|
DataPath?: string | undefined;
|
|
208
124
|
Message?: string | undefined;
|
|
209
125
|
}
|
|
210
|
-
export declare class DashboardInvalidInputError extends __BaseException {
|
|
211
|
-
readonly name: "DashboardInvalidInputError";
|
|
212
|
-
readonly $fault: "client";
|
|
213
|
-
dashboardValidationMessages?: DashboardValidationMessage[] | undefined;
|
|
214
|
-
constructor(
|
|
215
|
-
opts: __ExceptionOptionType<DashboardInvalidInputError, __BaseException>
|
|
216
|
-
);
|
|
217
|
-
}
|
|
218
|
-
export declare class DashboardNotFoundError extends __BaseException {
|
|
219
|
-
readonly name: "DashboardNotFoundError";
|
|
220
|
-
readonly $fault: "client";
|
|
221
|
-
constructor(
|
|
222
|
-
opts: __ExceptionOptionType<DashboardNotFoundError, __BaseException>
|
|
223
|
-
);
|
|
224
|
-
}
|
|
225
126
|
export interface Datapoint {
|
|
226
127
|
Timestamp?: Date | undefined;
|
|
227
128
|
SampleCount?: number | undefined;
|
|
@@ -235,11 +136,6 @@ export interface Datapoint {
|
|
|
235
136
|
export interface DeleteAlarmsInput {
|
|
236
137
|
AlarmNames: string[] | undefined;
|
|
237
138
|
}
|
|
238
|
-
export declare class ResourceNotFound extends __BaseException {
|
|
239
|
-
readonly name: "ResourceNotFound";
|
|
240
|
-
readonly $fault: "client";
|
|
241
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
|
|
242
|
-
}
|
|
243
139
|
export interface DeleteAnomalyDetectorInput {
|
|
244
140
|
Namespace?: string | undefined;
|
|
245
141
|
MetricName?: string | undefined;
|
|
@@ -249,51 +145,6 @@ export interface DeleteAnomalyDetectorInput {
|
|
|
249
145
|
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
|
|
250
146
|
}
|
|
251
147
|
export interface DeleteAnomalyDetectorOutput {}
|
|
252
|
-
export declare class InternalServiceFault extends __BaseException {
|
|
253
|
-
readonly name: "InternalServiceFault";
|
|
254
|
-
readonly $fault: "server";
|
|
255
|
-
Message?: string | undefined;
|
|
256
|
-
constructor(
|
|
257
|
-
opts: __ExceptionOptionType<InternalServiceFault, __BaseException>
|
|
258
|
-
);
|
|
259
|
-
}
|
|
260
|
-
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
261
|
-
readonly name: "InvalidParameterCombinationException";
|
|
262
|
-
readonly $fault: "client";
|
|
263
|
-
constructor(
|
|
264
|
-
opts: __ExceptionOptionType<
|
|
265
|
-
InvalidParameterCombinationException,
|
|
266
|
-
__BaseException
|
|
267
|
-
>
|
|
268
|
-
);
|
|
269
|
-
}
|
|
270
|
-
export declare class InvalidParameterValueException extends __BaseException {
|
|
271
|
-
readonly name: "InvalidParameterValueException";
|
|
272
|
-
readonly $fault: "client";
|
|
273
|
-
constructor(
|
|
274
|
-
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
275
|
-
);
|
|
276
|
-
}
|
|
277
|
-
export declare class MissingRequiredParameterException extends __BaseException {
|
|
278
|
-
readonly name: "MissingRequiredParameterException";
|
|
279
|
-
readonly $fault: "client";
|
|
280
|
-
constructor(
|
|
281
|
-
opts: __ExceptionOptionType<
|
|
282
|
-
MissingRequiredParameterException,
|
|
283
|
-
__BaseException
|
|
284
|
-
>
|
|
285
|
-
);
|
|
286
|
-
}
|
|
287
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
288
|
-
readonly name: "ResourceNotFoundException";
|
|
289
|
-
readonly $fault: "client";
|
|
290
|
-
ResourceType?: string | undefined;
|
|
291
|
-
ResourceId?: string | undefined;
|
|
292
|
-
Message?: string | undefined;
|
|
293
|
-
constructor(
|
|
294
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
295
|
-
);
|
|
296
|
-
}
|
|
297
148
|
export interface DeleteDashboardsInput {
|
|
298
149
|
DashboardNames: string[] | undefined;
|
|
299
150
|
}
|
|
@@ -316,16 +167,6 @@ export interface DescribeAlarmContributorsOutput {
|
|
|
316
167
|
AlarmContributors: AlarmContributor[] | undefined;
|
|
317
168
|
NextToken?: string | undefined;
|
|
318
169
|
}
|
|
319
|
-
export declare class InvalidNextToken extends __BaseException {
|
|
320
|
-
readonly name: "InvalidNextToken";
|
|
321
|
-
readonly $fault: "client";
|
|
322
|
-
constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
|
|
323
|
-
}
|
|
324
|
-
export declare const ScanBy: {
|
|
325
|
-
readonly TIMESTAMP_ASCENDING: "TimestampAscending";
|
|
326
|
-
readonly TIMESTAMP_DESCENDING: "TimestampDescending";
|
|
327
|
-
};
|
|
328
|
-
export type ScanBy = (typeof ScanBy)[keyof typeof ScanBy];
|
|
329
170
|
export interface DescribeAlarmHistoryInput {
|
|
330
171
|
AlarmName?: string | undefined;
|
|
331
172
|
AlarmContributorId?: string | undefined;
|
|
@@ -352,19 +193,6 @@ export interface DescribeAlarmsInput {
|
|
|
352
193
|
MaxRecords?: number | undefined;
|
|
353
194
|
NextToken?: string | undefined;
|
|
354
195
|
}
|
|
355
|
-
export declare const EvaluationState: {
|
|
356
|
-
readonly PARTIAL_DATA: "PARTIAL_DATA";
|
|
357
|
-
};
|
|
358
|
-
export type EvaluationState =
|
|
359
|
-
(typeof EvaluationState)[keyof typeof EvaluationState];
|
|
360
|
-
export declare const Statistic: {
|
|
361
|
-
readonly Average: "Average";
|
|
362
|
-
readonly Maximum: "Maximum";
|
|
363
|
-
readonly Minimum: "Minimum";
|
|
364
|
-
readonly SampleCount: "SampleCount";
|
|
365
|
-
readonly Sum: "Sum";
|
|
366
|
-
};
|
|
367
|
-
export type Statistic = (typeof Statistic)[keyof typeof Statistic];
|
|
368
196
|
export interface MetricAlarm {
|
|
369
197
|
AlarmName?: string | undefined;
|
|
370
198
|
AlarmArn?: string | undefined;
|
|
@@ -463,14 +291,6 @@ export interface EnableInsightRulesInput {
|
|
|
463
291
|
export interface EnableInsightRulesOutput {
|
|
464
292
|
Failures?: PartialFailure[] | undefined;
|
|
465
293
|
}
|
|
466
|
-
export declare class LimitExceededException extends __BaseException {
|
|
467
|
-
readonly name: "LimitExceededException";
|
|
468
|
-
readonly $fault: "client";
|
|
469
|
-
Message?: string | undefined;
|
|
470
|
-
constructor(
|
|
471
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
472
|
-
);
|
|
473
|
-
}
|
|
474
294
|
export interface Entity {
|
|
475
295
|
KeyAttributes?: Record<string, string> | undefined;
|
|
476
296
|
Attributes?: Record<string, string> | undefined;
|
|
@@ -556,13 +376,6 @@ export interface MessageData {
|
|
|
556
376
|
Code?: string | undefined;
|
|
557
377
|
Value?: string | undefined;
|
|
558
378
|
}
|
|
559
|
-
export declare const StatusCode: {
|
|
560
|
-
readonly COMPLETE: "Complete";
|
|
561
|
-
readonly FORBIDDEN: "Forbidden";
|
|
562
|
-
readonly INTERNAL_ERROR: "InternalError";
|
|
563
|
-
readonly PARTIAL_DATA: "PartialData";
|
|
564
|
-
};
|
|
565
|
-
export type StatusCode = (typeof StatusCode)[keyof typeof StatusCode];
|
|
566
379
|
export interface MetricDataResult {
|
|
567
380
|
Id?: string | undefined;
|
|
568
381
|
Label?: string | undefined;
|
|
@@ -598,13 +411,6 @@ export interface MetricStreamFilter {
|
|
|
598
411
|
Namespace?: string | undefined;
|
|
599
412
|
MetricNames?: string[] | undefined;
|
|
600
413
|
}
|
|
601
|
-
export declare const MetricStreamOutputFormat: {
|
|
602
|
-
readonly JSON: "json";
|
|
603
|
-
readonly OPEN_TELEMETRY_0_7: "opentelemetry0.7";
|
|
604
|
-
readonly OPEN_TELEMETRY_1_0: "opentelemetry1.0";
|
|
605
|
-
};
|
|
606
|
-
export type MetricStreamOutputFormat =
|
|
607
|
-
(typeof MetricStreamOutputFormat)[keyof typeof MetricStreamOutputFormat];
|
|
608
414
|
export interface MetricStreamStatisticsMetric {
|
|
609
415
|
Namespace: string | undefined;
|
|
610
416
|
MetricName: string | undefined;
|
|
@@ -660,11 +466,6 @@ export interface ListManagedInsightRulesOutput {
|
|
|
660
466
|
ManagedRules?: ManagedRuleDescription[] | undefined;
|
|
661
467
|
NextToken?: string | undefined;
|
|
662
468
|
}
|
|
663
|
-
export declare const RecentlyActive: {
|
|
664
|
-
readonly PT3H: "PT3H";
|
|
665
|
-
};
|
|
666
|
-
export type RecentlyActive =
|
|
667
|
-
(typeof RecentlyActive)[keyof typeof RecentlyActive];
|
|
668
469
|
export interface ListMetricsInput {
|
|
669
470
|
Namespace?: string | undefined;
|
|
670
471
|
MetricName?: string | undefined;
|
|
@@ -717,11 +518,6 @@ export interface PutAnomalyDetectorInput {
|
|
|
717
518
|
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
|
|
718
519
|
}
|
|
719
520
|
export interface PutAnomalyDetectorOutput {}
|
|
720
|
-
export declare class LimitExceededFault extends __BaseException {
|
|
721
|
-
readonly name: "LimitExceededFault";
|
|
722
|
-
readonly $fault: "client";
|
|
723
|
-
constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
|
|
724
|
-
}
|
|
725
521
|
export interface PutCompositeAlarmInput {
|
|
726
522
|
ActionsEnabled?: boolean | undefined;
|
|
727
523
|
AlarmActions?: string[] | undefined;
|
|
@@ -805,11 +601,6 @@ export interface PutMetricStreamInput {
|
|
|
805
601
|
export interface PutMetricStreamOutput {
|
|
806
602
|
Arn?: string | undefined;
|
|
807
603
|
}
|
|
808
|
-
export declare class InvalidFormatFault extends __BaseException {
|
|
809
|
-
readonly name: "InvalidFormatFault";
|
|
810
|
-
readonly $fault: "client";
|
|
811
|
-
constructor(opts: __ExceptionOptionType<InvalidFormatFault, __BaseException>);
|
|
812
|
-
}
|
|
813
604
|
export interface SetAlarmStateInput {
|
|
814
605
|
AlarmName: string | undefined;
|
|
815
606
|
StateValue: StateValue | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudwatch",
|
|
@@ -22,39 +22,39 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/core": "3.935.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
32
32
|
"@aws-sdk/types": "3.930.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
36
36
|
"@smithy/config-resolver": "^4.4.3",
|
|
37
|
-
"@smithy/core": "^3.18.
|
|
37
|
+
"@smithy/core": "^3.18.5",
|
|
38
38
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
39
39
|
"@smithy/hash-node": "^4.2.5",
|
|
40
40
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
41
|
-
"@smithy/middleware-compression": "^4.3.
|
|
41
|
+
"@smithy/middleware-compression": "^4.3.12",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.5",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.5",
|
|
48
48
|
"@smithy/node-http-handler": "^4.4.5",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.5",
|
|
50
|
-
"@smithy/smithy-client": "^4.9.
|
|
50
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
51
51
|
"@smithy/types": "^4.9.0",
|
|
52
52
|
"@smithy/url-parser": "^4.2.5",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
58
58
|
"@smithy/util-endpoints": "^3.2.5",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.5",
|
|
60
60
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|