aws-sdk 2.1602.0 → 2.1603.0

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
64
64
  To use the SDK in the browser, simply add the following script tag to your
65
65
  HTML pages:
66
66
 
67
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1602.0.min.js"></script>
67
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1603.0.min.js"></script>
68
68
 
69
69
  You can also build a custom browser SDK with your specified set of AWS services.
70
70
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -3879,7 +3879,8 @@
3879
3879
  },
3880
3880
  "Permissions": {
3881
3881
  "shape": "Seg"
3882
- }
3882
+ },
3883
+ "RowFilter": {}
3883
3884
  }
3884
3885
  }
3885
3886
  },
@@ -151,6 +151,51 @@
151
151
  }
152
152
  }
153
153
  },
154
+ "GetInternetEvent": {
155
+ "http": {
156
+ "method": "GET",
157
+ "requestUri": "/v20210603/InternetEvents/{EventId}",
158
+ "responseCode": 200
159
+ },
160
+ "input": {
161
+ "type": "structure",
162
+ "required": [
163
+ "EventId"
164
+ ],
165
+ "members": {
166
+ "EventId": {
167
+ "location": "uri",
168
+ "locationName": "EventId"
169
+ }
170
+ }
171
+ },
172
+ "output": {
173
+ "type": "structure",
174
+ "required": [
175
+ "EventId",
176
+ "EventArn",
177
+ "StartedAt",
178
+ "ClientLocation",
179
+ "EventType",
180
+ "EventStatus"
181
+ ],
182
+ "members": {
183
+ "EventId": {},
184
+ "EventArn": {},
185
+ "StartedAt": {
186
+ "shape": "Ss"
187
+ },
188
+ "EndedAt": {
189
+ "shape": "Ss"
190
+ },
191
+ "ClientLocation": {
192
+ "shape": "S1b"
193
+ },
194
+ "EventType": {},
195
+ "EventStatus": {}
196
+ }
197
+ }
198
+ },
154
199
  "GetMonitor": {
155
200
  "http": {
156
201
  "method": "GET",
@@ -406,6 +451,83 @@
406
451
  }
407
452
  }
408
453
  },
454
+ "ListInternetEvents": {
455
+ "http": {
456
+ "method": "GET",
457
+ "requestUri": "/v20210603/InternetEvents",
458
+ "responseCode": 200
459
+ },
460
+ "input": {
461
+ "type": "structure",
462
+ "members": {
463
+ "NextToken": {
464
+ "location": "querystring",
465
+ "locationName": "NextToken"
466
+ },
467
+ "MaxResults": {
468
+ "location": "querystring",
469
+ "locationName": "InternetEventMaxResults",
470
+ "type": "integer"
471
+ },
472
+ "StartTime": {
473
+ "shape": "Ss",
474
+ "location": "querystring",
475
+ "locationName": "StartTime"
476
+ },
477
+ "EndTime": {
478
+ "shape": "Ss",
479
+ "location": "querystring",
480
+ "locationName": "EndTime"
481
+ },
482
+ "EventStatus": {
483
+ "location": "querystring",
484
+ "locationName": "EventStatus"
485
+ },
486
+ "EventType": {
487
+ "location": "querystring",
488
+ "locationName": "EventType"
489
+ }
490
+ }
491
+ },
492
+ "output": {
493
+ "type": "structure",
494
+ "required": [
495
+ "InternetEvents"
496
+ ],
497
+ "members": {
498
+ "InternetEvents": {
499
+ "type": "list",
500
+ "member": {
501
+ "type": "structure",
502
+ "required": [
503
+ "EventId",
504
+ "EventArn",
505
+ "StartedAt",
506
+ "ClientLocation",
507
+ "EventType",
508
+ "EventStatus"
509
+ ],
510
+ "members": {
511
+ "EventId": {},
512
+ "EventArn": {},
513
+ "StartedAt": {
514
+ "shape": "Ss"
515
+ },
516
+ "EndedAt": {
517
+ "shape": "Ss"
518
+ },
519
+ "ClientLocation": {
520
+ "shape": "S1b"
521
+ },
522
+ "EventType": {},
523
+ "EventStatus": {}
524
+ }
525
+ }
526
+ },
527
+ "NextToken": {}
528
+ }
529
+ }
530
+ },
409
531
  "ListMonitors": {
410
532
  "http": {
411
533
  "method": "GET",
@@ -852,6 +974,33 @@
852
974
  }
853
975
  }
