@aws-sdk/client-internetmonitor 3.296.0 → 3.298.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/commands/CreateMonitorCommand.js +2 -3
- package/dist-cjs/commands/DeleteMonitorCommand.js +2 -3
- package/dist-cjs/commands/GetHealthEventCommand.js +2 -3
- package/dist-cjs/commands/GetMonitorCommand.js +2 -3
- package/dist-cjs/commands/ListHealthEventsCommand.js +2 -3
- package/dist-cjs/commands/ListMonitorsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateMonitorCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -117
- package/dist-es/commands/CreateMonitorCommand.js +2 -3
- package/dist-es/commands/DeleteMonitorCommand.js +2 -3
- package/dist-es/commands/GetHealthEventCommand.js +2 -3
- package/dist-es/commands/GetMonitorCommand.js +2 -3
- package/dist-es/commands/ListHealthEventsCommand.js +2 -3
- package/dist-es/commands/ListMonitorsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateMonitorCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -87
- package/dist-types/InternetMonitor.d.ts +11 -0
- package/dist-types/InternetMonitorClient.d.ts +24 -4
- package/dist-types/commands/CreateMonitorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMonitorCommand.d.ts +16 -0
- package/dist-types/commands/GetHealthEventCommand.d.ts +16 -0
- package/dist-types/commands/GetMonitorCommand.d.ts +16 -0
- package/dist-types/commands/ListHealthEventsCommand.d.ts +16 -0
- package/dist-types/commands/ListMonitorsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMonitorCommand.d.ts +16 -0
- package/dist-types/models/InternetMonitorServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +95 -116
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListHealthEventsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMonitorsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -81
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateMonitorCommandInput extends UpdateMonitorInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a monitor. You can update a monitor to add or remove resources, or to change the status of the monitor. You can't change the name of a
|
|
18
23
|
* monitor.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateMonitorCommandInput - {@link UpdateMonitorCommandInput}
|
|
35
|
+
* @returns {@link UpdateMonitorCommandOutput}
|
|
29
36
|
* @see {@link UpdateMonitorCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateMonitorCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad
|
|
|
53
60
|
export declare class UpdateMonitorCommand extends $Command<UpdateMonitorCommandInput, UpdateMonitorCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
54
61
|
readonly input: UpdateMonitorCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: UpdateMonitorCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMonitorCommandInput, UpdateMonitorCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from InternetMonitor service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class InternetMonitorServiceException extends __ServiceException {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { InternetMonitorServiceException as __BaseException } from "./InternetMonitorServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You don't have sufficient permission to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,6 +13,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* <p>Measurements about the availability for your application on the internet, calculated by Amazon CloudWatch Internet Monitor. Amazon Web Services has substantial historical data about internet
|
|
16
18
|
* performance and availability between Amazon Web Services services and different network providers and geographies. By applying statistical analysis to the data, Internet Monitor
|
|
17
19
|
* can detect when the performance and availability for your application has dropped, compared to an estimated baseline that's already calculated. To make it
|
|
@@ -45,6 +47,7 @@ export interface AvailabilityMeasurement {
|
|
|
45
47
|
PercentOfClientLocationImpacted?: number;
|
|
46
48
|
}
|
|
47
49
|
/**
|
|
50
|
+
* @public
|
|
48
51
|
* <p>A bad request was received.</p>
|
|
49
52
|
*/
|
|
50
53
|
export declare class BadRequestException extends __BaseException {
|
|
@@ -56,6 +59,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
56
59
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
57
60
|
}
|
|
58
61
|
/**
|
|
62
|
+
* @public
|
|
59
63
|
* <p>The requested resource is in use.</p>
|
|
60
64
|
*/
|
|
61
65
|
export declare class ConflictException extends __BaseException {
|
|
@@ -66,6 +70,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
66
70
|
*/
|
|
67
71
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
68
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
69
76
|
export interface CreateMonitorInput {
|
|
70
77
|
/**
|
|
71
78
|
* <p>The name of the monitor. </p>
|
|
@@ -95,12 +102,18 @@ export interface CreateMonitorInput {
|
|
|
95
102
|
*/
|
|
96
103
|
MaxCityNetworksToMonitor: number | undefined;
|
|
97
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
98
108
|
export declare enum MonitorConfigState {
|
|
99
109
|
ACTIVE = "ACTIVE",
|
|
100
110
|
ERROR = "ERROR",
|
|
101
111
|
INACTIVE = "INACTIVE",
|
|
102
112
|
PENDING = "PENDING"
|
|
103
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
104
117
|
export interface CreateMonitorOutput {
|
|
105
118
|
/**
|
|
106
119
|
* <p>The Amazon Resource Name (ARN) of the monitor.</p>
|
|
@@ -112,6 +125,7 @@ export interface CreateMonitorOutput {
|
|
|
112
125
|
Status: MonitorConfigState | string | undefined;
|
|
113
126
|
}
|
|
114
127
|
/**
|
|
128
|
+
* @public
|
|
115
129
|
* <p>An internal error occurred.</p>
|
|
116
130
|
*/
|
|
117
131
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -124,6 +138,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
124
138
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
125
139
|
}
|
|
126
140
|
/**
|
|
141
|
+
* @public
|
|
127
142
|
* <p>The request exceeded a service quota.</p>
|
|
128
143
|
*/
|
|
129
144
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -135,6 +150,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
135
150
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
136
151
|
}
|
|
137
152
|
/**
|
|
153
|
+
* @public
|
|
138
154
|
* <p>The request was denied due to request throttling.</p>
|
|
139
155
|
*/
|
|
140
156
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -149,6 +165,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
149
165
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
150
166
|
}
|
|
151
167
|
/**
|
|
168
|
+
* @public
|
|
152
169
|
* <p>Invalid request.</p>
|
|
153
170
|
*/
|
|
154
171
|
export declare class ValidationException extends __BaseException {
|
|
@@ -159,14 +176,23 @@ export declare class ValidationException extends __BaseException {
|
|
|
159
176
|
*/
|
|
160
177
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
161
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
162
182
|
export interface DeleteMonitorInput {
|
|
163
183
|
/**
|
|
164
184
|
* <p>The name of the monitor to delete.</p>
|
|
165
185
|
*/
|
|
166
186
|
MonitorName: string | undefined;
|
|
167
187
|
}
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
168
191
|
export interface DeleteMonitorOutput {
|
|
169
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
170
196
|
export interface GetHealthEventInput {
|
|
171
197
|
/**
|
|
172
198
|
* <p>The name of the monitor.</p>
|
|
@@ -179,6 +205,7 @@ export interface GetHealthEventInput {
|
|
|
179
205
|
EventId: string | undefined;
|
|
180
206
|
}
|
|
181
207
|
/**
|
|
208
|
+
* @public
|
|
182
209
|
* <p>An internet service provider (ISP) or network in Amazon CloudWatch Internet Monitor.</p>
|
|
183
210
|
*/
|
|
184
211
|
export interface Network {
|
|
@@ -191,11 +218,15 @@ export interface Network {
|
|
|
191
218
|
*/
|
|
192
219
|
ASNumber: number | undefined;
|
|
193
220
|
}
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
194
224
|
export declare enum TriangulationEventType {
|
|
195
225
|
AWS = "AWS",
|
|
196
226
|
INTERNET = "Internet"
|
|
197
227
|
}
|
|
198
228
|
/**
|
|
229
|
+
* @public
|
|
199
230
|
* <p>Information about the network impairment for a specific network measured by Amazon CloudWatch Internet Monitor.</p>
|
|
200
231
|
*/
|
|
201
232
|
export interface NetworkImpairment {
|
|
@@ -213,6 +244,7 @@ export interface NetworkImpairment {
|
|
|
213
244
|
NetworkEventType: TriangulationEventType | string | undefined;
|
|
214
245
|
}
|
|
215
246
|
/**
|
|
247
|
+
* @public
|
|
216
248
|
* <p>Round-trip time (RTT) is how long it takes for a request from the user to return a response to the user. Amazon CloudWatch Internet Monitor calculates RTT at different
|
|
217
249
|
* percentiles: p50, p90, and p95.</p>
|
|
218
250
|
*/
|
|
@@ -231,6 +263,7 @@ export interface RoundTripTime {
|
|
|
231
263
|
P95?: number;
|
|
232
264
|
}
|
|
233
265
|
/**
|
|
266
|
+
* @public
|
|
234
267
|
* <p>Measurements about the performance for your application on the internet calculated by Amazon CloudWatch Internet Monitor. Amazon Web Services has substantial historical data about internet
|
|
235
268
|
* performance and availability between Amazon Web Services services and different network providers and geographies. By applying statistical analysis to the data, Internet Monitor
|
|
236
269
|
* can detect when the performance and availability for your application has dropped, compared to an estimated baseline that's already calculated. To make it
|
|
@@ -272,6 +305,7 @@ export interface PerformanceMeasurement {
|
|
|
272
305
|
RoundTripTime?: RoundTripTime;
|
|
273
306
|
}
|
|
274
307
|
/**
|
|
308
|
+
* @public
|
|
275
309
|
* <p>Internet health includes measurements calculated by Amazon CloudWatch Internet Monitor about the performance and availability for your application on the internet. Amazon Web Services has
|
|
276
310
|
* substantial historical data about internet performance and availability between Amazon Web Services services and different network providers and geographies. By
|
|
277
311
|
* applying statistical analysis to the data, Internet Monitor can detect when the performance and availability for your application has dropped, compared to an
|
|
@@ -294,11 +328,15 @@ export interface InternetHealth {
|
|
|
294
328
|
*/
|
|
295
329
|
Performance?: PerformanceMeasurement;
|
|
296
330
|
}
|
|
331
|
+
/**
|
|
332
|
+
* @public
|
|
333
|
+
*/
|
|
297
334
|
export declare enum HealthEventStatus {
|
|
298
335
|
ACTIVE = "ACTIVE",
|
|
299
336
|
RESOLVED = "RESOLVED"
|
|
300
337
|
}
|
|
301
338
|
/**
|
|
339
|
+
* @public
|
|
302
340
|
* <p>Information about a location impacted by a health event in Amazon CloudWatch Internet Monitor.</p>
|
|
303
341
|
* <p>Geographic regions are hierarchically categorized into country, subdivision,
|
|
304
342
|
* metro and city geographic granularities. The geographic region is identified based
|
|
@@ -370,10 +408,16 @@ export interface ImpactedLocation {
|
|
|
370
408
|
*/
|
|
371
409
|
InternetHealth?: InternetHealth;
|
|
372
410
|
}
|
|
411
|
+
/**
|
|
412
|
+
* @public
|
|
413
|
+
*/
|
|
373
414
|
export declare enum HealthEventImpactType {
|
|
374
415
|
AVAILABILITY = "AVAILABILITY",
|
|
375
416
|
PERFORMANCE = "PERFORMANCE"
|
|
376
417
|
}
|
|
418
|
+
/**
|
|
419
|
+
* @public
|
|
420
|
+
*/
|
|
377
421
|
export interface GetHealthEventOutput {
|
|
378
422
|
/**
|
|
379
423
|
* <p>The Amazon Resource Name (ARN) of the event.</p>
|
|
@@ -416,12 +460,18 @@ export interface GetHealthEventOutput {
|
|
|
416
460
|
*/
|
|
417
461
|
ImpactType: HealthEventImpactType | string | undefined;
|
|
418
462
|
}
|
|
463
|
+
/**
|
|
464
|
+
* @public
|
|
465
|
+
*/
|
|
419
466
|
export interface GetMonitorInput {
|
|
420
467
|
/**
|
|
421
468
|
* <p>The name of the monitor.</p>
|
|
422
469
|
*/
|
|
423
470
|
MonitorName: string | undefined;
|
|
424
471
|
}
|
|
472
|
+
/**
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
425
475
|
export declare enum MonitorProcessingStatusCode {
|
|
426
476
|
COLLECTING_DATA = "COLLECTING_DATA",
|
|
427
477
|
FAULT_ACCESS_CLOUDWATCH = "FAULT_ACCESS_CLOUDWATCH",
|
|
@@ -430,6 +480,9 @@ export declare enum MonitorProcessingStatusCode {
|
|
|
430
480
|
INSUFFICIENT_DATA = "INSUFFICIENT_DATA",
|
|
431
481
|
OK = "OK"
|
|
432
482
|
}
|
|
483
|
+
/**
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
433
486
|
export interface GetMonitorOutput {
|
|
434
487
|
/**
|
|
435
488
|
* <p>The name of the monitor.</p>
|
|
@@ -474,6 +527,7 @@ export interface GetMonitorOutput {
|
|
|
474
527
|
MaxCityNetworksToMonitor: number | undefined;
|
|
475
528
|
}
|
|
476
529
|
/**
|
|
530
|
+
* @public
|
|
477
531
|
* <p>Information about a health event created in a monitor in Amazon CloudWatch Internet Monitor.</p>
|
|
478
532
|
*/
|
|
479
533
|
export interface HealthEvent {
|
|
@@ -518,6 +572,9 @@ export interface HealthEvent {
|
|
|
518
572
|
*/
|
|
519
573
|
ImpactType: HealthEventImpactType | string | undefined;
|
|
520
574
|
}
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
521
578
|
export interface ListHealthEventsInput {
|
|
522
579
|
/**
|
|
523
580
|
* <p>The name of the monitor.</p>
|
|
@@ -544,6 +601,9 @@ export interface ListHealthEventsInput {
|
|
|
544
601
|
*/
|
|
545
602
|
EventStatus?: HealthEventStatus | string;
|
|
546
603
|
}
|
|
604
|
+
/**
|
|
605
|
+
* @public
|
|
606
|
+
*/
|
|
547
607
|
export interface ListHealthEventsOutput {
|
|
548
608
|
/**
|
|
549
609
|
* <p>A list of health events.</p>
|
|
@@ -555,6 +615,7 @@ export interface ListHealthEventsOutput {
|
|
|
555
615
|
NextToken?: string;
|
|
556
616
|
}
|
|
557
617
|
/**
|
|
618
|
+
* @public
|
|
558
619
|
* <p>There was an internal server error.</p>
|
|
559
620
|
*/
|
|
560
621
|
export declare class InternalServerErrorException extends __BaseException {
|
|
@@ -566,12 +627,18 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
566
627
|
*/
|
|
567
628
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
568
629
|
}
|
|
630
|
+
/**
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
569
633
|
export interface ListTagsForResourceInput {
|
|
570
634
|
/**
|
|
571
635
|
* <p>The Amazon Resource Name (ARN) for a resource.</p>
|
|
572
636
|
*/
|
|
573
637
|
ResourceArn: string | undefined;
|
|
574
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
575
642
|
export interface ListTagsForResourceOutput {
|
|
576
643
|
/**
|
|
577
644
|
* <p>Tags for a resource.</p>
|
|
@@ -579,6 +646,7 @@ export interface ListTagsForResourceOutput {
|
|
|
579
646
|
Tags?: Record<string, string>;
|
|
580
647
|
}
|
|
581
648
|
/**
|
|
649
|
+
* @public
|
|
582
650
|
* <p>The request specifies something that doesn't exist.</p>
|
|
583
651
|
*/
|
|
584
652
|
export declare class NotFoundException extends __BaseException {
|
|
@@ -590,6 +658,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
590
658
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
591
659
|
}
|
|
592
660
|
/**
|
|
661
|
+
* @public
|
|
593
662
|
* <p>There were too many requests.</p>
|
|
594
663
|
*/
|
|
595
664
|
export declare class TooManyRequestsException extends __BaseException {
|
|
@@ -603,6 +672,9 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
603
672
|
*/
|
|
604
673
|
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
605
674
|
}
|
|
675
|
+
/**
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
606
678
|
export interface ListMonitorsInput {
|
|
607
679
|
/**
|
|
608
680
|
* <p>The token for the next set of results. You receive this token from a previous call.</p>
|
|
@@ -620,6 +692,7 @@ export interface ListMonitorsInput {
|
|
|
620
692
|
MonitorStatus?: string;
|
|
621
693
|
}
|
|
622
694
|
/**
|
|
695
|
+
* @public
|
|
623
696
|
* <p>The description of and information about a monitor in Amazon CloudWatch Internet Monitor. </p>
|
|
624
697
|
*/
|
|
625
698
|
export interface Monitor {
|
|
@@ -640,6 +713,9 @@ export interface Monitor {
|
|
|
640
713
|
*/
|
|
641
714
|
ProcessingStatus?: MonitorProcessingStatusCode | string;
|
|
642
715
|
}
|
|
716
|
+
/**
|
|
717
|
+
* @public
|
|
718
|
+
*/
|
|
643
719
|
export interface ListMonitorsOutput {
|
|
644
720
|
/**
|
|
645
721
|
* <p>A list of monitors.</p>
|
|
@@ -651,6 +727,7 @@ export interface ListMonitorsOutput {
|
|
|
651
727
|
NextToken?: string;
|
|
652
728
|
}
|
|
653
729
|
/**
|
|
730
|
+
* @public
|
|
654
731
|
* <p>The request specifies a resource that doesn't exist.</p>
|
|
655
732
|
*/
|
|
656
733
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -661,6 +738,9 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
661
738
|
*/
|
|
662
739
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
663
740
|
}
|
|
741
|
+
/**
|
|
742
|
+
* @public
|
|
743
|
+
*/
|
|
664
744
|
export interface UpdateMonitorInput {
|
|
665
745
|
/**
|
|
666
746
|
* <p>The name of the monitor. </p>
|
|
@@ -696,6 +776,9 @@ export interface UpdateMonitorInput {
|
|
|
696
776
|
*/
|
|
697
777
|
MaxCityNetworksToMonitor?: number;
|
|
698
778
|
}
|
|
779
|
+
/**
|
|
780
|
+
* @public
|
|
781
|
+
*/
|
|
699
782
|
export interface UpdateMonitorOutput {
|
|
700
783
|
/**
|
|
701
784
|
* <p>The Amazon Resource Name (ARN) of the monitor.</p>
|
|
@@ -706,6 +789,9 @@ export interface UpdateMonitorOutput {
|
|
|
706
789
|
*/
|
|
707
790
|
Status: MonitorConfigState | string | undefined;
|
|
708
791
|
}
|
|
792
|
+
/**
|
|
793
|
+
* @public
|
|
794
|
+
*/
|
|
709
795
|
export interface TagResourceInput {
|
|
710
796
|
/**
|
|
711
797
|
* <p>The Amazon Resource Name (ARN) for a tag that you add to a resource. Tags are supported only for monitors in Amazon CloudWatch Internet Monitor.</p>
|
|
@@ -716,8 +802,14 @@ export interface TagResourceInput {
|
|
|
716
802
|
*/
|
|
717
803
|
Tags: Record<string, string> | undefined;
|
|
718
804
|
}
|
|
805
|
+
/**
|
|
806
|
+
* @public
|
|
807
|
+
*/
|
|
719
808
|
export interface TagResourceOutput {
|
|
720
809
|
}
|
|
810
|
+
/**
|
|
811
|
+
* @public
|
|
812
|
+
*/
|
|
721
813
|
export interface UntagResourceInput {
|
|
722
814
|
/**
|
|
723
815
|
* <p>The Amazon Resource Name (ARN) for a tag you remove a resource from.</p>
|
|
@@ -728,121 +820,8 @@ export interface UntagResourceInput {
|
|
|
728
820
|
*/
|
|
729
821
|
TagKeys: string[] | undefined;
|
|
730
822
|
}
|
|
731
|
-
export interface UntagResourceOutput {
|
|
732
|
-
}
|
|
733
|
-
/**
|
|
734
|
-
* @internal
|
|
735
|
-
*/
|
|
736
|
-
export declare const AvailabilityMeasurementFilterSensitiveLog: (obj: AvailabilityMeasurement) => any;
|
|
737
|
-
/**
|
|
738
|
-
* @internal
|
|
739
|
-
*/
|
|
740
|
-
export declare const CreateMonitorInputFilterSensitiveLog: (obj: CreateMonitorInput) => any;
|
|
741
823
|
/**
|
|
742
|
-
* @
|
|
824
|
+
* @public
|
|
743
825
|
*/
|
|
744
|
-
export
|
|
745
|
-
|
|
746
|
-
* @internal
|
|
747
|
-
*/
|
|
748
|
-
export declare const DeleteMonitorInputFilterSensitiveLog: (obj: DeleteMonitorInput) => any;
|
|
749
|
-
/**
|
|
750
|
-
* @internal
|
|
751
|
-
*/
|
|
752
|
-
export declare const DeleteMonitorOutputFilterSensitiveLog: (obj: DeleteMonitorOutput) => any;
|
|
753
|
-
/**
|
|
754
|
-
* @internal
|
|
755
|
-
*/
|
|
756
|
-
export declare const GetHealthEventInputFilterSensitiveLog: (obj: GetHealthEventInput) => any;
|
|
757
|
-
/**
|
|
758
|
-
* @internal
|
|
759
|
-
*/
|
|
760
|
-
export declare const NetworkFilterSensitiveLog: (obj: Network) => any;
|
|
761
|
-
/**
|
|
762
|
-
* @internal
|
|
763
|
-
*/
|
|
764
|
-
export declare const NetworkImpairmentFilterSensitiveLog: (obj: NetworkImpairment) => any;
|
|
765
|
-
/**
|
|
766
|
-
* @internal
|
|
767
|
-
*/
|
|
768
|
-
export declare const RoundTripTimeFilterSensitiveLog: (obj: RoundTripTime) => any;
|
|
769
|
-
/**
|
|
770
|
-
* @internal
|
|
771
|
-
*/
|
|
772
|
-
export declare const PerformanceMeasurementFilterSensitiveLog: (obj: PerformanceMeasurement) => any;
|
|
773
|
-
/**
|
|
774
|
-
* @internal
|
|
775
|
-
*/
|
|
776
|
-
export declare const InternetHealthFilterSensitiveLog: (obj: InternetHealth) => any;
|
|
777
|
-
/**
|
|
778
|
-
* @internal
|
|
779
|
-
*/
|
|
780
|
-
export declare const ImpactedLocationFilterSensitiveLog: (obj: ImpactedLocation) => any;
|
|
781
|
-
/**
|
|
782
|
-
* @internal
|
|
783
|
-
*/
|
|
784
|
-
export declare const GetHealthEventOutputFilterSensitiveLog: (obj: GetHealthEventOutput) => any;
|
|
785
|
-
/**
|
|
786
|
-
* @internal
|
|
787
|
-
*/
|
|
788
|
-
export declare const GetMonitorInputFilterSensitiveLog: (obj: GetMonitorInput) => any;
|
|
789
|
-
/**
|
|
790
|
-
* @internal
|
|
791
|
-
*/
|
|
792
|
-
export declare const GetMonitorOutputFilterSensitiveLog: (obj: GetMonitorOutput) => any;
|
|
793
|
-
/**
|
|
794
|
-
* @internal
|
|
795
|
-
*/
|
|
796
|
-
export declare const HealthEventFilterSensitiveLog: (obj: HealthEvent) => any;
|
|
797
|
-
/**
|
|
798
|
-
* @internal
|
|
799
|
-
*/
|
|
800
|
-
export declare const ListHealthEventsInputFilterSensitiveLog: (obj: ListHealthEventsInput) => any;
|
|
801
|
-
/**
|
|
802
|
-
* @internal
|
|
803
|
-
*/
|
|
804
|
-
export declare const ListHealthEventsOutputFilterSensitiveLog: (obj: ListHealthEventsOutput) => any;
|
|
805
|
-
/**
|
|
806
|
-
* @internal
|
|
807
|
-
*/
|
|
808
|
-
export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
809
|
-
/**
|
|
810
|
-
* @internal
|
|
811
|
-
*/
|
|
812
|
-
export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
813
|
-
/**
|
|
814
|
-
* @internal
|
|
815
|
-
*/
|
|
816
|
-
export declare const ListMonitorsInputFilterSensitiveLog: (obj: ListMonitorsInput) => any;
|
|
817
|
-
/**
|
|
818
|
-
* @internal
|
|
819
|
-
*/
|
|
820
|
-
export declare const MonitorFilterSensitiveLog: (obj: Monitor) => any;
|
|
821
|
-
/**
|
|
822
|
-
* @internal
|
|
823
|
-
*/
|
|
824
|
-
export declare const ListMonitorsOutputFilterSensitiveLog: (obj: ListMonitorsOutput) => any;
|
|
825
|
-
/**
|
|
826
|
-
* @internal
|
|
827
|
-
*/
|
|
828
|
-
export declare const UpdateMonitorInputFilterSensitiveLog: (obj: UpdateMonitorInput) => any;
|
|
829
|
-
/**
|
|
830
|
-
* @internal
|
|
831
|
-
*/
|
|
832
|
-
export declare const UpdateMonitorOutputFilterSensitiveLog: (obj: UpdateMonitorOutput) => any;
|
|
833
|
-
/**
|
|
834
|
-
* @internal
|
|
835
|
-
*/
|
|
836
|
-
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|
|
837
|
-
/**
|
|
838
|
-
* @internal
|
|
839
|
-
*/
|
|
840
|
-
export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
841
|
-
/**
|
|
842
|
-
* @internal
|
|
843
|
-
*/
|
|
844
|
-
export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
845
|
-
/**
|
|
846
|
-
* @internal
|
|
847
|
-
*/
|
|
848
|
-
export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
826
|
+
export interface UntagResourceOutput {
|
|
827
|
+
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { InternetMonitorClient } from "../InternetMonitorClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface InternetMonitorPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: InternetMonitorClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListHealthEventsCommandInput, ListHealthEventsCommandOutput } from "../commands/ListHealthEventsCommand";
|
|
3
3
|
import { InternetMonitorPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListHealthEvents(config: InternetMonitorPaginationConfiguration, input: ListHealthEventsCommandInput, ...additionalArguments: any): Paginator<ListHealthEventsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "../commands/ListMonitorsCommand";
|
|
3
3
|
import { InternetMonitorPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListMonitors(config: InternetMonitorPaginationConfiguration, input: ListMonitorsCommandInput, ...additionalArguments: any): Paginator<ListMonitorsCommandOutput>;
|
|
@@ -265,84 +265,3 @@ export interface UntagResourceInput {
|
|
|
265
265
|
TagKeys: string[] | undefined;
|
|
266
266
|
}
|
|
267
267
|
export interface UntagResourceOutput {}
|
|
268
|
-
export declare const AvailabilityMeasurementFilterSensitiveLog: (
|
|
269
|
-
obj: AvailabilityMeasurement
|
|
270
|
-
) => any;
|
|
271
|
-
export declare const CreateMonitorInputFilterSensitiveLog: (
|
|
272
|
-
obj: CreateMonitorInput
|
|
273
|
-
) => any;
|
|
274
|
-
export declare const CreateMonitorOutputFilterSensitiveLog: (
|
|
275
|
-
obj: CreateMonitorOutput
|
|
276
|
-
) => any;
|
|
277
|
-
export declare const DeleteMonitorInputFilterSensitiveLog: (
|
|
278
|
-
obj: DeleteMonitorInput
|
|
279
|
-
) => any;
|
|
280
|
-
export declare const DeleteMonitorOutputFilterSensitiveLog: (
|
|
281
|
-
obj: DeleteMonitorOutput
|
|
282
|
-
) => any;
|
|
283
|
-
export declare const GetHealthEventInputFilterSensitiveLog: (
|
|
284
|
-
obj: GetHealthEventInput
|
|
285
|
-
) => any;
|
|
286
|
-
export declare const NetworkFilterSensitiveLog: (obj: Network) => any;
|
|
287
|
-
export declare const NetworkImpairmentFilterSensitiveLog: (
|
|
288
|
-
obj: NetworkImpairment
|
|
289
|
-
) => any;
|
|
290
|
-
export declare const RoundTripTimeFilterSensitiveLog: (
|
|
291
|
-
obj: RoundTripTime
|
|
292
|
-
) => any;
|
|
293
|
-
export declare const PerformanceMeasurementFilterSensitiveLog: (
|
|
294
|
-
obj: PerformanceMeasurement
|
|
295
|
-
) => any;
|
|
296
|
-
export declare const InternetHealthFilterSensitiveLog: (
|
|
297
|
-
obj: InternetHealth
|
|
298
|
-
) => any;
|
|
299
|
-
export declare const ImpactedLocationFilterSensitiveLog: (
|
|
300
|
-
obj: ImpactedLocation
|
|
301
|
-
) => any;
|
|
302
|
-
export declare const GetHealthEventOutputFilterSensitiveLog: (
|
|
303
|
-
obj: GetHealthEventOutput
|
|
304
|
-
) => any;
|
|
305
|
-
export declare const GetMonitorInputFilterSensitiveLog: (
|
|
306
|
-
obj: GetMonitorInput
|
|
307
|
-
) => any;
|
|
308
|
-
export declare const GetMonitorOutputFilterSensitiveLog: (
|
|
309
|
-
obj: GetMonitorOutput
|
|
310
|
-
) => any;
|
|
311
|
-
export declare const HealthEventFilterSensitiveLog: (obj: HealthEvent) => any;
|
|
312
|
-
export declare const ListHealthEventsInputFilterSensitiveLog: (
|
|
313
|
-
obj: ListHealthEventsInput
|
|
314
|
-
) => any;
|
|
315
|
-
export declare const ListHealthEventsOutputFilterSensitiveLog: (
|
|
316
|
-
obj: ListHealthEventsOutput
|
|
317
|
-
) => any;
|
|
318
|
-
export declare const ListTagsForResourceInputFilterSensitiveLog: (
|
|
319
|
-
obj: ListTagsForResourceInput
|
|
320
|
-
) => any;
|
|
321
|
-
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
322
|
-
obj: ListTagsForResourceOutput
|
|
323
|
-
) => any;
|
|
324
|
-
export declare const ListMonitorsInputFilterSensitiveLog: (
|
|
325
|
-
obj: ListMonitorsInput
|
|
326
|
-
) => any;
|
|
327
|
-
export declare const MonitorFilterSensitiveLog: (obj: Monitor) => any;
|
|
328
|
-
export declare const ListMonitorsOutputFilterSensitiveLog: (
|
|
329
|
-
obj: ListMonitorsOutput
|
|
330
|
-
) => any;
|
|
331
|
-
export declare const UpdateMonitorInputFilterSensitiveLog: (
|
|
332
|
-
obj: UpdateMonitorInput
|
|
333
|
-
) => any;
|
|
334
|
-
export declare const UpdateMonitorOutputFilterSensitiveLog: (
|
|
335
|
-
obj: UpdateMonitorOutput
|
|
336
|
-
) => any;
|
|
337
|
-
export declare const TagResourceInputFilterSensitiveLog: (
|
|
338
|
-
obj: TagResourceInput
|
|
339
|
-
) => any;
|
|
340
|
-
export declare const TagResourceOutputFilterSensitiveLog: (
|
|
341
|
-
obj: TagResourceOutput
|
|
342
|
-
) => any;
|
|
343
|
-
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
344
|
-
obj: UntagResourceInput
|
|
345
|
-
) => any;
|
|
346
|
-
export declare const UntagResourceOutputFilterSensitiveLog: (
|
|
347
|
-
obj: UntagResourceOutput
|
|
348
|
-
) => any;
|
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.
|
|
4
|
+
"version": "3.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo internetmonitor"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|