@aws-sdk/client-internetmonitor 3.687.0 → 3.691.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
@@ -474,6 +474,7 @@ var QueryType = {
474
474
  MEASUREMENTS: "MEASUREMENTS",
475
475
  OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS",
476
476
  OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS",
477
+ ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS",
477
478
  TOP_LOCATIONS: "TOP_LOCATIONS",
478
479
  TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS"
479
480
  };
@@ -186,6 +186,7 @@ export const QueryType = {
186
186
  MEASUREMENTS: "MEASUREMENTS",
187
187
  OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS",
188
188
  OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS",
189
+ ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS",
189
190
  TOP_LOCATIONS: "TOP_LOCATIONS",
190
191
  TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS",
191
192
  };
@@ -34,7 +34,7 @@ export interface AvailabilityMeasurement {
34
34
  * availability scores</a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
35
35
  * @public
36
36
  */
37
- ExperienceScore?: number;
37
+ ExperienceScore?: number | undefined;
38
38
  /**
39
39
  * <p>The impact on total traffic that a health event has, in increased latency or reduced availability. This is the
40
40
  * percentage of how much latency has increased or availability has decreased during the event, compared to what is typical for traffic from this
@@ -43,14 +43,14 @@ export interface AvailabilityMeasurement {
43
43
  * Guide.</p>
44
44
  * @public
45
45
  */
46
- PercentOfTotalTrafficImpacted?: number;
46
+ PercentOfTotalTrafficImpacted?: number | undefined;
47
47
  /**
48
48
  * <p>The percentage of impact caused by a health event for client location traffic globally.</p>
49
49
  * <p>For information about how Internet Monitor calculates impact, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-IM-inside-internet-monitor.html">Inside Internet Monitor</a> in the Amazon CloudWatch Internet Monitor section of the Amazon CloudWatch User
50
50
  * Guide.</p>
51
51
  * @public
52
52
  */
53
- PercentOfClientLocationImpacted?: number;
53
+ PercentOfClientLocationImpacted?: number | undefined;
54
54
  }
55
55
  /**
56
56
  * <p>A bad request was received.</p>
@@ -89,7 +89,7 @@ export interface ClientLocation {
89
89
  * (including the United States). For United Kingdom, it maps to a country (England, Scotland, Wales) or province (Northern Ireland).</p>
90
90
  * @public
91
91
  */
92
- Subdivision?: string;
92
+ Subdivision?: string | undefined;
93
93
  /**
94
94
  * <p>The metro area where the health event is located.</p>
95
95
  * <p>Metro indicates a metropolitan region in the United States, such as the region around New York City. In non-US countries,
@@ -97,7 +97,7 @@ export interface ClientLocation {
97
97
  * authority, council area, and so on.</p>
98
98
  * @public
99
99
  */
100
- Metro?: string;
100
+ Metro?: string | undefined;
101
101
  /**
102
102
  * <p>The name of the city where the internet event is located.</p>
103
103
  * @public
@@ -155,19 +155,19 @@ export interface LocalHealthEventsConfig {
155
155
  * or <code>DISABLED</code>.</p>
156
156
  * @public
157
157
  */
158
- Status?: LocalHealthEventsConfigStatus;
158
+ Status?: LocalHealthEventsConfigStatus | undefined;
159
159
  /**
160
160
  * <p>The health event threshold percentage set for a local health score.</p>
161
161
  * @public
162
162
  */
163
- HealthScoreThreshold?: number;
163
+ HealthScoreThreshold?: number | undefined;
164
164
  /**
165
165
  * <p>The minimum percentage of overall traffic for an application that must be impacted by an issue before Internet Monitor creates an event when a
166
166
  * threshold is crossed for a local health score.</p>
167
167
  * <p>If you don't set a minimum traffic impact threshold, the default value is 0.1%.</p>
168
168
  * @public
169
169
  */
170
- MinTrafficImpact?: number;
170
+ MinTrafficImpact?: number | undefined;
171
171
  }
172
172
  /**
173
173
  * <p>A complex type with the configuration information that determines the threshold and other conditions for when Internet Monitor creates a health event
@@ -189,22 +189,22 @@ export interface HealthEventsConfig {
189
189
  * <p>The health event threshold percentage set for availability scores.</p>
190
190
  * @public
191
191
  */
192
- AvailabilityScoreThreshold?: number;
192
+ AvailabilityScoreThreshold?: number | undefined;
193
193
  /**
194
194
  * <p>The health event threshold percentage set for performance scores.</p>
195
195
  * @public
196
196
  */
197
- PerformanceScoreThreshold?: number;
197
+ PerformanceScoreThreshold?: number | undefined;
198
198
  /**
199
199
  * <p>The configuration that determines the threshold and other conditions for when Internet Monitor creates a health event for a local availability issue.</p>
200
200
  * @public
201
201
  */
202
- AvailabilityLocalHealthEventsConfig?: LocalHealthEventsConfig;
202
+ AvailabilityLocalHealthEventsConfig?: LocalHealthEventsConfig | undefined;
203
203
  /**
204
204
  * <p>The configuration that determines the threshold and other conditions for when Internet Monitor creates a health event for a local performance issue.</p>
205
205
  * @public
206
206
  */
207
- PerformanceLocalHealthEventsConfig?: LocalHealthEventsConfig;
207
+ PerformanceLocalHealthEventsConfig?: LocalHealthEventsConfig | undefined;
208
208
  }
209
209
  /**
210
210
  * @public
@@ -229,17 +229,17 @@ export interface S3Config {
229
229
  * <p>The Amazon S3 bucket name.</p>
230
230
  * @public
231
231
  */
232
- BucketName?: string;
232
+ BucketName?: string | undefined;
233
233
  /**
234
234
  * <p>The Amazon S3 bucket prefix.</p>
235
235
  * @public
236
236
  */
237
- BucketPrefix?: string;
237
+ BucketPrefix?: string | undefined;
238
238
  /**
239
239
  * <p>The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.</p>
240
240
  * @public
241
241
  */
242
- LogDeliveryStatus?: LogDeliveryStatus;
242
+ LogDeliveryStatus?: LogDeliveryStatus | undefined;
243
243
  }
244
244
  /**
245
245
  * <p>Publish internet measurements to an Amazon S3 bucket in addition to CloudWatch Logs.</p>
@@ -252,7 +252,7 @@ export interface InternetMeasurementsLogDelivery {
252
252
  * whether you choose to deliver internet measurements to S3 logs.</p>
253
253
  * @public
254
254
  */
255
- S3Config?: S3Config;
255
+ S3Config?: S3Config | undefined;
256
256
  }
257
257
  /**
258
258
  * @public
@@ -274,18 +274,18 @@ export interface CreateMonitorInput {
274
274
  * </note>
275
275
  * @public
276
276
  */
277
- Resources?: string[];
277
+ Resources?: string[] | undefined;
278
278
  /**
279
279
  * <p>A unique, case-sensitive string of up to 64 ASCII characters that you specify to make an idempotent API request. Don't reuse the same client token for
280
280
  * other API requests.</p>
281
281
  * @public
282
282
  */
