@aws-sdk/client-internetmonitor 3.935.0 → 3.939.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 CHANGED
@@ -1325,6 +1325,70 @@ const paginateListInternetEvents = core.createPaginator(InternetMonitorClient, L
1325
1325
 
1326
1326
  const paginateListMonitors = core.createPaginator(InternetMonitorClient, ListMonitorsCommand, "NextToken", "NextToken", "MaxResults");
1327
1327
 
1328
+ const LocalHealthEventsConfigStatus = {
1329
+ DISABLED: "DISABLED",
1330
+ ENABLED: "ENABLED",
1331
+ };
1332
+ const LogDeliveryStatus = {
1333
+ DISABLED: "DISABLED",
1334
+ ENABLED: "ENABLED",
1335
+ };
1336
+ const MonitorConfigState = {
1337
+ ACTIVE: "ACTIVE",
1338
+ ERROR: "ERROR",
1339
+ INACTIVE: "INACTIVE",
1340
+ PENDING: "PENDING",
1341
+ };
1342
+ const Operator = {
1343
+ EQUALS: "EQUALS",
1344
+ NOT_EQUALS: "NOT_EQUALS",
1345
+ };
1346
+ const TriangulationEventType = {
1347
+ AWS: "AWS",
1348
+ INTERNET: "Internet",
1349
+ };
1350
+ const HealthEventStatus = {
1351
+ ACTIVE: "ACTIVE",
1352
+ RESOLVED: "RESOLVED",
1353
+ };
1354
+ const HealthEventImpactType = {
1355
+ AVAILABILITY: "AVAILABILITY",
1356
+ LOCAL_AVAILABILITY: "LOCAL_AVAILABILITY",
1357
+ LOCAL_PERFORMANCE: "LOCAL_PERFORMANCE",
1358
+ PERFORMANCE: "PERFORMANCE",
1359
+ };
1360
+ const InternetEventStatus = {
1361
+ ACTIVE: "ACTIVE",
1362
+ RESOLVED: "RESOLVED",
1363
+ };
1364
+ const InternetEventType = {
1365
+ AVAILABILITY: "AVAILABILITY",
1366
+ PERFORMANCE: "PERFORMANCE",
1367
+ };
1368
+ const MonitorProcessingStatusCode = {
1369
+ COLLECTING_DATA: "COLLECTING_DATA",
1370
+ FAULT_ACCESS_CLOUDWATCH: "FAULT_ACCESS_CLOUDWATCH",
1371
+ FAULT_SERVICE: "FAULT_SERVICE",
1372
+ INACTIVE: "INACTIVE",
1373
+ INSUFFICIENT_DATA: "INSUFFICIENT_DATA",
1374
+ OK: "OK",
1375
+ };
1376
+ const QueryStatus = {
1377
+ CANCELED: "CANCELED",
1378
+ FAILED: "FAILED",
1379
+ QUEUED: "QUEUED",
1380
+ RUNNING: "RUNNING",
1381
+ SUCCEEDED: "SUCCEEDED",
1382
+ };
1383
+ const QueryType = {
1384
+ MEASUREMENTS: "MEASUREMENTS",
1385
+ OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS",
1386
+ OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS",
1387
+ ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS",
1388
+ TOP_LOCATIONS: "TOP_LOCATIONS",
1389
+ TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS",
1390
+ };
1391
+
1328
1392
  Object.defineProperty(exports, "$Command", {
1329
1393
  enumerable: true,
1330
1394
  get: function () { return smithyClient.Command; }
@@ -1343,8 +1407,12 @@ exports.GetInternetEventCommand = GetInternetEventCommand;
1343
1407
  exports.GetMonitorCommand = GetMonitorCommand;
1344
1408
  exports.GetQueryResultsCommand = GetQueryResultsCommand;
1345
1409
  exports.GetQueryStatusCommand = GetQueryStatusCommand;
1410
+ exports.HealthEventImpactType = HealthEventImpactType;
1411
+ exports.HealthEventStatus = HealthEventStatus;
1346
1412
  exports.InternalServerErrorException = InternalServerErrorException$1;
1347
1413
  exports.InternalServerException = InternalServerException$1;
1414
+ exports.InternetEventStatus = InternetEventStatus;
1415
+ exports.InternetEventType = InternetEventType;
1348
1416
  exports.InternetMonitor = InternetMonitor;
1349
1417
  exports.InternetMonitorClient = InternetMonitorClient;
1350
1418
  exports.InternetMonitorServiceException = InternetMonitorServiceException$1;
@@ -1353,13 +1421,21 @@ exports.ListHealthEventsCommand = ListHealthEventsCommand;
1353
1421
  exports.ListInternetEventsCommand = ListInternetEventsCommand;
1354
1422
  exports.ListMonitorsCommand = ListMonitorsCommand;
1355
1423
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1424
+ exports.LocalHealthEventsConfigStatus = LocalHealthEventsConfigStatus;
1425
+ exports.LogDeliveryStatus = LogDeliveryStatus;
1426
+ exports.MonitorConfigState = MonitorConfigState;
1427
+ exports.MonitorProcessingStatusCode = MonitorProcessingStatusCode;
1356
1428
  exports.NotFoundException = NotFoundException$1;
1429
+ exports.Operator = Operator;
1430
+ exports.QueryStatus = QueryStatus;
1431
+ exports.QueryType = QueryType;
1357
1432
  exports.ResourceNotFoundException = ResourceNotFoundException$1;
1358
1433
  exports.StartQueryCommand = StartQueryCommand;
1359
1434
  exports.StopQueryCommand = StopQueryCommand;
1360
1435
  exports.TagResourceCommand = TagResourceCommand;
1361
1436
  exports.ThrottlingException = ThrottlingException$1;
1362
1437
  exports.TooManyRequestsException = TooManyRequestsException$1;
1438
+ exports.TriangulationEventType = TriangulationEventType;
1363
1439
  exports.UntagResourceCommand = UntagResourceCommand;
1364
1440
  exports.UpdateMonitorCommand = UpdateMonitorCommand;
1365
1441
  exports.ValidationException = ValidationException$1;
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./InternetMonitorClient";
2
2
  export * from "./InternetMonitor";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
+ export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { InternetMonitorServiceException } from "./models/InternetMonitorServiceException";
@@ -0,0 +1,63 @@
1
+ export const LocalHealthEventsConfigStatus = {
2
+ DISABLED: "DISABLED",
3
+ ENABLED: "ENABLED",
4
+ };
5
+ export const LogDeliveryStatus = {
6
+ DISABLED: "DISABLED",
7
+ ENABLED: "ENABLED",
8
+ };
9
+ export const MonitorConfigState = {
10
+ ACTIVE: "ACTIVE",
11
+ ERROR: "ERROR",
12
+ INACTIVE: "INACTIVE",
13
+ PENDING: "PENDING",
14
+ };
15
+ export const Operator = {
16
+ EQUALS: "EQUALS",
17
+ NOT_EQUALS: "NOT_EQUALS",
18
+ };
19
+ export const TriangulationEventType = {
20
+ AWS: "AWS",
21
+ INTERNET: "Internet",
22
+ };
23
+ export const HealthEventStatus = {
24
+ ACTIVE: "ACTIVE",
25
+ RESOLVED: "RESOLVED",
26
+ };
27
+ export const HealthEventImpactType = {
28
+ AVAILABILITY: "AVAILABILITY",
29
+ LOCAL_AVAILABILITY: "LOCAL_AVAILABILITY",
30
+ LOCAL_PERFORMANCE: "LOCAL_PERFORMANCE",
31
+ PERFORMANCE: "PERFORMANCE",
32
+ };
33
+ export const InternetEventStatus = {
34
+ ACTIVE: "ACTIVE",
35
+ RESOLVED: "RESOLVED",
36
+ };
37
+ export const InternetEventType = {
38
+ AVAILABILITY: "AVAILABILITY",
39
+ PERFORMANCE: "PERFORMANCE",
40
+ };
41
+ export const MonitorProcessingStatusCode = {
42
+ COLLECTING_DATA: "COLLECTING_DATA",
43
+ FAULT_ACCESS_CLOUDWATCH: "FAULT_ACCESS_CLOUDWATCH",
44
+ FAULT_SERVICE: "FAULT_SERVICE",
45
+ INACTIVE: "INACTIVE",
46
+ INSUFFICIENT_DATA: "INSUFFICIENT_DATA",
47
+ OK: "OK",
48
+ };
49
+ export const QueryStatus = {
50
+ CANCELED: "CANCELED",
51
+ FAILED: "FAILED",
52
+ QUEUED: "QUEUED",
53
+ RUNNING: "RUNNING",
54
+ SUCCEEDED: "SUCCEEDED",
55
+ };
56
+ export const QueryType = {
57
+ MEASUREMENTS: "MEASUREMENTS",
58
+ OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS",
59
+ OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS",
60
+ ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS",
61
+ TOP_LOCATIONS: "TOP_LOCATIONS",
62
+ TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS",
63
+ };
@@ -1,63 +1 @@
1
- export const LocalHealthEventsConfigStatus = {
2
- DISABLED: "DISABLED",
3
- ENABLED: "ENABLED",
4
- };
5
- export const LogDeliveryStatus = {
6
- DISABLED: "DISABLED",
7
- ENABLED: "ENABLED",
8
- };
9
- export const MonitorConfigState = {
10
- ACTIVE: "ACTIVE",
11
- ERROR: "ERROR",
12
- INACTIVE: "INACTIVE",
13
- PENDING: "PENDING",
14
- };
15
- export const Operator = {
16
- EQUALS: "EQUALS",
17
- NOT_EQUALS: "NOT_EQUALS",
18
- };
19
- export const TriangulationEventType = {
20
- AWS: "AWS",
21
- INTERNET: "Internet",
22
- };
23
- export const HealthEventStatus = {
24
- ACTIVE: "ACTIVE",
25
- RESOLVED: "RESOLVED",
26
- };
27
- export const HealthEventImpactType = {
28
- AVAILABILITY: "AVAILABILITY",
29
- LOCAL_AVAILABILITY: "LOCAL_AVAILABILITY",
30
- LOCAL_PERFORMANCE: "LOCAL_PERFORMANCE",
31
- PERFORMANCE: "PERFORMANCE",
32
- };
33
- export const InternetEventStatus = {
34
- ACTIVE: "ACTIVE",
35
- RESOLVED: "RESOLVED",
36
- };
37
- export const InternetEventType = {
38
- AVAILABILITY: "AVAILABILITY",
39
- PERFORMANCE: "PERFORMANCE",
40
- };
41
- export const MonitorProcessingStatusCode = {
42
- COLLECTING_DATA: "COLLECTING_DATA",
43
- FAULT_ACCESS_CLOUDWATCH: "FAULT_ACCESS_CLOUDWATCH",
44
- FAULT_SERVICE: "FAULT_SERVICE",
45
- INACTIVE: "INACTIVE",
46
- INSUFFICIENT_DATA: "INSUFFICIENT_DATA",
47
- OK: "OK",
48
- };
49
- export const QueryStatus = {
50
- CANCELED: "CANCELED",
51
- FAILED: "FAILED",
52
- QUEUED: "QUEUED",
53
- RUNNING: "RUNNING",
54
- SUCCEEDED: "SUCCEEDED",
55
- };
56
- export const QueryType = {
57
- MEASUREMENTS: "MEASUREMENTS",
58
- OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS",
59
- OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS",
60
- ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS",
61
- TOP_LOCATIONS: "TOP_LOCATIONS",
62
- TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS",
63
- };
1
+ export {};
@@ -25,6 +25,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
25
25
  export type { InternetMonitorExtensionConfiguration } from "./extensionConfiguration";
26
26
  export * from "./commands";
27
27
  export * from "./pagination";
28
+ export * from "./models/enums";
28
29
  export * from "./models/errors";
29
30
  export type * from "./models/models_0";
30
31
  export { InternetMonitorServiceException } from "./models/InternetMonitorServiceException";
@@ -0,0 +1,159 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const LocalHealthEventsConfigStatus: {
6
+ readonly DISABLED: "DISABLED";
7
+ readonly ENABLED: "ENABLED";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type LocalHealthEventsConfigStatus = (typeof LocalHealthEventsConfigStatus)[keyof typeof LocalHealthEventsConfigStatus];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const LogDeliveryStatus: {
18
+ readonly DISABLED: "DISABLED";
19
+ readonly ENABLED: "ENABLED";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type LogDeliveryStatus = (typeof LogDeliveryStatus)[keyof typeof LogDeliveryStatus];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const MonitorConfigState: {
30
+ readonly ACTIVE: "ACTIVE";
31
+ readonly ERROR: "ERROR";
32
+ readonly INACTIVE: "INACTIVE";
33
+ readonly PENDING: "PENDING";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type MonitorConfigState = (typeof MonitorConfigState)[keyof typeof MonitorConfigState];
39
+ /**
40
+ * @public
41
+ * @enum
42
+ */
43
+ export declare const Operator: {
44
+ readonly EQUALS: "EQUALS";
45
+ readonly NOT_EQUALS: "NOT_EQUALS";
46
+ };
47
+ /**
48
+ * @public
49
+ */
50
+ export type Operator = (typeof Operator)[keyof typeof Operator];
51
+ /**
52
+ * @public
53
+ * @enum
54
+ */
55
+ export declare const TriangulationEventType: {
56
+ readonly AWS: "AWS";
57
+ readonly INTERNET: "Internet";
58
+ };
59
+ /**
60
+ * @public
61
+ */
62
+ export type TriangulationEventType = (typeof TriangulationEventType)[keyof typeof TriangulationEventType];
63
+ /**
64
+ * @public
65
+ * @enum
66
+ */
67
+ export declare const HealthEventStatus: {
68
+ readonly ACTIVE: "ACTIVE";
69
+ readonly RESOLVED: "RESOLVED";
70
+ };
71
+ /**
72
+ * @public
73
+ */
74
+ export type HealthEventStatus = (typeof HealthEventStatus)[keyof typeof HealthEventStatus];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const HealthEventImpactType: {
80
+ readonly AVAILABILITY: "AVAILABILITY";
81
+ readonly LOCAL_AVAILABILITY: "LOCAL_AVAILABILITY";
82
+ readonly LOCAL_PERFORMANCE: "LOCAL_PERFORMANCE";
83
+ readonly PERFORMANCE: "PERFORMANCE";
84
+ };
85
+ /**
86
+ * @public
87
+ */
88
+ export type HealthEventImpactType = (typeof HealthEventImpactType)[keyof typeof HealthEventImpactType];
89
+ /**
90
+ * @public
91
+ * @enum
92
+ */
93
+ export declare const InternetEventStatus: {
94
+ readonly ACTIVE: "ACTIVE";
95
+ readonly RESOLVED: "RESOLVED";
96
+ };
97
+ /**
98
+ * @public
99
+ */
100
+ export type InternetEventStatus = (typeof InternetEventStatus)[keyof typeof InternetEventStatus];
101
+ /**
102
+ * @public
103
+ * @enum
104
+ */
105
+ export declare const InternetEventType: {
106
+ readonly AVAILABILITY: "AVAILABILITY";
107
+ readonly PERFORMANCE: "PERFORMANCE";
108
+ };
109
+ /**
110
+ * @public
111
+ */
112
+ export type InternetEventType = (typeof InternetEventType)[keyof typeof InternetEventType];
113
+ /**
114
+ * @public
115
+ * @enum
116
+ */
117
+ export declare const MonitorProcessingStatusCode: {
118
+ readonly COLLECTING_DATA: "COLLECTING_DATA";
119
+ readonly FAULT_ACCESS_CLOUDWATCH: "FAULT_ACCESS_CLOUDWATCH";
120
+ readonly FAULT_SERVICE: "FAULT_SERVICE";
121
+ readonly INACTIVE: "INACTIVE";
122
+ readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
123
+ readonly OK: "OK";
124
+ };
125
+ /**
126
+ * @public
127
+ */
128
+ export type MonitorProcessingStatusCode = (typeof MonitorProcessingStatusCode)[keyof typeof MonitorProcessingStatusCode];
129
+ /**
130
+ * @public
131
+ * @enum
132
+ */
133
+ export declare const QueryStatus: {
134
+ readonly CANCELED: "CANCELED";
135
+ readonly FAILED: "FAILED";
136
+ readonly QUEUED: "QUEUED";
137
+ readonly RUNNING: "RUNNING";
138
+ readonly SUCCEEDED: "SUCCEEDED";
139
+ };
140
+ /**
141
+ * @public
142
+ */
143
+ export type QueryStatus = (typeof QueryStatus)[keyof typeof QueryStatus];
144
+ /**
145
+ * @public
146
+ * @enum
147
+ */
148
+ export declare const QueryType: {
149
+ readonly MEASUREMENTS: "MEASUREMENTS";
150
+ readonly OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS";
151
+ readonly OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS";
152
+ readonly ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS";
153
+ readonly TOP_LOCATIONS: "TOP_LOCATIONS";
154
+ readonly TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS";
155
+ };
156
+ /**
157
+ * @public
158
+ */
159
+ export type QueryType = (typeof QueryType)[keyof typeof QueryType];
@@ -1,3 +1,4 @@
1
+ import { HealthEventImpactType, HealthEventStatus, InternetEventStatus, InternetEventType, LocalHealthEventsConfigStatus, LogDeliveryStatus, MonitorConfigState, MonitorProcessingStatusCode, Operator, QueryStatus, QueryType, TriangulationEventType } from "./enums";
1
2
  /**
2
3
  * <p>Amazon CloudWatch Internet Monitor calculates measurements about the availability for your application's internet traffic between client locations and Amazon Web Services.
3
4
  * Amazon Web Services has substantial historical data about internet
@@ -88,18 +89,6 @@ export interface ClientLocation {
88
89
  */
89
90
  Longitude: number | undefined;
90
91
  }
91
- /**
92
- * @public
93
- * @enum
94
- */
95
- export declare const LocalHealthEventsConfigStatus: {
96
- readonly DISABLED: "DISABLED";
97
- readonly ENABLED: "ENABLED";
98
- };
99
- /**
100
- * @public
101
- */
102
- export type LocalHealthEventsConfigStatus = (typeof LocalHealthEventsConfigStatus)[keyof typeof LocalHealthEventsConfigStatus];
103
92
  /**
104
93
  * <p>A complex type with the configuration information that determines the threshold and other conditions for when Internet Monitor creates a health event
105
94
  * for a local performance or availability issue, when scores cross a threshold for one or more city-networks.</p>
@@ -168,18 +157,6 @@ export interface HealthEventsConfig {
168
157
  */
169
158
  PerformanceLocalHealthEventsConfig?: LocalHealthEventsConfig | undefined;
170
159
  }
171
- /**
172
- * @public
173
- * @enum
174
- */
175
- export declare const LogDeliveryStatus: {
176
- readonly DISABLED: "DISABLED";
177
- readonly ENABLED: "ENABLED";
178
- };
179
- /**
180
- * @public
181
- */
182
- export type LogDeliveryStatus = (typeof LogDeliveryStatus)[keyof typeof LogDeliveryStatus];
183
160
  /**
184
161
  * <p>The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3. The configuration includes the bucket name and (optionally) prefix
185
162
  * for the S3 bucket to store the measurements, and the delivery status. The delivery status is <code>ENABLED</code> or <code>DISABLED</code>, depending on
@@ -281,20 +258,6 @@ export interface CreateMonitorInput {
281
258
  */
282
259
  HealthEventsConfig?: HealthEventsConfig | undefined;
283
260
  }
284
- /**
285
- * @public
286
- * @enum
287
- */
288
- export declare const MonitorConfigState: {
289
- readonly ACTIVE: "ACTIVE";
290
- readonly ERROR: "ERROR";
291
- readonly INACTIVE: "INACTIVE";
292
- readonly PENDING: "PENDING";
293
- };
294
- /**
295
- * @public
296
- */
297
- export type MonitorConfigState = (typeof MonitorConfigState)[keyof typeof MonitorConfigState];
298
261
  /**
299
262
  * @public
300
263
  */
@@ -325,18 +288,6 @@ export interface DeleteMonitorInput {
325
288
  */
326
289
  export interface DeleteMonitorOutput {
327
290
  }
328
- /**
329
- * @public
330
- * @enum
331
- */
332
- export declare const Operator: {
333
- readonly EQUALS: "EQUALS";
334
- readonly NOT_EQUALS: "NOT_EQUALS";
335
- };
336
- /**
337
- * @public
338
- */
339
- export type Operator = (typeof Operator)[keyof typeof Operator];
340
291
  /**
341
292
  * <p>A filter that you use with the results of a Amazon CloudWatch Internet Monitor query that you created and ran. The query sets up a
342
293
  * repository of data that is a subset of your application's Internet Monitor data. <code>FilterParameter</code> is a string
@@ -412,18 +363,6 @@ export interface Network {
412
363
  */
413
364
  ASNumber: number | undefined;
414
365
  }
415
- /**
416
- * @public
417
- * @enum
418
- */
419
- export declare const TriangulationEventType: {
420
- readonly AWS: "AWS";
421
- readonly INTERNET: "Internet";
422
- };
423
- /**
424
- * @public
425
- */
426
- export type TriangulationEventType = (typeof TriangulationEventType)[keyof typeof TriangulationEventType];
427
366
  /**
428
367
  * <p>Information about the network impairment for a specific network measured by Amazon CloudWatch Internet Monitor.</p>
429
368
  * @public
@@ -541,18 +480,6 @@ export interface InternetHealth {
541
480
  */
542
481
  Performance?: PerformanceMeasurement | undefined;
543
482
  }
544
- /**
545
- * @public
546
- * @enum
547
- */
548
- export declare const HealthEventStatus: {
549
- readonly ACTIVE: "ACTIVE";
550
- readonly RESOLVED: "RESOLVED";
551
- };
552
- /**
553
- * @public
554
- */
555
- export type HealthEventStatus = (typeof HealthEventStatus)[keyof typeof HealthEventStatus];
556
483
  /**
557
484
  * <p>Information about a location impacted by a health event in Amazon CloudWatch Internet Monitor.</p>
558
485
  * <p>Geographic regions are hierarchically categorized into country, subdivision,
@@ -645,20 +572,6 @@ export interface ImpactedLocation {
645
572
  */
646
573
  Ipv4Prefixes?: string[] | undefined;
647
574
  }
648
- /**
649
- * @public
650
- * @enum
651
- */
652
- export declare const HealthEventImpactType: {
653
- readonly AVAILABILITY: "AVAILABILITY";
654
- readonly LOCAL_AVAILABILITY: "LOCAL_AVAILABILITY";
655
- readonly LOCAL_PERFORMANCE: "LOCAL_PERFORMANCE";
656
- readonly PERFORMANCE: "PERFORMANCE";
657
- };
658
- /**
659
- * @public
660
- */
661
- export type HealthEventImpactType = (typeof HealthEventImpactType)[keyof typeof HealthEventImpactType];
662
575
  /**
663
576
  * @public
664
577
  */
@@ -732,30 +645,6 @@ export interface GetInternetEventInput {
732
645
  */
733
646
  EventId: string | undefined;
734
647
  }
735
- /**
736
- * @public
737
- * @enum
738
- */
739
- export declare const InternetEventStatus: {
740
- readonly ACTIVE: "ACTIVE";
741
- readonly RESOLVED: "RESOLVED";
742
- };
743
- /**
744
- * @public
745
- */
746
- export type InternetEventStatus = (typeof InternetEventStatus)[keyof typeof InternetEventStatus];
747
- /**
748
- * @public
749
- * @enum
750
- */
751
- export declare const InternetEventType: {
752
- readonly AVAILABILITY: "AVAILABILITY";
753
- readonly PERFORMANCE: "PERFORMANCE";
754
- };
755
- /**
756
- * @public
757
- */
758
- export type InternetEventType = (typeof InternetEventType)[keyof typeof InternetEventType];
759
648
  /**
760
649
  * @public
761
650
  */
@@ -814,22 +703,6 @@ export interface GetMonitorInput {
814
703
  */
815
704
  LinkedAccountId?: string | undefined;
816
705
  }
817
- /**
818
- * @public
819
- * @enum
820
- */
821
- export declare const MonitorProcessingStatusCode: {
822
- readonly COLLECTING_DATA: "COLLECTING_DATA";
823
- readonly FAULT_ACCESS_CLOUDWATCH: "FAULT_ACCESS_CLOUDWATCH";
824
- readonly FAULT_SERVICE: "FAULT_SERVICE";
825
- readonly INACTIVE: "INACTIVE";
826
- readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
827
- readonly OK: "OK";
828
- };
829
- /**
830
- * @public
831
- */
832
- export type MonitorProcessingStatusCode = (typeof MonitorProcessingStatusCode)[keyof typeof MonitorProcessingStatusCode];
833
706
  /**
834
707
  * @public
835
708
  */
@@ -993,21 +866,6 @@ export interface GetQueryStatusInput {
993
866
  */
994
867
  QueryId: string | undefined;
995
868
  }
996
- /**
997
- * @public
998
- * @enum
999
- */
1000
- export declare const QueryStatus: {
1001
- readonly CANCELED: "CANCELED";
1002
- readonly FAILED: "FAILED";
1003
- readonly QUEUED: "QUEUED";
1004
- readonly RUNNING: "RUNNING";
1005
- readonly SUCCEEDED: "SUCCEEDED";
1006
- };
1007
- /**
1008
- * @public
1009
- */
1010
- export type QueryStatus = (typeof QueryStatus)[keyof typeof QueryStatus];
1011
869
  /**
1012
870
  * @public
1013
871
  */
@@ -1326,22 +1184,6 @@ export interface ListMonitorsOutput {
1326
1184
  */
1327
1185
  NextToken?: string | undefined;
1328
1186
  }
1329
- /**
1330
- * @public
1331
- * @enum
1332
- */
1333
- export declare const QueryType: {
1334
- readonly MEASUREMENTS: "MEASUREMENTS";
1335
- readonly OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS";
1336
- readonly OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS";
1337
- readonly ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS";
1338
- readonly TOP_LOCATIONS: "TOP_LOCATIONS";
1339
- readonly TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS";
1340
- };
1341
- /**
1342
- * @public
1343
- */
1344
- export type QueryType = (typeof QueryType)[keyof typeof QueryType];
1345
1187
  /**
1346
1188
  * @public
1347
1189
  */
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { InternetMonitorExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { InternetMonitorServiceException } from "./models/InternetMonitorServiceException";
@@ -0,0 +1,84 @@
1
+ export declare const LocalHealthEventsConfigStatus: {
2
+ readonly DISABLED: "DISABLED";
3
+ readonly ENABLED: "ENABLED";
4
+ };
5
+ export type LocalHealthEventsConfigStatus =
6
+ (typeof LocalHealthEventsConfigStatus)[keyof typeof LocalHealthEventsConfigStatus];
7
+ export declare const LogDeliveryStatus: {
8
+ readonly DISABLED: "DISABLED";
9
+ readonly ENABLED: "ENABLED";
10
+ };
11
+ export type LogDeliveryStatus =
12
+ (typeof LogDeliveryStatus)[keyof typeof LogDeliveryStatus];
13
+ export declare const MonitorConfigState: {
14
+ readonly ACTIVE: "ACTIVE";
15
+ readonly ERROR: "ERROR";
16
+ readonly INACTIVE: "INACTIVE";
17
+ readonly PENDING: "PENDING";
18
+ };
19
+ export type MonitorConfigState =
20
+ (typeof MonitorConfigState)[keyof typeof MonitorConfigState];
21
+ export declare const Operator: {
22
+ readonly EQUALS: "EQUALS";
23
+ readonly NOT_EQUALS: "NOT_EQUALS";
24
+ };
25
+ export type Operator = (typeof Operator)[keyof typeof Operator];
26
+ export declare const TriangulationEventType: {
27
+ readonly AWS: "AWS";
28
+ readonly INTERNET: "Internet";
29
+ };
30
+ export type TriangulationEventType =
31
+ (typeof TriangulationEventType)[keyof typeof TriangulationEventType];
32
+ export declare const HealthEventStatus: {
33
+ readonly ACTIVE: "ACTIVE";
34
+ readonly RESOLVED: "RESOLVED";
35
+ };
36
+ export type HealthEventStatus =
37
+ (typeof HealthEventStatus)[keyof typeof HealthEventStatus];
38
+ export declare const HealthEventImpactType: {
39
+ readonly AVAILABILITY: "AVAILABILITY";
40
+ readonly LOCAL_AVAILABILITY: "LOCAL_AVAILABILITY";
41
+ readonly LOCAL_PERFORMANCE: "LOCAL_PERFORMANCE";
42
+ readonly PERFORMANCE: "PERFORMANCE";
43
+ };
44
+ export type HealthEventImpactType =
45
+ (typeof HealthEventImpactType)[keyof typeof HealthEventImpactType];
46
+ export declare const InternetEventStatus: {
47
+ readonly ACTIVE: "ACTIVE";
48
+ readonly RESOLVED: "RESOLVED";
49
+ };
50
+ export type InternetEventStatus =
51
+ (typeof InternetEventStatus)[keyof typeof InternetEventStatus];
52
+ export declare const InternetEventType: {
53
+ readonly AVAILABILITY: "AVAILABILITY";
54
+ readonly PERFORMANCE: "PERFORMANCE";
55
+ };
56
+ export type InternetEventType =
57
+ (typeof InternetEventType)[keyof typeof InternetEventType];
58
+ export declare const MonitorProcessingStatusCode: {
59
+ readonly COLLECTING_DATA: "COLLECTING_DATA";
60
+ readonly FAULT_ACCESS_CLOUDWATCH: "FAULT_ACCESS_CLOUDWATCH";
61
+ readonly FAULT_SERVICE: "FAULT_SERVICE";
62
+ readonly INACTIVE: "INACTIVE";
63
+ readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
64
+ readonly OK: "OK";
65
+ };
66
+ export type MonitorProcessingStatusCode =
67
+ (typeof MonitorProcessingStatusCode)[keyof typeof MonitorProcessingStatusCode];
68
+ export declare const QueryStatus: {
69
+ readonly CANCELED: "CANCELED";
70
+ readonly FAILED: "FAILED";
71
+ readonly QUEUED: "QUEUED";
72
+ readonly RUNNING: "RUNNING";
73
+ readonly SUCCEEDED: "SUCCEEDED";
74
+ };
75
+ export type QueryStatus = (typeof QueryStatus)[keyof typeof QueryStatus];
76
+ export declare const QueryType: {
77
+ readonly MEASUREMENTS: "MEASUREMENTS";
78
+ readonly OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS";
79
+ readonly OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS";
80
+ readonly ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS";
81
+ readonly TOP_LOCATIONS: "TOP_LOCATIONS";
82
+ readonly TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS";
83
+ };
84
+ export type QueryType = (typeof QueryType)[keyof typeof QueryType];
@@ -1,3 +1,17 @@
1
+ import {
2
+ HealthEventImpactType,
3
+ HealthEventStatus,
4
+ InternetEventStatus,
5
+ InternetEventType,
6
+ LocalHealthEventsConfigStatus,
7
+ LogDeliveryStatus,
8
+ MonitorConfigState,
9
+ MonitorProcessingStatusCode,
10
+ Operator,
11
+ QueryStatus,
12
+ QueryType,
13
+ TriangulationEventType,
14
+ } from "./enums";
1
15
  export interface AvailabilityMeasurement {
2
16
  ExperienceScore?: number | undefined;
3
17
  PercentOfTotalTrafficImpacted?: number | undefined;
@@ -13,12 +27,6 @@ export interface ClientLocation {
13
27
  Latitude: number | undefined;
14
28
  Longitude: number | undefined;
15
29
  }
16
- export declare const LocalHealthEventsConfigStatus: {
17
- readonly DISABLED: "DISABLED";
18
- readonly ENABLED: "ENABLED";
19
- };
20
- export type LocalHealthEventsConfigStatus =
21
- (typeof LocalHealthEventsConfigStatus)[keyof typeof LocalHealthEventsConfigStatus];
22
30
  export interface LocalHealthEventsConfig {
23
31
  Status?: LocalHealthEventsConfigStatus | undefined;
24
32
  HealthScoreThreshold?: number | undefined;
@@ -30,12 +38,6 @@ export interface HealthEventsConfig {
30
38
  AvailabilityLocalHealthEventsConfig?: LocalHealthEventsConfig | undefined;
31
39
  PerformanceLocalHealthEventsConfig?: LocalHealthEventsConfig | undefined;
32
40
  }
33
- export declare const LogDeliveryStatus: {
34
- readonly DISABLED: "DISABLED";
35
- readonly ENABLED: "ENABLED";
36
- };
37
- export type LogDeliveryStatus =
38
- (typeof LogDeliveryStatus)[keyof typeof LogDeliveryStatus];
39
41
  export interface S3Config {
40
42
  BucketName?: string | undefined;
41
43
  BucketPrefix?: string | undefined;
@@ -54,14 +56,6 @@ export interface CreateMonitorInput {
54
56
  TrafficPercentageToMonitor?: number | undefined;
55
57
  HealthEventsConfig?: HealthEventsConfig | undefined;
56
58
  }
57
- export declare const MonitorConfigState: {
58
- readonly ACTIVE: "ACTIVE";
59
- readonly ERROR: "ERROR";
60
- readonly INACTIVE: "INACTIVE";
61
- readonly PENDING: "PENDING";
62
- };
63
- export type MonitorConfigState =
64
- (typeof MonitorConfigState)[keyof typeof MonitorConfigState];
65
59
  export interface CreateMonitorOutput {
66
60
  Arn: string | undefined;
67
61
  Status: MonitorConfigState | undefined;
@@ -70,11 +64,6 @@ export interface DeleteMonitorInput {
70
64
  MonitorName: string | undefined;
71
65
  }
72
66
  export interface DeleteMonitorOutput {}
73
- export declare const Operator: {
74
- readonly EQUALS: "EQUALS";
75
- readonly NOT_EQUALS: "NOT_EQUALS";
76
- };
77
- export type Operator = (typeof Operator)[keyof typeof Operator];
78
67
  export interface FilterParameter {
79
68
  Field?: string | undefined;
80
69
  Operator?: Operator | undefined;
@@ -89,12 +78,6 @@ export interface Network {
89
78
  ASName: string | undefined;
90
79
  ASNumber: number | undefined;
91
80
  }
92
- export declare const TriangulationEventType: {
93
- readonly AWS: "AWS";
94
- readonly INTERNET: "Internet";
95
- };
96
- export type TriangulationEventType =
97
- (typeof TriangulationEventType)[keyof typeof TriangulationEventType];
98
81
  export interface NetworkImpairment {
99
82
  Networks: Network[] | undefined;
100
83
  AsPath: Network[] | undefined;
@@ -115,12 +98,6 @@ export interface InternetHealth {
115
98
  Availability?: AvailabilityMeasurement | undefined;
116
99
  Performance?: PerformanceMeasurement | undefined;
117
100
  }
118
- export declare const HealthEventStatus: {
119
- readonly ACTIVE: "ACTIVE";
120
- readonly RESOLVED: "RESOLVED";
121
- };
122
- export type HealthEventStatus =
123
- (typeof HealthEventStatus)[keyof typeof HealthEventStatus];
124
101
  export interface ImpactedLocation {
125
102
  ASName: string | undefined;
126
103
  ASNumber: number | undefined;
@@ -138,14 +115,6 @@ export interface ImpactedLocation {
138
115
  InternetHealth?: InternetHealth | undefined;
139
116
  Ipv4Prefixes?: string[] | undefined;
140
117
  }
141
- export declare const HealthEventImpactType: {
142
- readonly AVAILABILITY: "AVAILABILITY";
143
- readonly LOCAL_AVAILABILITY: "LOCAL_AVAILABILITY";
144
- readonly LOCAL_PERFORMANCE: "LOCAL_PERFORMANCE";
145
- readonly PERFORMANCE: "PERFORMANCE";
146
- };
147
- export type HealthEventImpactType =
148
- (typeof HealthEventImpactType)[keyof typeof HealthEventImpactType];
149
118
  export interface GetHealthEventOutput {
150
119
  EventArn: string | undefined;
151
120
  EventId: string | undefined;
@@ -162,18 +131,6 @@ export interface GetHealthEventOutput {
162
131
  export interface GetInternetEventInput {
163
132
  EventId: string | undefined;
164
133
  }
165
- export declare const InternetEventStatus: {
166
- readonly ACTIVE: "ACTIVE";
167
- readonly RESOLVED: "RESOLVED";
168
- };
169
- export type InternetEventStatus =
170
- (typeof InternetEventStatus)[keyof typeof InternetEventStatus];
171
- export declare const InternetEventType: {
172
- readonly AVAILABILITY: "AVAILABILITY";
173
- readonly PERFORMANCE: "PERFORMANCE";
174
- };
175
- export type InternetEventType =
176
- (typeof InternetEventType)[keyof typeof InternetEventType];
177
134
  export interface GetInternetEventOutput {
178
135
  EventId: string | undefined;
179
136
  EventArn: string | undefined;
@@ -187,16 +144,6 @@ export interface GetMonitorInput {
187
144
  MonitorName: string | undefined;
188
145
  LinkedAccountId?: string | undefined;
189
146
  }
190
- export declare const MonitorProcessingStatusCode: {
191
- readonly COLLECTING_DATA: "COLLECTING_DATA";
192
- readonly FAULT_ACCESS_CLOUDWATCH: "FAULT_ACCESS_CLOUDWATCH";
193
- readonly FAULT_SERVICE: "FAULT_SERVICE";
194
- readonly INACTIVE: "INACTIVE";
195
- readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
196
- readonly OK: "OK";
197
- };
198
- export type MonitorProcessingStatusCode =
199
- (typeof MonitorProcessingStatusCode)[keyof typeof MonitorProcessingStatusCode];
200
147
  export interface GetMonitorOutput {
201
148
  MonitorName: string | undefined;
202
149
  MonitorArn: string | undefined;
@@ -231,14 +178,6 @@ export interface GetQueryStatusInput {
231
178
  MonitorName: string | undefined;
232
179
  QueryId: string | undefined;
233
180
  }
234
- export declare const QueryStatus: {
235
- readonly CANCELED: "CANCELED";
236
- readonly FAILED: "FAILED";
237
- readonly QUEUED: "QUEUED";
238
- readonly RUNNING: "RUNNING";
239
- readonly SUCCEEDED: "SUCCEEDED";
240
- };
241
- export type QueryStatus = (typeof QueryStatus)[keyof typeof QueryStatus];
242
181
  export interface GetQueryStatusOutput {
243
182
  Status: QueryStatus | undefined;
244
183
  }
@@ -311,15 +250,6 @@ export interface ListMonitorsOutput {
311
250
  Monitors: Monitor[] | undefined;
312
251
  NextToken?: string | undefined;
313
252
  }
314
- export declare const QueryType: {
315
- readonly MEASUREMENTS: "MEASUREMENTS";
316
- readonly OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS";
317
- readonly OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS";
318
- readonly ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS";
319
- readonly TOP_LOCATIONS: "TOP_LOCATIONS";
320
- readonly TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS";
321
- };
322
- export type QueryType = (typeof QueryType)[keyof typeof QueryType];
323
253
  export interface StartQueryInput {
324
254
  MonitorName: string | undefined;
325
255
  StartTime: Date | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-internetmonitor",
3
3
  "description": "AWS SDK for JavaScript Internetmonitor Client for Node.js, Browser and React Native",
4
- "version": "3.935.0",
4
+ "version": "3.939.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-internetmonitor",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.935.0",
24
- "@aws-sdk/credential-provider-node": "3.935.0",
25
- "@aws-sdk/middleware-host-header": "3.930.0",
26
- "@aws-sdk/middleware-logger": "3.930.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.935.0",
29
- "@aws-sdk/region-config-resolver": "3.930.0",
30
- "@aws-sdk/types": "3.930.0",
31
- "@aws-sdk/util-endpoints": "3.930.0",
32
- "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.935.0",
23
+ "@aws-sdk/core": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.939.0",
25
+ "@aws-sdk/middleware-host-header": "3.936.0",
26
+ "@aws-sdk/middleware-logger": "3.936.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.936.0",
29
+ "@aws-sdk/region-config-resolver": "3.936.0",
30
+ "@aws-sdk/types": "3.936.0",
31
+ "@aws-sdk/util-endpoints": "3.936.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.936.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",