@aws-sdk/client-internetmonitor 3.427.0 → 3.429.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-types/models/models_0.d.ts +16 -16
- package/dist-types/ts3.4/models/models_0.d.ts +16 -16
- package/package.json +31 -31
|
@@ -104,7 +104,7 @@ export interface LocalHealthEventsConfig {
|
|
|
104
104
|
* <p>The status of whether Internet Monitor creates a health event based on a threshold percentage set for a local health score. The status can be <code>ENABLED</code>
|
|
105
105
|
* or <code>DISABLED</code>.</p>
|
|
106
106
|
*/
|
|
107
|
-
Status?: LocalHealthEventsConfigStatus
|
|
107
|
+
Status?: LocalHealthEventsConfigStatus;
|
|
108
108
|
/**
|
|
109
109
|
* @public
|
|
110
110
|
* <p>The health event threshold percentage set for a local health score.</p>
|
|
@@ -187,7 +187,7 @@ export interface S3Config {
|
|
|
187
187
|
* @public
|
|
188
188
|
* <p>The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.</p>
|
|
189
189
|
*/
|
|
190
|
-
LogDeliveryStatus?: LogDeliveryStatus
|
|
190
|
+
LogDeliveryStatus?: LogDeliveryStatus;
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
193
193
|
* @public
|
|
@@ -294,7 +294,7 @@ export interface CreateMonitorOutput {
|
|
|
294
294
|
* @public
|
|
295
295
|
* <p>The status of a monitor.</p>
|
|
296
296
|
*/
|
|
297
|
-
Status: MonitorConfigState |
|
|
297
|
+
Status: MonitorConfigState | undefined;
|
|
298
298
|
}
|
|
299
299
|
/**
|
|
300
300
|
* @public
|
|
@@ -426,7 +426,7 @@ export interface NetworkImpairment {
|
|
|
426
426
|
* @public
|
|
427
427
|
* <p>Type of network impairment.</p>
|
|
428
428
|
*/
|
|
429
|
-
NetworkEventType: TriangulationEventType |
|
|
429
|
+
NetworkEventType: TriangulationEventType | undefined;
|
|
430
430
|
}
|
|
431
431
|
/**
|
|
432
432
|
* @public
|
|
@@ -610,7 +610,7 @@ export interface ImpactedLocation {
|
|
|
610
610
|
* @public
|
|
611
611
|
* <p>The status of the health event at an impacted location.</p>
|
|
612
612
|
*/
|
|
613
|
-
Status: HealthEventStatus |
|
|
613
|
+
Status: HealthEventStatus | undefined;
|
|
614
614
|
/**
|
|
615
615
|
* @public
|
|
616
616
|
* <p>The cause of the impairment. There are two types of network impairments: Amazon Web Services network issues
|
|
@@ -680,7 +680,7 @@ export interface GetHealthEventOutput {
|
|
|
680
680
|
* @public
|
|
681
681
|
* <p>The status of a health event.</p>
|
|
682
682
|
*/
|
|
683
|
-
Status: HealthEventStatus |
|
|
683
|
+
Status: HealthEventStatus | undefined;
|
|
684
684
|
/**
|
|
685
685
|
* @public
|
|
686
686
|
* <p>The impact on total traffic that a health event has, in increased latency or reduced availability. This is the
|
|
@@ -692,7 +692,7 @@ export interface GetHealthEventOutput {
|
|
|
692
692
|
* @public
|
|
693
693
|
* <p>The type of impairment of a specific health event.</p>
|
|
694
694
|
*/
|
|
695
|
-
ImpactType: HealthEventImpactType |
|
|
695
|
+
ImpactType: HealthEventImpactType | undefined;
|
|
696
696
|
/**
|
|
697
697
|
* @public
|
|
698
698
|
* <p>The threshold percentage for a health score that determines, along with other configuration information,
|
|
@@ -749,7 +749,7 @@ export interface GetMonitorOutput {
|
|
|
749
749
|
* @public
|
|
750
750
|
* <p>The status of the monitor.</p>
|
|
751
751
|
*/
|
|
752
|
-
Status: MonitorConfigState |
|
|
752
|
+
Status: MonitorConfigState | undefined;
|
|
753
753
|
/**
|
|
754
754
|
* @public
|
|
755
755
|
* <p>The time when the monitor was created.</p>
|
|
@@ -764,7 +764,7 @@ export interface GetMonitorOutput {
|
|
|
764
764
|
* @public
|
|
765
765
|
* <p>The health of the data processing for the monitor.</p>
|
|
766
766
|
*/
|
|
767
|
-
ProcessingStatus?: MonitorProcessingStatusCode
|
|
767
|
+
ProcessingStatus?: MonitorProcessingStatusCode;
|
|
768
768
|
/**
|
|
769
769
|
* @public
|
|
770
770
|
* <p>Additional information about the health of the data processing for the monitor.</p>
|
|
@@ -850,7 +850,7 @@ export interface HealthEvent {
|
|
|
850
850
|
* @public
|
|
851
851
|
* <p>Health event list member.</p>
|
|
852
852
|
*/
|
|
853
|
-
Status: HealthEventStatus |
|
|
853
|
+
Status: HealthEventStatus | undefined;
|
|
854
854
|
/**
|
|
855
855
|
* @public
|
|
856
856
|
* <p>The impact on total traffic that a health event has, in increased latency or reduced availability. This is the
|
|
@@ -862,7 +862,7 @@ export interface HealthEvent {
|
|
|
862
862
|
* @public
|
|
863
863
|
* <p>The type of impairment for a health event.</p>
|
|
864
864
|
*/
|
|
865
|
-
ImpactType: HealthEventImpactType |
|
|
865
|
+
ImpactType: HealthEventImpactType | undefined;
|
|
866
866
|
/**
|
|
867
867
|
* @public
|
|
868
868
|
* <p>The value of the threshold percentage for performance or availability that was configured when Amazon CloudWatch Internet Monitor created the health event.</p>
|
|
@@ -902,7 +902,7 @@ export interface ListHealthEventsInput {
|
|
|
902
902
|
* @public
|
|
903
903
|
* <p>The status of a health event.</p>
|
|
904
904
|
*/
|
|
905
|
-
EventStatus?: HealthEventStatus
|
|
905
|
+
EventStatus?: HealthEventStatus;
|
|
906
906
|
}
|
|
907
907
|
/**
|
|
908
908
|
* @public
|
|
@@ -1020,12 +1020,12 @@ export interface Monitor {
|
|
|
1020
1020
|
* @public
|
|
1021
1021
|
* <p>The status of a monitor.</p>
|
|
1022
1022
|
*/
|
|
1023
|
-
Status: MonitorConfigState |
|
|
1023
|
+
Status: MonitorConfigState | undefined;
|
|
1024
1024
|
/**
|
|
1025
1025
|
* @public
|
|
1026
1026
|
* <p>The health of data processing for the monitor.</p>
|
|
1027
1027
|
*/
|
|
1028
|
-
ProcessingStatus?: MonitorProcessingStatusCode
|
|
1028
|
+
ProcessingStatus?: MonitorProcessingStatusCode;
|
|
1029
1029
|
}
|
|
1030
1030
|
/**
|
|
1031
1031
|
* @public
|
|
@@ -1085,7 +1085,7 @@ export interface UpdateMonitorInput {
|
|
|
1085
1085
|
* <p>The status for a monitor. The accepted values for <code>Status</code> with the <code>UpdateMonitor</code> API call are the following: <code>ACTIVE</code> and
|
|
1086
1086
|
* <code>INACTIVE</code>. The following values are <i>not</i> accepted: <code>PENDING</code>, and <code>ERROR</code>.</p>
|
|
1087
1087
|
*/
|
|
1088
|
-
Status?: MonitorConfigState
|
|
1088
|
+
Status?: MonitorConfigState;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* @public
|
|
1091
1091
|
* <p>A unique, case-sensitive string of up to 64 ASCII characters that you specify to make an idempotent API request. You should not reuse the same client
|
|
@@ -1134,7 +1134,7 @@ export interface UpdateMonitorOutput {
|
|
|
1134
1134
|
* @public
|
|
1135
1135
|
* <p>The status of a monitor.</p>
|
|
1136
1136
|
*/
|
|
1137
|
-
Status: MonitorConfigState |
|
|
1137
|
+
Status: MonitorConfigState | undefined;
|
|
1138
1138
|
}
|
|
1139
1139
|
/**
|
|
1140
1140
|
* @public
|
|
@@ -31,7 +31,7 @@ export declare const LocalHealthEventsConfigStatus: {
|
|
|
31
31
|
export type LocalHealthEventsConfigStatus =
|
|
32
32
|
(typeof LocalHealthEventsConfigStatus)[keyof typeof LocalHealthEventsConfigStatus];
|
|
33
33
|
export interface LocalHealthEventsConfig {
|
|
34
|
-
Status?: LocalHealthEventsConfigStatus
|
|
34
|
+
Status?: LocalHealthEventsConfigStatus;
|
|
35
35
|
HealthScoreThreshold?: number;
|
|
36
36
|
MinTrafficImpact?: number;
|
|
37
37
|
}
|
|
@@ -50,7 +50,7 @@ export type LogDeliveryStatus =
|
|
|
50
50
|
export interface S3Config {
|
|
51
51
|
BucketName?: string;
|
|
52
52
|
BucketPrefix?: string;
|
|
53
|
-
LogDeliveryStatus?: LogDeliveryStatus
|
|
53
|
+
LogDeliveryStatus?: LogDeliveryStatus;
|
|
54
54
|
}
|
|
55
55
|
export interface InternetMeasurementsLogDelivery {
|
|
56
56
|
S3Config?: S3Config;
|
|
@@ -75,7 +75,7 @@ export type MonitorConfigState =
|
|
|
75
75
|
(typeof MonitorConfigState)[keyof typeof MonitorConfigState];
|
|
76
76
|
export interface CreateMonitorOutput {
|
|
77
77
|
Arn: string | undefined;
|
|
78
|
-
Status: MonitorConfigState |
|
|
78
|
+
Status: MonitorConfigState | undefined;
|
|
79
79
|
}
|
|
80
80
|
export declare class InternalServerException extends __BaseException {
|
|
81
81
|
readonly name: "InternalServerException";
|
|
@@ -130,7 +130,7 @@ export type TriangulationEventType =
|
|
|
130
130
|
export interface NetworkImpairment {
|
|
131
131
|
Networks: Network[] | undefined;
|
|
132
132
|
AsPath: Network[] | undefined;
|
|
133
|
-
NetworkEventType: TriangulationEventType |
|
|
133
|
+
NetworkEventType: TriangulationEventType | undefined;
|
|
134
134
|
}
|
|
135
135
|
export interface RoundTripTime {
|
|
136
136
|
P50?: number;
|
|
@@ -165,7 +165,7 @@ export interface ImpactedLocation {
|
|
|
165
165
|
CountryCode?: string;
|
|
166
166
|
SubdivisionCode?: string;
|
|
167
167
|
ServiceLocation?: string;
|
|
168
|
-
Status: HealthEventStatus |
|
|
168
|
+
Status: HealthEventStatus | undefined;
|
|
169
169
|
CausedBy?: NetworkImpairment;
|
|
170
170
|
InternetHealth?: InternetHealth;
|
|
171
171
|
}
|
|
@@ -185,9 +185,9 @@ export interface GetHealthEventOutput {
|
|
|
185
185
|
CreatedAt?: Date;
|
|
186
186
|
LastUpdatedAt: Date | undefined;
|
|
187
187
|
ImpactedLocations: ImpactedLocation[] | undefined;
|
|
188
|
-
Status: HealthEventStatus |
|
|
188
|
+
Status: HealthEventStatus | undefined;
|
|
189
189
|
PercentOfTotalTrafficImpacted?: number;
|
|
190
|
-
ImpactType: HealthEventImpactType |
|
|
190
|
+
ImpactType: HealthEventImpactType | undefined;
|
|
191
191
|
HealthScoreThreshold?: number;
|
|
192
192
|
}
|
|
193
193
|
export interface GetMonitorInput {
|
|
@@ -207,10 +207,10 @@ export interface GetMonitorOutput {
|
|
|
207
207
|
MonitorName: string | undefined;
|
|
208
208
|
MonitorArn: string | undefined;
|
|
209
209
|
Resources: string[] | undefined;
|
|
210
|
-
Status: MonitorConfigState |
|
|
210
|
+
Status: MonitorConfigState | undefined;
|
|
211
211
|
CreatedAt: Date | undefined;
|
|
212
212
|
ModifiedAt: Date | undefined;
|
|
213
|
-
ProcessingStatus?: MonitorProcessingStatusCode
|
|
213
|
+
ProcessingStatus?: MonitorProcessingStatusCode;
|
|
214
214
|
ProcessingStatusInfo?: string;
|
|
215
215
|
Tags?: Record<string, string>;
|
|
216
216
|
MaxCityNetworksToMonitor?: number;
|
|
@@ -226,9 +226,9 @@ export interface HealthEvent {
|
|
|
226
226
|
CreatedAt?: Date;
|
|
227
227
|
LastUpdatedAt: Date | undefined;
|
|
228
228
|
ImpactedLocations: ImpactedLocation[] | undefined;
|
|
229
|
-
Status: HealthEventStatus |
|
|
229
|
+
Status: HealthEventStatus | undefined;
|
|
230
230
|
PercentOfTotalTrafficImpacted?: number;
|
|
231
|
-
ImpactType: HealthEventImpactType |
|
|
231
|
+
ImpactType: HealthEventImpactType | undefined;
|
|
232
232
|
HealthScoreThreshold?: number;
|
|
233
233
|
}
|
|
234
234
|
export interface ListHealthEventsInput {
|
|
@@ -237,7 +237,7 @@ export interface ListHealthEventsInput {
|
|
|
237
237
|
EndTime?: Date;
|
|
238
238
|
NextToken?: string;
|
|
239
239
|
MaxResults?: number;
|
|
240
|
-
EventStatus?: HealthEventStatus
|
|
240
|
+
EventStatus?: HealthEventStatus;
|
|
241
241
|
}
|
|
242
242
|
export interface ListHealthEventsOutput {
|
|
243
243
|
HealthEvents: HealthEvent[] | undefined;
|
|
@@ -280,8 +280,8 @@ export interface ListMonitorsInput {
|
|
|
280
280
|
export interface Monitor {
|
|
281
281
|
MonitorName: string | undefined;
|
|
282
282
|
MonitorArn: string | undefined;
|
|
283
|
-
Status: MonitorConfigState |
|
|
284
|
-
ProcessingStatus?: MonitorProcessingStatusCode
|
|
283
|
+
Status: MonitorConfigState | undefined;
|
|
284
|
+
ProcessingStatus?: MonitorProcessingStatusCode;
|
|
285
285
|
}
|
|
286
286
|
export interface ListMonitorsOutput {
|
|
287
287
|
Monitors: Monitor[] | undefined;
|
|
@@ -298,7 +298,7 @@ export interface UpdateMonitorInput {
|
|
|
298
298
|
MonitorName: string | undefined;
|
|
299
299
|
ResourcesToAdd?: string[];
|
|
300
300
|
ResourcesToRemove?: string[];
|
|
301
|
-
Status?: MonitorConfigState
|
|
301
|
+
Status?: MonitorConfigState;
|
|
302
302
|
ClientToken?: string;
|
|
303
303
|
MaxCityNetworksToMonitor?: number;
|
|
304
304
|
InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery;
|
|
@@ -307,7 +307,7 @@ export interface UpdateMonitorInput {
|
|
|
307
307
|
}
|
|
308
308
|
export interface UpdateMonitorOutput {
|
|
309
309
|
MonitorArn: string | undefined;
|
|
310
|
-
Status: MonitorConfigState |
|
|
310
|
+
Status: MonitorConfigState | undefined;
|
|
311
311
|
}
|
|
312
312
|
export interface TagResourceInput {
|
|
313
313
|
ResourceArn: string | 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.
|
|
4
|
+
"version": "3.429.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|