283
- ClientToken?: string;
283
+ ClientToken?: string | undefined;
284
284
  /**
285
285
  * <p>The tags for a monitor. You can add a maximum of 50 tags in Internet Monitor.</p>
286
286
  * @public
287
287
  */
288
- Tags?: Record<string, string>;
288
+ Tags?: Record<string, string> | undefined;
289
289
  /**
290
290
  * <p>The maximum number of city-networks to monitor for your resources. A city-network is the location (city) where clients access your
291
291
  * application resources from and the ASN or network provider, such as an internet service provider (ISP), that clients access the resources
@@ -294,12 +294,12 @@ export interface CreateMonitorInput {
294
294
  * </a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
295
295
  * @public
296
296
  */
297
- MaxCityNetworksToMonitor?: number;
297
+ MaxCityNetworksToMonitor?: number | undefined;
298
298
  /**
299
299
  * <p>Publish internet measurements for Internet Monitor to an Amazon S3 bucket in addition to CloudWatch Logs.</p>
300
300
  * @public
301
301
  */
302
- InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery;
302
+ InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery | undefined;
303
303
  /**
304
304
  * <p>The percentage of the internet-facing traffic for your application that you want to monitor with this monitor. If you set a city-networks
305
305
  * maximum, that limit overrides the traffic percentage that you set.</p>
@@ -307,7 +307,7 @@ export interface CreateMonitorInput {
307
307
  * </a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
308
308
  * @public
309
309
  */
310
- TrafficPercentageToMonitor?: number;
310
+ TrafficPercentageToMonitor?: number | undefined;
311
311
  /**
312
312
  * <p>Defines the threshold percentages and other configuration information for when Amazon CloudWatch Internet Monitor creates a health event. Internet Monitor creates a
313
313
  * health event when an internet issue that affects your application end users has a health score percentage that is at or below a
@@ -317,7 +317,7 @@ export interface CreateMonitorInput {
317
317
  * Change health event thresholds</a> in the Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
318
318
  * @public
319
319
  */
320
- HealthEventsConfig?: HealthEventsConfig;
320
+ HealthEventsConfig?: HealthEventsConfig | undefined;
321
321
  }
322
322
  /**
323
323
  * @public
@@ -448,19 +448,19 @@ export interface FilterParameter {
448
448
  * that was returned by the specific query that you used to create the repository.</p>
449
449
  * @public
450
450
  */
451
- Field?: string;
451
+ Field?: string | undefined;
452
452
  /**
453
453
  * <p>The operator to use with the filter field and a value, such as <code>not_equals</code>.</p>
454
454
  * @public
455
455
  */
456
- Operator?: Operator;
456
+ Operator?: Operator | undefined;
457
457
  /**
458
458
  * <p>One or more values to be used, together with the specified operator, to filter data for a query.
459
459
  * For example, you could specify an array of values such as <code>["Seattle", "Redmond"]</code>. Values in the array are separated by
460
460
  * commas.</p>
461
461
  * @public
462
462
  */
463
- Values?: string[];
463
+ Values?: string[] | undefined;
464
464
  }
465
465
  /**
466
466
  * @public
@@ -484,7 +484,7 @@ export interface GetHealthEventInput {
484
484
  * observability</a> in the Amazon CloudWatch Internet Monitor User Guide.</p>
485
485
  * @public
486
486
  */
487
- LinkedAccountId?: string;
487
+ LinkedAccountId?: string | undefined;
488
488
  }
489
489
  /**
490
490
  * <p>An internet service provider (ISP) or network (ASN) in Amazon CloudWatch Internet Monitor.</p>
@@ -545,17 +545,17 @@ export interface RoundTripTime {
545
545
  * <p>RTT at the 50th percentile (p50).</p>
546
546
  * @public
547
547
  */
548
- P50?: number;
548
+ P50?: number | undefined;
549
549
  /**
550
550
  * <p>RTT at the 90th percentile (p90). </p>
551
551
  * @public
552
552
  */
553
- P90?: number;
553
+ P90?: number | undefined;
554
554
  /**
555
555
  * <p>RTT at the 95th percentile (p95). </p>
556
556
  * @public
557
557
  */
558
- P95?: number;
558
+ P95?: number | undefined;
559
559
  }
560
560
  /**
561
561
  * <p>Amazon CloudWatch Internet Monitor calculates measurements about the performance for your application's internet traffic between client locations and Amazon Web Services.
@@ -579,7 +579,7 @@ export interface PerformanceMeasurement {
579
579
  * availability scores</a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
580
580
  * @public
581
581
  */
582
- ExperienceScore?: number;
582
+ ExperienceScore?: number | undefined;
583
583
  /**
584
584
  * <p>The impact on total traffic that a health event has, in increased latency or reduced availability. This is the
585
585
  * percentage of how much latency has increased or availability has decreased during the event, compared to what is typical for traffic from this
@@ -588,7 +588,7 @@ export interface PerformanceMeasurement {
588
588
  * events</a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
589
589
  * @public
590
590
  */
591
- PercentOfTotalTrafficImpacted?: number;
591
+ PercentOfTotalTrafficImpacted?: number | undefined;
592
592
  /**
593
593
  * <p>How much performance impact was caused by a health event at a client location. For performance, this is the percentage of how much latency increased
594
594
  * during the event compared to typical performance for traffic, from this client location to an Amazon Web Services location, using a specific client network. </p>
@@ -596,14 +596,14 @@ export interface PerformanceMeasurement {
596
596
  * events</a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
597
597
  * @public
598
598
  */
599
- PercentOfClientLocationImpacted?: number;
599
+ PercentOfClientLocationImpacted?: number | undefined;
600
600
  /**
601
601
  * <p>This is the percentage of how much round-trip time increased during the event compared to typical round-trip time for your application for traffic. </p>
602
602
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-IM-inside-internet-monitor.html#IMHealthEventStartStop">When Amazon Web Services creates and resolves health
603
603
  * events</a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
604
604
  * @public
605
605
  */
606
- RoundTripTime?: RoundTripTime;
606
+ RoundTripTime?: RoundTripTime | undefined;
607
607
  }
608
608
  /**
609
609
  * <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
@@ -621,7 +621,7 @@ export interface InternetHealth {
621
621
  * scores</a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
622
622
  * @public
623
623
  */
624
- Availability?: AvailabilityMeasurement;
624
+ Availability?: AvailabilityMeasurement | undefined;
625
625
  /**
626
626
  * <p>Performance in Internet Monitor represents the estimated percentage of traffic that is not seeing a performance drop. For example, a performance score of 99% for
627
627
  * an end user and service location pair is equivalent to 1% of the traffic experiencing a performance drop for that pair.</p>
@@ -629,7 +629,7 @@ export interface InternetHealth {
629
629
  * scores</a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
630
630
  * @public
631
631
  */
632
- Performance?: PerformanceMeasurement;
632
+ Performance?: PerformanceMeasurement | undefined;
633
633
  }