854
976
  }
977
+ },
978
+ "S1b": {
979
+ "type": "structure",
980
+ "required": [
981
+ "ASName",
982
+ "ASNumber",
983
+ "Country",
984
+ "City",
985
+ "Latitude",
986
+ "Longitude"
987
+ ],
988
+ "members": {
989
+ "ASName": {},
990
+ "ASNumber": {
991
+ "type": "long"
992
+ },
993
+ "Country": {},
994
+ "Subdivision": {},
995
+ "Metro": {},
996
+ "City": {},
997
+ "Latitude": {
998
+ "type": "double"
999
+ },
1000
+ "Longitude": {
1001
+ "type": "double"
1002
+ }
1003
+ }
855
1004
  }
856
1005
  }
857
1006
  }
@@ -11,6 +11,12 @@
11
11
  "limit_key": "MaxResults",
12
12
  "result_key": "HealthEvents"
13
13
  },
14
+ "ListInternetEvents": {
15
+ "input_token": "NextToken",
16
+ "output_token": "NextToken",
17
+ "limit_key": "MaxResults",
18
+ "result_key": "InternetEvents"
19
+ },
14
20
  "ListMonitors": {
15
21
  "input_token": "NextToken",
16
22
  "output_token": "NextToken",
@@ -375,11 +375,14 @@
375
375
  "performAutoML": {
376
376
  "type": "boolean"
377
377
  },
378
+ "performAutoTraining": {
379
+ "type": "boolean"
380
+ },
378
381
  "recipeArn": {},
379
382
  "datasetGroupArn": {},
380
383
  "eventType": {},
381
384
  "solutionConfig": {
382
- "shape": "S20"
385
+ "shape": "S21"
383
386
  },
384
387
  "tags": {
385
388
  "shape": "Sf"
@@ -599,7 +602,7 @@
599
602
  "members": {
600
603
  "name": {},
601
604
  "values": {
602
- "shape": "S2j"
605
+ "shape": "S2k"
603
606
  },
604
607
  "isTunable": {
605
608
  "type": "boolean"
@@ -1169,7 +1172,7 @@
1169
1172
  }
1170
1173
  },
1171
1174
  "modelMetrics": {
1172
- "shape": "S4w"
1175
+ "shape": "S4z"
1173
1176
  }
1174
1177
  }
1175
1178
  }
@@ -1233,11 +1236,14 @@
1233
1236
  "performAutoML": {
1234
1237
  "type": "boolean"
1235
1238
  },
1239
+ "performAutoTraining": {
1240
+ "type": "boolean"
1241
+ },
1236
1242
  "recipeArn": {},
1237
1243
  "datasetGroupArn": {},
1238
1244
  "eventType": {},
1239
1245
  "solutionConfig": {
1240
- "shape": "S20"
1246
+ "shape": "S21"
1241
1247
  },
1242
1248
  "autoMLResult": {
1243
1249
  "type": "structure",
@@ -1253,7 +1259,7 @@
1253
1259
  "type": "timestamp"
1254
1260
  },
1255
1261
  "latestSolutionVersion": {
1256
- "shape": "S56"
1262
+ "shape": "S59"
1257
1263
  }
1258
1264
  }
1259
1265
  }
@@ -1290,7 +1296,7 @@
1290
1296
  "eventType": {},
1291
1297
  "datasetGroupArn": {},
1292
1298
  "solutionConfig": {
1293
- "shape": "S20"
1299
+ "shape": "S21"
1294
1300
  },
1295
1301
  "trainingHours": {
1296
1302
  "type": "double"
@@ -1311,7 +1317,8 @@
1311
1317
  },
1312
1318
  "lastUpdatedDateTime": {
1313
1319
  "type": "timestamp"
1314
- }
1320
+ },
1321
+ "trainingType": {}
1315
1322
  }
1316
1323
  }
1317
1324
  }
@@ -1333,7 +1340,7 @@
1333
1340
  "members": {
1334
1341
  "solutionVersionArn": {},
1335
1342
  "metrics": {
1336
- "shape": "S4w"
1343
+ "shape": "S4z"
1337
1344
  }
1338
1345
  }