634
634
  /**
635
635
  * @public
@@ -672,7 +672,7 @@ export interface ImpactedLocation {
672
672
  * Scotland, Wales) or province (Northern Ireland).</p>
673
673
  * @public
674
674
  */
675
- Subdivision?: string;
675
+ Subdivision?: string | undefined;
676
676
  /**
677
677
  * <p>The metro area where the health event is located.</p>
678
678
  * <p>Metro indicates a metropolitan region in the United States, such as the region around New York City.
@@ -680,39 +680,39 @@ export interface ImpactedLocation {
680
680
  * a county, a London borough, a unitary authority, council area, and so on.</p>
681
681
  * @public
682
682
  */
683
- Metro?: string;
683
+ Metro?: string | undefined;
684
684
  /**
685
685
  * <p>The name of the city where the health event is located.</p>
686
686
  * @public
687
687
  */
688
- City?: string;
688
+ City?: string | undefined;
689
689
  /**
690
690
  * <p>The latitude where the health event is located.</p>
691
691
  * @public
692
692
  */
693
- Latitude?: number;
693
+ Latitude?: number | undefined;
694
694
  /**
695
695
  * <p>The longitude where the health event is located.</p>
696
696
  * @public
697
697
  */
698
- Longitude?: number;
698
+ Longitude?: number | undefined;
699
699
  /**
700
700
  * <p>The country code where the health event is located. The ISO 3166-2 codes for the
701
701
  * country is provided, when available. </p>
702
702
  * @public
703
703
  */
704
- CountryCode?: string;
704
+ CountryCode?: string | undefined;
705
705
  /**
706
706
  * <p>The subdivision code where the health event is located. The ISO 3166-2 codes for
707
707
  * country subdivisions is provided, when available. </p>
708
708
  * @public
709
709
  */
710
- SubdivisionCode?: string;
710
+ SubdivisionCode?: string | undefined;
711
711
  /**
712
712
  * <p>The service location where the health event is located.</p>
713
713
  * @public
714
714
  */
715
- ServiceLocation?: string;
715
+ ServiceLocation?: string | undefined;
716
716
  /**
717
717
  * <p>The status of the health event at an impacted location.</p>
718
718
  * @public
@@ -723,17 +723,17 @@ export interface ImpactedLocation {
723
723
  * or internet issues. Internet issues are typically a problem with a network provider, like an internet service provider (ISP).</p>
724
724
  * @public
725
725
  */
726
- CausedBy?: NetworkImpairment;
726
+ CausedBy?: NetworkImpairment | undefined;
727
727
  /**
728
728
  * <p>The calculated health at a specific location.</p>
729
729
  * @public
730
730
  */
731
- InternetHealth?: InternetHealth;
731
+ InternetHealth?: InternetHealth | undefined;
732
732
  /**
733
733
  * <p>The IPv4 prefixes at the client location that was impacted by the health event.</p>
734
734
  * @public
735
735
  */
736
- Ipv4Prefixes?: string[];
736
+ Ipv4Prefixes?: string[] | undefined;
737
737
  }
738
738
  /**
739
739
  * @public
@@ -772,12 +772,12 @@ export interface GetHealthEventOutput {
772
772
  * <p>The time when a health event was resolved. If the health event is still active, the end time is not set.</p>
773
773
  * @public
774
774
  */
775
- EndedAt?: Date;
775
+ EndedAt?: Date | undefined;
776
776
  /**
777
777
  * <p>The time when a health event was created.</p>
778
778
  * @public
779
779
  */
780
- CreatedAt?: Date;
780
+ CreatedAt?: Date | undefined;
781
781
  /**
782
782
  * <p>The time when a health event was last updated or recalculated.</p>
783
783
  * @public
@@ -799,7 +799,7 @@ export interface GetHealthEventOutput {
799
799
  * client location to the Amazon Web Services location using this client network.</p>
800
800
  * @public
801
801
  */
802
- PercentOfTotalTrafficImpacted?: number;
802
+ PercentOfTotalTrafficImpacted?: number | undefined;
803
803
  /**
804
804
  * <p>The type of impairment of a specific health event.</p>
805
805
  * @public
@@ -810,7 +810,7 @@ export interface GetHealthEventOutput {
810
810
  * when Internet Monitor creates a health event when there's an internet issue that affects your application end users.</p>
811
811
  * @public
812
812
  */
813
- HealthScoreThreshold?: number;
813
+ HealthScoreThreshold?: number | undefined;
814
814
  }
815
815
  /**
816
816
  * @public
@@ -869,7 +869,7 @@ export interface GetInternetEventOutput {
869
869
  * <p>The time when the internet event ended. If the event hasn't ended yet, this value is empty.</p>
870
870
  * @public
871
871
  */
872
- EndedAt?: Date;
872
+ EndedAt?: Date | undefined;
873
873
  /**
874
874
  * <p>The impacted location, such as a city, where clients access Amazon Web Services application resources.</p>
875
875
  * @public
@@ -902,7 +902,7 @@ export interface GetMonitorInput {
902
902
  * observability</a> in the Amazon CloudWatch Internet Monitor User Guide.</p>
903
903
  * @public
904
904
  */
905
- LinkedAccountId?: string;
905
+ LinkedAccountId?: string | undefined;
906
906
  }
907
907
  /**
908
908
  * @public
@@ -958,17 +958,17 @@ export interface GetMonitorOutput {
958
958
  * <p>The health of the data processing for the monitor.</p>
959
959
  * @public
960
960
  */
961
- ProcessingStatus?: MonitorProcessingStatusCode;
961
+ ProcessingStatus?: MonitorProcessingStatusCode | undefined;
962
962
  /**
963
963
  * <p>Additional information about the health of the data processing for the monitor.</p>
964
964
  * @public
965
965
  */
966
- ProcessingStatusInfo?: string;
966
+ ProcessingStatusInfo?: string | undefined;
967
967
  /**
968
968
  * <p>The tags that have been added to monitor.</p>
969
969
  * @public
970
970
  */
971
- Tags?: Record<string, string>;
971
+ Tags?: Record<string, string> | undefined;
972
972
  /**
973
973
  * <p>The maximum number of city-networks to monitor for your resources. A city-network is the location (city) where clients access your
974
974
  * application resources from and the ASN or network provider, such as an internet service provider (ISP), that clients access the resources
@@ -977,12 +977,12 @@ export interface GetMonitorOutput {
977
977
  * </a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
978
978
  * @public
979
979
  */
980
- MaxCityNetworksToMonitor?: number;
980
+ MaxCityNetworksToMonitor?: number | undefined;
981
981
  /**
982
982
  * <p>Publish internet measurements for Internet Monitor to another location, such as an Amazon S3 bucket. The measurements are also published to Amazon CloudWatch Logs.</p>
983
983
  * @public
984
984
  */
985
- InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery;
985
+ InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery | undefined;
986
986
  /**
987
987
  * <p>The percentage of the internet-facing traffic for your application to monitor with this monitor. If you set a city-networks
988
988
  * maximum, that limit overrides the traffic percentage that you set.</p>
@@ -990,7 +990,7 @@ export interface GetMonitorOutput {
990
990
  * </a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
991
991
  * @public
992
992
  */
993
- TrafficPercentageToMonitor?: number;
993
+ TrafficPercentageToMonitor?: number | undefined;
994
994
  /**
995
995
  * <p>The list of health event threshold configurations. The threshold percentage for a health score determines, along with other configuration
996
996
  * information, when Internet Monitor creates a health event when there's an internet issue that affects your application end users.</p>
@@ -998,7 +998,7 @@ export interface GetMonitorOutput {
998
998
  * Change health event thresholds</a> in the Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
999
999
  * @public
1000
1000
  */
1001
- HealthEventsConfig?: HealthEventsConfig;
1001
+ HealthEventsConfig?: HealthEventsConfig | undefined;
1002
1002
  }
1003
1003
  /**
1004
1004
  * @public
@@ -1019,12 +1019,12 @@ export interface GetQueryResultsInput {
1019
1019
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
1020
1020
  * @public
1021
1021
  */
1022
- NextToken?: string;
1022
+ NextToken?: string | undefined;
1023
1023
  /**
1024
1024
  * <p>The number of query results that you want to return with this call.</p>
1025
1025
  * @public
1026
1026
  */
1027
- MaxResults?: number;
1027
+ MaxResults?: number | undefined;
1028
1028
  }
1029
1029
  /**
1030
1030
  * <p>Defines a field to query for your application's Amazon CloudWatch Internet Monitor data. You create a data repository by running a query of a specific
@@ -1036,13 +1036,13 @@ export interface QueryField {
1036
1036
  * <p>The name of a field to query your application's Amazon CloudWatch Internet Monitor data for, such as <code>availability_score</code>.</p>
1037
1037
  * @public
1038
1038
  */
1039
- Name?: string;
1039
+ Name?: string | undefined;
1040
1040
  /**
1041
1041
  * <p>The data type for a query field, which must correspond to the field you're defining for <code>QueryField</code>. For example, if the query
1042
1042
  * field name is <code>availability_score</code>, the data type is <code>float</code>.</p>
1043
1043
  * @public
1044
1044
  */
1045
- Type?: string;
1045
+ Type?: string | undefined;
1046
1046
  }
1047
1047
  /**
1048
1048
  * @public
@@ -1065,7 +1065,7 @@ export interface GetQueryResultsOutput {
1065
1065
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
1066
1066
  * @public
1067
1067
  */
1068
- NextToken?: string;
1068
+ NextToken?: string | undefined;
1069
1069
  }
1070
1070
  /**
1071
1071
  * @public
@@ -1132,12 +1132,12 @@ export interface HealthEvent {
1132
1132
  * <p>The time when a health event ended. If the health event is still active, then the end time is not set.</p>
1133
1133
  * @public
1134
1134
  */
1135
- EndedAt?: Date;
1135
+ EndedAt?: Date | undefined;
1136
1136
  /**
1137
1137
  * <p>When the health event was created.</p>
1138
1138
  * @public
1139
1139
  */
1140
- CreatedAt?: Date;
1140
+ CreatedAt?: Date | undefined;
1141
1141
  /**
1142
1142
  * <p>When the health event was last updated.</p>
1143
1143
  * @public
@@ -1159,7 +1159,7 @@ export interface HealthEvent {
1159
1159
  * client location to the Amazon Web Services location using this client network.</p>
1160
1160
  * @public
1161
1161
  */
1162
- PercentOfTotalTrafficImpacted?: number;
1162
+ PercentOfTotalTrafficImpacted?: number | undefined;
1163
1163
  /**
1164
1164
  * <p>The type of impairment for a health event.</p>
1165
1165
  * @public
@@ -1169,7 +1169,7 @@ export interface HealthEvent {
1169
1169
  * <p>The value of the threshold percentage for performance or availability that was configured when Amazon CloudWatch Internet Monitor created the health event.</p>
1170
1170
  * @public
1171
1171
  */
1172
- HealthScoreThreshold?: number;
1172
+ HealthScoreThreshold?: number | undefined;
1173
1173
  }
1174
1174
  /**
1175
1175
  * @public
@@ -1184,27 +1184,27 @@ export interface ListHealthEventsInput {
1184
1184
  * <p>The time when a health event started.</p>
1185
1185
  * @public
1186
1186
  */
1187
- StartTime?: Date;
1187
+ StartTime?: Date | undefined;
1188
1188
  /**
1189
1189
  * <p>The time when a health event ended. If the health event is still ongoing, then the end time is not set.</p>
1190
1190
  * @public
1191
1191
  */
1192
- EndTime?: Date;
1192
+ EndTime?: Date | undefined;
1193
1193
  /**
1194
1194
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
1195
1195
  * @public
1196
1196
  */
1197
- NextToken?: string;
1197
+ NextToken?: string | undefined;
1198
1198
  /**
1199
1199
  * <p>The number of health event objects that you want to return with this call. </p>
1200
1200
  * @public
1201
1201
  */
1202
- MaxResults?: number;
1202
+ MaxResults?: number | undefined;
1203
1203
  /**
1204
1204
  * <p>The status of a health event.</p>
1205
1205
  * @public
1206
1206
  */
1207
- EventStatus?: HealthEventStatus;
1207
+ EventStatus?: HealthEventStatus | undefined;
1208
1208
  /**
1209
1209
  * <p>The account ID for an account that you've set up cross-account sharing for in Amazon CloudWatch Internet Monitor. You configure cross-account
1210
1210
  * sharing by using Amazon CloudWatch Observability Access Manager. For more information, see
@@ -1212,7 +1212,7 @@ export interface ListHealthEventsInput {
1212
1212
  * observability</a> in the Amazon CloudWatch Internet Monitor User Guide.</p>
1213
1213
  * @public
1214
1214
  */
1215
- LinkedAccountId?: string;
1215
+ LinkedAccountId?: string | undefined;
1216
1216
  }
1217
1217
  /**
1218
1218
  * @public
@@ -1227,7 +1227,7 @@ export interface ListHealthEventsOutput {
1227
1227
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
1228
1228
  * @public
1229
1229
  */
1230
- NextToken?: string;
1230
+ NextToken?: string | undefined;
1231
1231
  }
1232
1232
  /**
1233
1233
  * <p>There was an internal server error.</p>
@@ -1250,32 +1250,32 @@ export interface ListInternetEventsInput {
1250
1250
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
1251
1251
  * @public
1252
1252
  */
1253
- NextToken?: string;
1253
+ NextToken?: string | undefined;
1254
1254
  /**
1255
1255
  * <p>The number of query results that you want to return with this call.</p>
1256
1256
  * @public
1257
1257
  */
1258
- MaxResults?: number;
1258
+ MaxResults?: number | undefined;
1259
1259
  /**
1260
1260
  * <p>The start time of the time window that you want to get a list of internet events for.</p>
1261
1261
  * @public
1262
1262
  */