1339
1346
  }
@@ -1865,7 +1872,7 @@
1865
1872
  "solutionVersions": {
1866
1873
  "type": "list",
1867
1874
  "member": {
1868
- "shape": "S56"
1875
+ "shape": "S59"
1869
1876
  }
1870
1877
  },
1871
1878
  "nextToken": {}
@@ -2215,6 +2222,9 @@
2215
2222
  },
2216
2223
  "enableMetadataWithRecommendations": {
2217
2224
  "type": "boolean"
2225
+ },
2226
+ "syncWithLatestSolutionVersion": {
2227
+ "type": "boolean"
2218
2228
  }
2219
2229
  }
2220
2230
  },
@@ -2297,7 +2307,7 @@
2297
2307
  }
2298
2308
  }
2299
2309
  },
2300
- "S20": {
2310
+ "S21": {
2301
2311
  "type": "structure",
2302
2312
  "members": {
2303
2313
  "eventValueThreshold": {},
@@ -2359,7 +2369,7 @@
2359
2369
  "members": {
2360
2370
  "name": {},
2361
2371
  "values": {
2362
- "shape": "S2j"
2372
+ "shape": "S2k"
2363
2373
  }
2364
2374
  }
2365
2375
  }
@@ -2395,25 +2405,33 @@
2395
2405
  },
2396
2406
  "trainingDataConfig": {
2397
2407
  "shape": "S1r"
2408
+ },
2409
+ "autoTrainingConfig": {
2410
+ "type": "structure",
2411
+ "members": {
2412
+ "schedulingExpression": {}
2413
+ }
2398
2414
  }
2399
2415
  }
2400
2416
  },