1263
- StartTime?: Date;
1263
+ StartTime?: Date | undefined;
1264
1264
  /**
1265
1265
  * <p>The end time of the time window that you want to get a list of internet events for.</p>
1266
1266
  * @public
1267
1267
  */
1268
- EndTime?: Date;
1268
+ EndTime?: Date | undefined;
1269
1269
  /**
1270
1270
  * <p>The status of an internet event.</p>
1271
1271
  * @public
1272
1272
  */
1273
- EventStatus?: string;
1273
+ EventStatus?: string | undefined;
1274
1274
  /**
1275
1275
  * <p>The type of network impairment.</p>
1276
1276
  * @public
1277
1277
  */
1278
- EventType?: string;
1278
+ EventType?: string | undefined;
1279
1279
  }
1280
1280
  /**
1281
1281
  * <p>A summary of information about an internet event in Amazon CloudWatch Internet Monitor. Internet events are issues that cause performance degradation
@@ -1305,7 +1305,7 @@ export interface InternetEventSummary {
1305
1305
  * is empty.</p>
1306
1306
  * @public
1307
1307
  */
1308
- EndedAt?: Date;
1308
+ EndedAt?: Date | undefined;
1309
1309
  /**
1310
1310
  * <p>The impacted location, such as a city, that Amazon Web Services clients access application resources from.</p>
1311
1311
  * @public
@@ -1335,7 +1335,7 @@ export interface ListInternetEventsOutput {
1335
1335
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
1336
1336
  * @public
1337
1337
  */
1338
- NextToken?: string;
1338
+ NextToken?: string | undefined;
1339
1339
  }
1340
1340
  /**
1341
1341
  * @public
@@ -1355,7 +1355,7 @@ export interface ListTagsForResourceOutput {
1355
1355
  * <p>Tags for a resource.</p>
1356
1356
  * @public
1357
1357
  */
1358
- Tags?: Record<string, string>;
1358
+ Tags?: Record<string, string> | undefined;
1359
1359
  }
1360
1360
  /**
1361
1361
  * <p>The request specifies something that doesn't exist.</p>
@@ -1392,19 +1392,19 @@ export interface ListMonitorsInput {
1392
1392
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
1393
1393
  * @public
1394
1394
  */
1395
- NextToken?: string;
1395
+ NextToken?: string | undefined;
1396
1396
  /**
1397
1397
  * <p>The number of monitor objects that you want to return with this call.</p>
1398
1398
  * @public
1399
1399
  */
1400
- MaxResults?: number;
1400
+ MaxResults?: number | undefined;
1401
1401
  /**
1402
1402
  * <p>The status of a monitor. This includes the status of the data processing for the monitor and the status of the monitor itself.</p>
1403
1403
  * <p>For information about the statuses for a monitor, see <a href="https://docs.aws.amazon.com/internet-monitor/latest/api/API_Monitor.html">
1404
1404
  * Monitor</a>.</p>
1405
1405
  * @public
1406
1406
  */
1407
- MonitorStatus?: string;
1407
+ MonitorStatus?: string | undefined;
1408
1408
  /**
1409
1409
  * <p>A boolean option that you can set to <code>TRUE</code> to include monitors for linked accounts in a list of
1410
1410
  * monitors, when you've set up cross-account sharing in Amazon CloudWatch Internet Monitor. You configure cross-account
@@ -1413,7 +1413,7 @@ export interface ListMonitorsInput {
1413
1413
  * observability</a> in the Amazon CloudWatch Internet Monitor User Guide.</p>
1414
1414
  * @public
1415
1415
  */
1416
- IncludeLinkedAccounts?: boolean;
1416
+ IncludeLinkedAccounts?: boolean | undefined;
1417
1417
  }
1418
1418
  /**
1419
1419
  * <p>The description of and information about a monitor in Amazon CloudWatch Internet Monitor. </p>
@@ -1439,7 +1439,7 @@ export interface Monitor {
1439
1439
  * <p>The health of data processing for the monitor.</p>
1440
1440
  * @public
1441
1441
  */
1442
- ProcessingStatus?: MonitorProcessingStatusCode;
1442
+ ProcessingStatus?: MonitorProcessingStatusCode | undefined;
1443
1443
  }
1444
1444
  /**
1445
1445
  * @public
@@ -1454,7 +1454,7 @@ export interface ListMonitorsOutput {
1454
1454
  * <p>The token for the next set of results. You receive this token from a previous call.</p>
1455
1455
  * @public
1456
1456
  */
1457
- NextToken?: string;
1457
+ NextToken?: string | undefined;
1458
1458
  }
1459
1459
  /**
1460
1460
  * @public
@@ -1464,6 +1464,7 @@ export declare const QueryType: {
1464
1464
  readonly MEASUREMENTS: "MEASUREMENTS";
1465
1465
  readonly OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS";
1466
1466
  readonly OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS";
1467
+ readonly ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS";
1467
1468
  readonly TOP_LOCATIONS: "TOP_LOCATIONS";
1468
1469
  readonly TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS";
1469
1470
  };
@@ -1516,7 +1517,12 @@ export interface StartQueryInput {
1516
1517
  * <li>
1517
1518
  * <p>
1518
1519
  * <code>OVERALL_TRAFFIC_SUGGESTIONS_DETAILS</code>: Provides TTFB, using a 30-day weighted average, for each top
1519
- * location, for a proposed Amazon Web Services location. Must provide a Amazon Web Services location to search.</p>
1520
+ * location, for a proposed Amazon Web Services location. Must provide an Amazon Web Services location to search.</p>
1521
+ * </li>
1522
+ * <li>
1523
+ * <p>
1524
+ * <code>ROUTING_SUGGESTIONS</code>: Provides the predicted average round-trip time (RTT) from an IP prefix toward
1525
+ * an Amazon Web Services location for a DNS resolver. The RTT is calculated at one hour intervals, over a one hour period.</p>
1520
1526
  * </li>
1521
1527
  * </ul>
1522
1528
  * <p>For lists of the fields returned with each query type and more information about how each type of query is
@@ -1534,7 +1540,7 @@ export interface StartQueryInput {
1534
1540
  * in the Amazon CloudWatch Internet Monitor User Guide.</p>
1535
1541
  * @public
1536
1542
  */
1537
- FilterParameters?: FilterParameter[];
1543
+ FilterParameters?: FilterParameter[] | undefined;
1538
1544
  /**
1539
1545
  * <p>The account ID for an account that you've set up cross-account sharing for in Amazon CloudWatch Internet Monitor. You configure cross-account
1540
1546
  * sharing by using Amazon CloudWatch Observability Access Manager. For more information, see
@@ -1542,7 +1548,7 @@ export interface StartQueryInput {
1542
1548
  * observability</a> in the Amazon CloudWatch Internet Monitor User Guide.</p>
1543
1549
  * @public
1544
1550
  */
1545
- LinkedAccountId?: string;
1551
+ LinkedAccountId?: string | undefined;
1546
1552
  }
1547
1553
  /**
1548
1554
  * @public
@@ -1606,36 +1612,36 @@ export interface UpdateMonitorInput {
1606
1612
  * </note>
1607
1613
  * @public
1608
1614
  */