2401
- "S2j": {
2417
+ "S2k": {
2402
2418
  "type": "list",
2403
2419
  "member": {}
2404
2420
  },
2405
- "S4w": {
2421
+ "S4z": {
2406
2422
  "type": "map",
2407
2423
  "key": {},
2408
2424
  "value": {
2409
2425
  "type": "double"
2410
2426
  }
2411
2427
  },
2412
- "S56": {
2428
+ "S59": {
2413
2429
  "type": "structure",
2414
2430
  "members": {
2415
2431
  "solutionVersionArn": {},
2416
2432
  "status": {},
2433
+ "trainingMode": {},
2434
+ "trainingType": {},
2417
2435
  "creationDateTime": {
2418
2436
  "type": "timestamp"
2419
2437
  },
package/clients/glue.d.ts CHANGED
@@ -8353,6 +8353,10 @@ declare namespace Glue {
8353
8353
  * The Lake Formation data permissions of the caller on the table. Used to authorize the call when no view context is found.
8354
8354
  */
8355
8355
  Permissions?: PermissionList;
8356
+ /**
8357
+ * The filter that applies to the table. For example when applying the filter in SQL, it would go in the WHERE clause and can be evaluated by using an AND operator with any other predicates applied by the user querying the table.
8358
+ */
8359
+ RowFilter?: PredicateString;
8356
8360
  }
8357
8361
  export interface GetUserDefinedFunctionRequest {
8358
8362
  /**
@@ -28,13 +28,21 @@ declare class InternetMonitor extends Service {
28
28
  */
29
29
  deleteMonitor(callback?: (err: AWSError, data: InternetMonitor.Types.DeleteMonitorOutput) => void): Request<InternetMonitor.Types.DeleteMonitorOutput, AWSError>;
30
30
  /**
31
- * Gets information the Amazon CloudWatch Internet Monitor has created and stored about a health event for a specified monitor. This information includes the impacted locations, and all the information related to the event, by location. The information returned includes the impact on performance, availability, and round-trip time, information about the network providers (ASNs), the event type, and so on. Information rolled up at the global traffic level is also returned, including the impact type and total traffic impact.
31
+ * Gets information that Amazon CloudWatch Internet Monitor has created and stored about a health event for a specified monitor. This information includes the impacted locations, and all the information related to the event, by location. The information returned includes the impact on performance, availability, and round-trip time, information about the network providers (ASNs), the event type, and so on. Information rolled up at the global traffic level is also returned, including the impact type and total traffic impact.
32
32
  */
33
33
  getHealthEvent(params: InternetMonitor.Types.GetHealthEventInput, callback?: (err: AWSError, data: InternetMonitor.Types.GetHealthEventOutput) => void): Request<InternetMonitor.Types.GetHealthEventOutput, AWSError>;
34
34
  /**
35
- * Gets information the Amazon CloudWatch Internet Monitor has created and stored about a health event for a specified monitor. This information includes the impacted locations, and all the information related to the event, by location. The information returned includes the impact on performance, availability, and round-trip time, information about the network providers (ASNs), the event type, and so on. Information rolled up at the global traffic level is also returned, including the impact type and total traffic impact.
35
+ * Gets information that Amazon CloudWatch Internet Monitor has created and stored about a health event for a specified monitor. This information includes the impacted locations, and all the information related to the event, by location. The information returned includes the impact on performance, availability, and round-trip time, information about the network providers (ASNs), the event type, and so on. Information rolled up at the global traffic level is also returned, including the impact type and total traffic impact.
36
36
  */
37
37
  getHealthEvent(callback?: (err: AWSError, data: InternetMonitor.Types.GetHealthEventOutput) => void): Request<InternetMonitor.Types.GetHealthEventOutput, AWSError>;
38
+ /**
39
+ * Gets information that Amazon CloudWatch Internet Monitor has generated about an internet event. Internet Monitor displays information about recent global health events, called internet events, on a global outages map that is available to all Amazon Web Services customers. The information returned here includes the impacted location, when the event started and (if the event is over) ended, the type of event (PERFORMANCE or AVAILABILITY), and the status (ACTIVE or RESOLVED).
40
+ */
41
+ getInternetEvent(params: InternetMonitor.Types.GetInternetEventInput, callback?: (err: AWSError, data: InternetMonitor.Types.GetInternetEventOutput) => void): Request<InternetMonitor.Types.GetInternetEventOutput, AWSError>;
42
+ /**
43
+ * Gets information that Amazon CloudWatch Internet Monitor has generated about an internet event. Internet Monitor displays information about recent global health events, called internet events, on a global outages map that is available to all Amazon Web Services customers. The information returned here includes the impacted location, when the event started and (if the event is over) ended, the type of event (PERFORMANCE or AVAILABILITY), and the status (ACTIVE or RESOLVED).
44
+ */
45
+ getInternetEvent(callback?: (err: AWSError, data: InternetMonitor.Types.GetInternetEventOutput) => void): Request<InternetMonitor.Types.GetInternetEventOutput, AWSError>;
38
46
  /**
39
47
  * Gets information about a monitor in Amazon CloudWatch Internet Monitor based on a monitor name. The information returned includes the Amazon Resource Name (ARN), create time, modified time, resources included in the monitor, and status information.
40
48
  */
@@ -60,13 +68,21 @@ declare class InternetMonitor extends Service {
60
68
  */
61
69
  getQueryStatus(callback?: (err: AWSError, data: InternetMonitor.Types.GetQueryStatusOutput) => void): Request<InternetMonitor.Types.GetQueryStatusOutput, AWSError>;
62
70
  /**
63
- * Lists all health events for a monitor in Amazon CloudWatch Internet Monitor. Returns information for health events including the event start and end time and the status. Health events that have start times during the time frame that is requested are not included in the list of health events.
71
+ * Lists all health events for a monitor in Amazon CloudWatch Internet Monitor. Returns information for health events including the event start and end times, and the status. Health events that have start times during the time frame that is requested are not included in the list of health events.
64
72
  */
65
73
  listHealthEvents(params: InternetMonitor.Types.ListHealthEventsInput, callback?: (err: AWSError, data: InternetMonitor.Types.ListHealthEventsOutput) => void): Request<InternetMonitor.Types.ListHealthEventsOutput, AWSError>;
66
74
  /**
67
- * Lists all health events for a monitor in Amazon CloudWatch Internet Monitor. Returns information for health events including the event start and end time and the status. Health events that have start times during the time frame that is requested are not included in the list of health events.
75
+ * Lists all health events for a monitor in Amazon CloudWatch Internet Monitor. Returns information for health events including the event start and end times, and the status. Health events that have start times during the time frame that is requested are not included in the list of health events.
68
76
  */
69
77
  listHealthEvents(callback?: (err: AWSError, data: InternetMonitor.Types.ListHealthEventsOutput) => void): Request<InternetMonitor.Types.ListHealthEventsOutput, AWSError>;
78
+ /**
79
+ * Lists internet events that cause performance or availability issues for client locations. Amazon CloudWatch Internet Monitor displays information about recent global health events, called internet events, on a global outages map that is available to all Amazon Web Services customers. You can constrain the list of internet events returned by providing a start time and end time to define a total time frame for events you want to list. Both start time and end time specify the time when an event started. End time is optional. If you don't include it, the default end time is the current time. You can also limit the events returned to a specific status (ACTIVE or RESOLVED) or type (PERFORMANCE or AVAILABILITY).
80
+ */
81
+ listInternetEvents(params: InternetMonitor.Types.ListInternetEventsInput, callback?: (err: AWSError, data: InternetMonitor.Types.ListInternetEventsOutput) => void): Request<InternetMonitor.Types.ListInternetEventsOutput, AWSError>;
82
+ /**
83
+ * Lists internet events that cause performance or availability issues for client locations. Amazon CloudWatch Internet Monitor displays information about recent global health events, called internet events, on a global outages map that is available to all Amazon Web Services customers. You can constrain the list of internet events returned by providing a start time and end time to define a total time frame for events you want to list. Both start time and end time specify the time when an event started. End time is optional. If you don't include it, the default end time is the current time. You can also limit the events returned to a specific status (ACTIVE or RESOLVED) or type (PERFORMANCE or AVAILABILITY).
84
+ */
85
+ listInternetEvents(callback?: (err: AWSError, data: InternetMonitor.Types.ListInternetEventsOutput) => void): Request<InternetMonitor.Types.ListInternetEventsOutput, AWSError>;
70
86
  /**
71
87
  * Lists all of your monitors for Amazon CloudWatch Internet Monitor and their statuses, along with the Amazon Resource Name (ARN) and name of each monitor.
72
88
  */
@@ -142,6 +158,40 @@ declare namespace InternetMonitor {
142
158
  PercentOfClientLocationImpacted?: Double;
143
159
  }
144
160
  export type Boolean = boolean;
161
+ export interface ClientLocation {
162
+ /**
163
+ * The name of the internet service provider (ISP) or network (ASN).
164
+ */
165
+ ASName: String;
166
+ /**
167
+ * The Autonomous System Number (ASN) of the network at an impacted location.
168
+ */
169
+ ASNumber: Long;
170
+ /**
171
+ * The name of the country where the internet event is located.
172
+ */
173
+ Country: String;
174
+ /**
175
+ * The subdivision location where the health event is located. The subdivision usually maps to states in most countries (including the United States). For United Kingdom, it maps to a country (England, Scotland, Wales) or province (Northern Ireland).
176
+ */
177
+ Subdivision?: String;
178
+ /**
179
+ * The metro area where the health event is located. Metro indicates a metropolitan region in the United States, such as the region around New York City. In non-US countries, this is a second-level subdivision. For example, in the United Kingdom, it could be a county, a London borough, a unitary authority, council area, and so on.
180
+ */
181
+ Metro?: String;
182
+ /**
183
+ * The name of the city where the internet event is located.
184
+ */
185
+ City: String;
186
+ /**
187
+ * The latitude where the internet event is located.
188
+ */
189
+ Latitude: Double;
190
+ /**
191
+ * The longitude where the internet event is located.
192
+ */
193
+ Longitude: Double;
194
+ }
145
195
  export interface CreateMonitorInput {
146
196
  /**
147
197
  * The name of the monitor.
@@ -221,7 +271,7 @@ declare namespace InternetMonitor {
221
271
  */
222
272
  EventId: HealthEventName;
223
273
  /**
224
- * TBD
274
+ * The account ID for an account that you've set up cross-account sharing for in Amazon CloudWatch Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see Internet Monitor cross-account observability in the Amazon CloudWatch Internet Monitor User Guide.
225
275
  */
226
276
  LinkedAccountId?: AccountId;
227
277
  }
@@ -271,13 +321,49 @@ declare namespace InternetMonitor {
271
321
  */
272
322
  HealthScoreThreshold?: Percentage;
273
323
  }
324
+ export interface GetInternetEventInput {
325
+ /**
326
+ * The EventId of the internet event to return information for.
327
+ */
328
+ EventId: InternetEventId;
329
+ }
330
+ export interface GetInternetEventOutput {
331
+ /**
332
+ * The internally-generated identifier of an internet event.
333
+ */
334
+ EventId: InternetEventId;
335
+ /**
336
+ * The Amazon Resource Name (ARN) of the internet event.
337
+ */
338
+ EventArn: Arn;
339
+ /**
340
+ * The time when the internet event started.
341
+ */
342
+ StartedAt: SyntheticTimestamp_date_time;
343
+ /**
344
+ * The time when the internet event ended. If the event hasn't ended yet, this value is empty.
345
+ */
346
+ EndedAt?: SyntheticTimestamp_date_time;
347
+ /**
348
+ * The impacted location, such as a city, where clients access Amazon Web Services application resources.
349
+ */
350
+ ClientLocation: ClientLocation;
351
+ /**
352
+ * The type of network impairment.
353
+ */
354
+ EventType: InternetEventType;
355
+ /**
356
+ * The status of the internet event.
357
+ */
358
+ EventStatus: InternetEventStatus;
359
+ }
274
360
  export interface GetMonitorInput {
275
361
  /**
276
362
  * The name of the monitor.
277
363
  */
278
364
  MonitorName: ResourceName;
279
365
  /**
280
- * TBD
366
+ * The account ID for an account that you've set up cross-account sharing for in Amazon CloudWatch Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see Internet Monitor cross-account observability in the Amazon CloudWatch Internet Monitor User Guide.
281
367
  */
282
368
  LinkedAccountId?: AccountId;
283
369
  }
@@ -413,7 +499,7 @@ declare namespace InternetMonitor {
413
499
  */
414
500
  ImpactedLocations: ImpactedLocationsList;
415
501
  /**
416
- * Health event list member.
502
+ * The status of a health event.
417
503
  */
418
504
  Status: HealthEventStatus;
419
505
  /**
@@ -453,7 +539,7 @@ declare namespace InternetMonitor {
453
539
  }
454
540
  export interface ImpactedLocation {
455
541
  /**
456
- * The name of the network at an impacted location.
542
+ * The name of the internet service provider (ISP) or network (ASN).
457
543
  */
458
544
  ASName: String;
459
545
  /**
@@ -514,6 +600,41 @@ declare namespace InternetMonitor {
514
600
  Ipv4Prefixes?: Ipv4PrefixList;
515
601
  }
516
602
  export type ImpactedLocationsList = ImpactedLocation[];
603
+ export type InternetEventId = string;
604
+ export type InternetEventMaxResults = number;
605
+ export type InternetEventStatus = "ACTIVE"|"RESOLVED"|string;
606
+ export interface InternetEventSummary {
607
+ /**
608
+ * The internally-generated identifier of an internet event.
609
+ */
610
+ EventId: InternetEventId;
611
+ /**
612
+ * The Amazon Resource Name (ARN) of the internet event.
613
+ */
614
+ EventArn: Arn;
615
+ /**
616
+ * The time when an internet event started.
617
+ */
618
+ StartedAt: SyntheticTimestamp_date_time;
619
+ /**
620
+ * The time when an internet event ended. If the event hasn't ended yet, this value is empty.
621
+ */
622
+ EndedAt?: SyntheticTimestamp_date_time;
623
+ /**
624
+ * The impacted location, such as a city, that Amazon Web Services clients access application resources from.
625
+ */
626
+ ClientLocation: ClientLocation;
627
+ /**
628
+ * The type of network impairment.
629
+ */
630
+ EventType: InternetEventType;
631
+ /**
632
+ * The status of an internet event.
633
+ */
634
+ EventStatus: InternetEventStatus;
635
+ }
636
+ export type InternetEventType = "AVAILABILITY"|"PERFORMANCE"|string;
637
+ export type InternetEventsList = InternetEventSummary[];
517
638
  export interface InternetHealth {
518
639
  /**
519
640
  * Availability in Internet Monitor represents the estimated percentage of traffic that is not seeing an availability drop. For example, an availability score of 99% for an end user and service location pair is equivalent to 1% of the traffic experiencing an availability drop for that pair. For more information, see How Internet Monitor calculates performance and availability scores in the Amazon CloudWatch Internet Monitor section of the CloudWatch User Guide.
@@ -557,7 +678,7 @@ declare namespace InternetMonitor {
557
678
  */
558
679
  EventStatus?: HealthEventStatus;
559
680
  /**
560
- * TBD
681
+ * The account ID for an account that you've set up cross-account sharing for in Amazon CloudWatch Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see Internet Monitor cross-account observability in the Amazon CloudWatch Internet Monitor User Guide.
561
682
  */
562
683
  LinkedAccountId?: AccountId;
563
684
  }
@@ -571,6 +692,42 @@ declare namespace InternetMonitor {
571
692
  */
572
693
  NextToken?: String;
573
694
  }
695
+ export interface ListInternetEventsInput {
696
+ /**
697
+ * The token for the next set of results. You receive this token from a previous call.
698
+ */
699
+ NextToken?: String;
700
+ /**
701
+ * The number of query results that you want to return with this call.
702
+ */
703
+ MaxResults?: InternetEventMaxResults;
704
+ /**
705
+ * The start time of the time window that you want to get a list of internet events for.
706
+ */
707
+ StartTime?: SyntheticTimestamp_date_time;
708
+ /**
709
+ * The end time of the time window that you want to get a list of internet events for.
710
+ */
711
+ EndTime?: SyntheticTimestamp_date_time;
712
+ /**
713
+ * The status of an internet event.
714
+ */
715
+ EventStatus?: String;
716
+ /**
717
+ * The type of network impairment.
718
+ */
719
+ EventType?: String;
720
+ }
721
+ export interface ListInternetEventsOutput {
722
+ /**
723
+ * A set of internet events returned for the list operation.
724
+ */
725
+ InternetEvents: InternetEventsList;
726
+ /**
727
+ * The token for the next set of results. You receive this token from a previous call.
728
+ */
729
+ NextToken?: String;
730
+ }
574
731
  export interface ListMonitorsInput {
575
732
  /**
576
733
  * The token for the next set of results. You receive this token from a previous call.
@@ -585,7 +742,7 @@ declare namespace InternetMonitor {
585
742
  */
586
743
  MonitorStatus?: String;
587
744
  /**
588
- * TBD
745
+ * A boolean option that you can set to TRUE to include monitors for linked accounts in a list of monitors, when you've set up cross-account sharing in Amazon CloudWatch Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see Internet Monitor cross-account observability in the Amazon CloudWatch Internet Monitor User Guide.
589
746
  */
590
747
  IncludeLinkedAccounts?: Boolean;
591
748
  }
@@ -654,7 +811,7 @@ declare namespace InternetMonitor {
654
811
  export type MonitorProcessingStatusCode = "OK"|"INACTIVE"|"COLLECTING_DATA"|"INSUFFICIENT_DATA"|"FAULT_SERVICE"|"FAULT_ACCESS_CLOUDWATCH"|string;
655
812
  export interface Network {
656
813
  /**
657
- * The internet provider name or network name.
814
+ * The name of the internet service provider (ISP) or network (ASN).
658
815
  */
659
816
  ASName: String;
660
817
  /**
@@ -672,7 +829,7 @@ declare namespace InternetMonitor {
672
829
  */
673
830
  AsPath: NetworkList;
674
831
  /**
675
- * Type of network impairment.
832
+ * The type of network impairment.
676
833
  */
677
834
  NetworkEventType: TriangulationEventType;
678
835
  }
@@ -766,7 +923,7 @@ declare namespace InternetMonitor {
766
923
  */
767
924
  FilterParameters?: FilterParameters;
768
925
  /**
769
- * TBD
926
+ * The account ID for an account that you've set up cross-account sharing for in Amazon CloudWatch Internet Monitor. You configure cross-account sharing by using Amazon CloudWatch Observability Access Manager. For more information, see Internet Monitor cross-account observability in the Amazon CloudWatch Internet Monitor User Guide.
770
927
  */
771
928
  LinkedAccountId?: AccountId;
772
929
  }