1609
- ResourcesToAdd?: string[];
1615
+ ResourcesToAdd?: string[] | undefined;
1610
1616
  /**
1611
1617
  * <p>The resources to remove from a monitor, which you provide as a set of Amazon Resource Names (ARNs).</p>
1612
1618
  * @public
1613
1619
  */
1614
- ResourcesToRemove?: string[];
1620
+ ResourcesToRemove?: string[] | undefined;
1615
1621
  /**
1616
1622
  * <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
1617
1623
  * <code>INACTIVE</code>. The following values are <i>not</i> accepted: <code>PENDING</code>, and <code>ERROR</code>.</p>
1618
1624
  * @public
1619
1625
  */
1620
- Status?: MonitorConfigState;
1626
+ Status?: MonitorConfigState | undefined;
1621
1627
  /**
1622
1628
  * <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
1623
1629
  * token for other API requests.</p>
1624
1630
  * @public
1625
1631
  */
1626
- ClientToken?: string;
1632
+ ClientToken?: string | undefined;
1627
1633
  /**
1628
1634
  * <p>The maximum number of city-networks to monitor for your application. A city-network is the location (city) where clients access your
1629
1635
  * application resources from and the ASN or network provider, such as an internet service provider (ISP), that clients access the resources
1630
1636
  * through. Setting this limit can help control billing costs.</p>
1631
1637
  * @public
1632
1638
  */
1633
- MaxCityNetworksToMonitor?: number;
1639
+ MaxCityNetworksToMonitor?: number | undefined;
1634
1640
  /**
1635
1641
  * <p>Publish internet measurements for Internet Monitor to another location, such as an Amazon S3 bucket. The measurements are also published to Amazon CloudWatch Logs.</p>
1636
1642
  * @public
1637
1643
  */
1638
- InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery;
1644
+ InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery | undefined;
1639
1645
  /**
1640
1646
  * <p>The percentage of the internet-facing traffic for your application that you want to monitor with this monitor. If you set a city-networks
1641
1647
  * maximum, that limit overrides the traffic percentage that you set.</p>
@@ -1643,7 +1649,7 @@ export interface UpdateMonitorInput {
1643
1649
  * </a> in the Amazon CloudWatch Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
1644
1650
  * @public
1645
1651
  */
1646
- TrafficPercentageToMonitor?: number;
1652
+ TrafficPercentageToMonitor?: number | undefined;
1647
1653
  /**
1648
1654
  * <p>The list of health score thresholds. A threshold percentage for health scores, along with other configuration information,
1649
1655
  * determines when Internet Monitor creates a health event when there's an internet issue that affects your application end users.</p>
@@ -1651,7 +1657,7 @@ export interface UpdateMonitorInput {
1651
1657
  * Change health event thresholds</a> in the Internet Monitor section of the <i>CloudWatch User Guide</i>.</p>
1652
1658
  * @public
1653
1659
  */
1654
- HealthEventsConfig?: HealthEventsConfig;
1660
+ HealthEventsConfig?: HealthEventsConfig | undefined;
1655
1661
  }
1656
1662
  /**
1657
1663
  * @public
@@ -8,9 +8,9 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  );
9
9
  }
10
10
  export interface AvailabilityMeasurement {
11
- ExperienceScore?: number;
12
- PercentOfTotalTrafficImpacted?: number;
13
- PercentOfClientLocationImpacted?: number;
11
+ ExperienceScore?: number | undefined;
12
+ PercentOfTotalTrafficImpacted?: number | undefined;
13
+ PercentOfClientLocationImpacted?: number | undefined;
14
14
  }
15
15
  export declare class BadRequestException extends __BaseException {
16
16
  readonly name: "BadRequestException";
@@ -23,8 +23,8 @@ export interface ClientLocation {
23
23
  ASName: string | undefined;
24
24
  ASNumber: number | undefined;
25
25
  Country: string | undefined;
26
- Subdivision?: string;
27
- Metro?: string;
26
+ Subdivision?: string | undefined;
27
+ Metro?: string | undefined;
28
28
  City: string | undefined;
29
29
  Latitude: number | undefined;
30
30
  Longitude: number | undefined;
@@ -41,15 +41,15 @@ export declare const LocalHealthEventsConfigStatus: {
41
41
  export type LocalHealthEventsConfigStatus =
42
42
  (typeof LocalHealthEventsConfigStatus)[keyof typeof LocalHealthEventsConfigStatus];
43
43
  export interface LocalHealthEventsConfig {
44
- Status?: LocalHealthEventsConfigStatus;
45
- HealthScoreThreshold?: number;
46
- MinTrafficImpact?: number;
44
+ Status?: LocalHealthEventsConfigStatus | undefined;
45
+ HealthScoreThreshold?: number | undefined;
46
+ MinTrafficImpact?: number | undefined;
47
47
  }
48
48
  export interface HealthEventsConfig {
49
- AvailabilityScoreThreshold?: number;
50
- PerformanceScoreThreshold?: number;
51
- AvailabilityLocalHealthEventsConfig?: LocalHealthEventsConfig;
52
- PerformanceLocalHealthEventsConfig?: LocalHealthEventsConfig;
49
+ AvailabilityScoreThreshold?: number | undefined;
50
+ PerformanceScoreThreshold?: number | undefined;
51
+ AvailabilityLocalHealthEventsConfig?: LocalHealthEventsConfig | undefined;
52
+ PerformanceLocalHealthEventsConfig?: LocalHealthEventsConfig | undefined;
53
53
  }
54
54
  export declare const LogDeliveryStatus: {
55
55
  readonly DISABLED: "DISABLED";
@@ -58,22 +58,22 @@ export declare const LogDeliveryStatus: {
58
58
  export type LogDeliveryStatus =
59
59
  (typeof LogDeliveryStatus)[keyof typeof LogDeliveryStatus];
60
60
  export interface S3Config {
61
- BucketName?: string;
62
- BucketPrefix?: string;
63
- LogDeliveryStatus?: LogDeliveryStatus;
61
+ BucketName?: string | undefined;
62
+ BucketPrefix?: string | undefined;
63
+ LogDeliveryStatus?: LogDeliveryStatus | undefined;
64
64
  }
65
65
  export interface InternetMeasurementsLogDelivery {
66
- S3Config?: S3Config;
66
+ S3Config?: S3Config | undefined;
67
67
  }
68
68
  export interface CreateMonitorInput {
69
69
  MonitorName: string | undefined;
70
- Resources?: string[];
71
- ClientToken?: string;
72
- Tags?: Record<string, string>;
73
- MaxCityNetworksToMonitor?: number;
74
- InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery;
75
- TrafficPercentageToMonitor?: number;
76
- HealthEventsConfig?: HealthEventsConfig;
70
+ Resources?: string[] | undefined;
71
+ ClientToken?: string | undefined;
72
+ Tags?: Record<string, string> | undefined;
73
+ MaxCityNetworksToMonitor?: number | undefined;
74
+ InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery | undefined;
75
+ TrafficPercentageToMonitor?: number | undefined;
76
+ HealthEventsConfig?: HealthEventsConfig | undefined;
77
77
  }
78
78
  export declare const MonitorConfigState: {
79
79
  readonly ACTIVE: "ACTIVE";
@@ -129,14 +129,14 @@ export declare const Operator: {
129
129
  };
130
130
  export type Operator = (typeof Operator)[keyof typeof Operator];
131
131
  export interface FilterParameter {
132
- Field?: string;
133
- Operator?: Operator;
134
- Values?: string[];
132
+ Field?: string | undefined;
133
+ Operator?: Operator | undefined;
134
+ Values?: string[] | undefined;
135
135
  }
136
136
  export interface GetHealthEventInput {
137
137
  MonitorName: string | undefined;
138
138
  EventId: string | undefined;
139
- LinkedAccountId?: string;
139
+ LinkedAccountId?: string | undefined;
140
140
  }
141
141
  export interface Network {
142
142
  ASName: string | undefined;
@@ -154,19 +154,19 @@ export interface NetworkImpairment {
154
154
  NetworkEventType: TriangulationEventType | undefined;
155
155
  }
156
156
  export interface RoundTripTime {
157
- P50?: number;
158
- P90?: number;
159
- P95?: number;
157
+ P50?: number | undefined;
158
+ P90?: number | undefined;
159
+ P95?: number | undefined;
160
160
  }
161
161
  export interface PerformanceMeasurement {
162
- ExperienceScore?: number;
163
- PercentOfTotalTrafficImpacted?: number;
164
- PercentOfClientLocationImpacted?: number;
165
- RoundTripTime?: RoundTripTime;
162
+ ExperienceScore?: number | undefined;
163
+ PercentOfTotalTrafficImpacted?: number | undefined;
164
+ PercentOfClientLocationImpacted?: number | undefined;
165
+ RoundTripTime?: RoundTripTime | undefined;
166
166
  }
167
167
  export interface InternetHealth {
168
- Availability?: AvailabilityMeasurement;
169
- Performance?: PerformanceMeasurement;
168
+ Availability?: AvailabilityMeasurement | undefined;
169
+ Performance?: PerformanceMeasurement | undefined;
170
170
  }
171
171
  export declare const HealthEventStatus: {
172
172
  readonly ACTIVE: "ACTIVE";
@@ -178,18 +178,18 @@ export interface ImpactedLocation {
178
178
  ASName: string | undefined;
179
179
  ASNumber: number | undefined;
180
180
  Country: string | undefined;
181
- Subdivision?: string;
182
- Metro?: string;
183
- City?: string;
184
- Latitude?: number;
185
- Longitude?: number;
186
- CountryCode?: string;
187
- SubdivisionCode?: string;
188
- ServiceLocation?: string;
181
+ Subdivision?: string | undefined;
182
+ Metro?: string | undefined;
183
+ City?: string | undefined;
184
+ Latitude?: number | undefined;
185
+ Longitude?: number | undefined;
186
+ CountryCode?: string | undefined;
187
+ SubdivisionCode?: string | undefined;
188
+ ServiceLocation?: string | undefined;
189
189
  Status: HealthEventStatus | undefined;
190
- CausedBy?: NetworkImpairment;
191
- InternetHealth?: InternetHealth;
192
- Ipv4Prefixes?: string[];
190
+ CausedBy?: NetworkImpairment | undefined;
191
+ InternetHealth?: InternetHealth | undefined;
192
+ Ipv4Prefixes?: string[] | undefined;
193
193
  }
194
194
  export declare const HealthEventImpactType: {
195
195
  readonly AVAILABILITY: "AVAILABILITY";
@@ -203,14 +203,14 @@ export interface GetHealthEventOutput {
203
203
  EventArn: string | undefined;
204
204
  EventId: string | undefined;
205
205
  StartedAt: Date | undefined;
206
- EndedAt?: Date;
207
- CreatedAt?: Date;
206
+ EndedAt?: Date | undefined;
207
+ CreatedAt?: Date | undefined;
208
208
  LastUpdatedAt: Date | undefined;
209
209
  ImpactedLocations: ImpactedLocation[] | undefined;
210
210
  Status: HealthEventStatus | undefined;
211
- PercentOfTotalTrafficImpacted?: number;
211
+ PercentOfTotalTrafficImpacted?: number | undefined;
212
212
  ImpactType: HealthEventImpactType | undefined;
213
- HealthScoreThreshold?: number;
213
+ HealthScoreThreshold?: number | undefined;
214
214
  }
215
215
  export interface GetInternetEventInput {
216
216
  EventId: string | undefined;
@@ -231,14 +231,14 @@ export interface GetInternetEventOutput {
231
231
  EventId: string | undefined;
232
232
  EventArn: string | undefined;
233
233
  StartedAt: Date | undefined;
234
- EndedAt?: Date;
234
+ EndedAt?: Date | undefined;
235
235
  ClientLocation: ClientLocation | undefined;
236
236
  EventType: InternetEventType | undefined;
237
237
  EventStatus: InternetEventStatus | undefined;
238
238
  }
239
239
  export interface GetMonitorInput {
240
240
  MonitorName: string | undefined;
241
- LinkedAccountId?: string;
241
+ LinkedAccountId?: string | undefined;
242
242
  }
243
243
  export declare const MonitorProcessingStatusCode: {
244
244
  readonly COLLECTING_DATA: "COLLECTING_DATA";
@@ -257,28 +257,28 @@ export interface GetMonitorOutput {
257
257
  Status: MonitorConfigState | undefined;
258
258
  CreatedAt: Date | undefined;
259
259
  ModifiedAt: Date | undefined;
260
- ProcessingStatus?: MonitorProcessingStatusCode;
261
- ProcessingStatusInfo?: string;
262
- Tags?: Record<string, string>;
263
- MaxCityNetworksToMonitor?: number;
264
- InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery;
265
- TrafficPercentageToMonitor?: number;
266
- HealthEventsConfig?: HealthEventsConfig;
260
+ ProcessingStatus?: MonitorProcessingStatusCode | undefined;
261
+ ProcessingStatusInfo?: string | undefined;
262
+ Tags?: Record<string, string> | undefined;
263
+ MaxCityNetworksToMonitor?: number | undefined;
264
+ InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery | undefined;
265
+ TrafficPercentageToMonitor?: number | undefined;
266
+ HealthEventsConfig?: HealthEventsConfig | undefined;
267
267
  }
268
268
  export interface GetQueryResultsInput {
269
269
  MonitorName: string | undefined;
270
270
  QueryId: string | undefined;
271
- NextToken?: string;
272
- MaxResults?: number;
271
+ NextToken?: string | undefined;
272
+ MaxResults?: number | undefined;
273
273
  }
274
274
  export interface QueryField {
275
- Name?: string;
276
- Type?: string;
275
+ Name?: string | undefined;
276
+ Type?: string | undefined;
277
277
  }
278
278
  export interface GetQueryResultsOutput {
279
279
  Fields: QueryField[] | undefined;
280
280
  Data: string[][] | undefined;
281
- NextToken?: string;
281
+ NextToken?: string | undefined;
282
282
  }
283
283
  export interface GetQueryStatusInput {
284
284
  MonitorName: string | undefined;
@@ -299,27 +299,27 @@ export interface HealthEvent {
299
299
  EventArn: string | undefined;
300
300
  EventId: string | undefined;
301
301
  StartedAt: Date | undefined;
302
- EndedAt?: Date;
303
- CreatedAt?: Date;
302
+ EndedAt?: Date | undefined;
303
+ CreatedAt?: Date | undefined;
304
304
  LastUpdatedAt: Date | undefined;
305
305
  ImpactedLocations: ImpactedLocation[] | undefined;
306
306
  Status: HealthEventStatus | undefined;
307
- PercentOfTotalTrafficImpacted?: number;
307
+ PercentOfTotalTrafficImpacted?: number | undefined;
308
308
  ImpactType: HealthEventImpactType | undefined;
309
- HealthScoreThreshold?: number;
309
+ HealthScoreThreshold?: number | undefined;
310
310
  }
311
311
  export interface ListHealthEventsInput {
312
312
  MonitorName: string | undefined;
313
- StartTime?: Date;
314
- EndTime?: Date;
315
- NextToken?: string;
316
- MaxResults?: number;
317
- EventStatus?: HealthEventStatus;
318
- LinkedAccountId?: string;
313
+ StartTime?: Date | undefined;
314
+ EndTime?: Date | undefined;
315
+ NextToken?: string | undefined;
316
+ MaxResults?: number | undefined;
317
+ EventStatus?: HealthEventStatus | undefined;
318
+ LinkedAccountId?: string | undefined;
319
319
  }
320
320
  export interface ListHealthEventsOutput {
321
321
  HealthEvents: HealthEvent[] | undefined;
322
- NextToken?: string;
322
+ NextToken?: string | undefined;
323
323
  }
324
324
  export declare class InternalServerErrorException extends __BaseException {
325
325
  readonly name: "InternalServerErrorException";
@@ -330,31 +330,31 @@ export declare class InternalServerErrorException extends __BaseException {
330
330
  );
331
331
  }
332
332
  export interface ListInternetEventsInput {
333
- NextToken?: string;
334
- MaxResults?: number;
335
- StartTime?: Date;
336
- EndTime?: Date;
337
- EventStatus?: string;
338
- EventType?: string;
333
+ NextToken?: string | undefined;
334
+ MaxResults?: number | undefined;
335
+ StartTime?: Date | undefined;
336
+ EndTime?: Date | undefined;
337
+ EventStatus?: string | undefined;
338
+ EventType?: string | undefined;
339
339
  }
340
340
  export interface InternetEventSummary {
341
341
  EventId: string | undefined;
342
342
  EventArn: string | undefined;
343
343
  StartedAt: Date | undefined;
344
- EndedAt?: Date;
344
+ EndedAt?: Date | undefined;
345
345
  ClientLocation: ClientLocation | undefined;
346
346
  EventType: InternetEventType | undefined;
347
347
  EventStatus: InternetEventStatus | undefined;
348
348
  }
349
349
  export interface ListInternetEventsOutput {
350
350
  InternetEvents: InternetEventSummary[] | undefined;
351
- NextToken?: string;
351
+ NextToken?: string | undefined;
352
352
  }
353
353
  export interface ListTagsForResourceInput {
354
354
  ResourceArn: string | undefined;
355
355
  }
356
356
  export interface ListTagsForResourceOutput {
357
- Tags?: Record<string, string>;
357
+ Tags?: Record<string, string> | undefined;
358
358
  }
359
359
  export declare class NotFoundException extends __BaseException {
360
360
  readonly name: "NotFoundException";
@@ -372,25 +372,26 @@ export declare class TooManyRequestsException extends __BaseException {
372
372
  );
373
373
  }
374
374
  export interface ListMonitorsInput {
375
- NextToken?: string;
376
- MaxResults?: number;
377
- MonitorStatus?: string;
378
- IncludeLinkedAccounts?: boolean;
375
+ NextToken?: string | undefined;
376
+ MaxResults?: number | undefined;
377
+ MonitorStatus?: string | undefined;
378
+ IncludeLinkedAccounts?: boolean | undefined;
379
379
  }
380
380
  export interface Monitor {
381
381
  MonitorName: string | undefined;
382
382
  MonitorArn: string | undefined;
383
383
  Status: MonitorConfigState | undefined;
384
- ProcessingStatus?: MonitorProcessingStatusCode;
384
+ ProcessingStatus?: MonitorProcessingStatusCode | undefined;
385
385
  }
386
386
  export interface ListMonitorsOutput {
387
387
  Monitors: Monitor[] | undefined;
388
- NextToken?: string;
388
+ NextToken?: string | undefined;
389
389
  }
390
390
  export declare const QueryType: {
391
391
  readonly MEASUREMENTS: "MEASUREMENTS";
392
392
  readonly OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS";
393
393
  readonly OVERALL_TRAFFIC_SUGGESTIONS_DETAILS: "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS";
394
+ readonly ROUTING_SUGGESTIONS: "ROUTING_SUGGESTIONS";
394
395
  readonly TOP_LOCATIONS: "TOP_LOCATIONS";
395
396
  readonly TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS";
396
397
  };
@@ -400,8 +401,8 @@ export interface StartQueryInput {
400
401
  StartTime: Date | undefined;
401
402
  EndTime: Date | undefined;
402
403
  QueryType: QueryType | undefined;
403
- FilterParameters?: FilterParameter[];
404
- LinkedAccountId?: string;
404
+ FilterParameters?: FilterParameter[] | undefined;
405
+ LinkedAccountId?: string | undefined;
405
406
  }
406
407
  export interface StartQueryOutput {
407
408
  QueryId: string | undefined;
@@ -420,14 +421,14 @@ export declare class ResourceNotFoundException extends __BaseException {
420
421
  }
421
422
  export interface UpdateMonitorInput {
422
423
  MonitorName: string | undefined;
423
- ResourcesToAdd?: string[];
424
- ResourcesToRemove?: string[];
425
- Status?: MonitorConfigState;
426
- ClientToken?: string;
427
- MaxCityNetworksToMonitor?: number;
428
- InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery;
429
- TrafficPercentageToMonitor?: number;
430
- HealthEventsConfig?: HealthEventsConfig;
424
+ ResourcesToAdd?: string[] | undefined;
425
+ ResourcesToRemove?: string[] | undefined;
426
+ Status?: MonitorConfigState | undefined;
427
+ ClientToken?: string | undefined;
428
+ MaxCityNetworksToMonitor?: number | undefined;
429
+ InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery | undefined;
430
+ TrafficPercentageToMonitor?: number | undefined;
431
+ HealthEventsConfig?: HealthEventsConfig | undefined;
431
432
  }
432
433
  export interface UpdateMonitorOutput {
433
434
  MonitorArn: 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.687.0",
4
+ "version": "3.691.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,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",