@aws-sdk/client-internetmonitor 3.515.0 → 3.520.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
@@ -1143,6 +1143,7 @@ var de_ImpactedLocation = /* @__PURE__ */ __name((output, context) => {
1143
1143
  Country: import_smithy_client.expectString,
1144
1144
  CountryCode: import_smithy_client.expectString,
1145
1145
  InternetHealth: (_) => de_InternetHealth(_, context),
1146
+ Ipv4Prefixes: import_smithy_client._json,
1146
1147
  Latitude: import_smithy_client.limitedParseDouble,
1147
1148
  Longitude: import_smithy_client.limitedParseDouble,
1148
1149
  Metro: import_smithy_client.expectString,
@@ -653,6 +653,7 @@ const de_ImpactedLocation = (output, context) => {
653
653
  Country: __expectString,
654
654
  CountryCode: __expectString,
655
655
  InternetHealth: (_) => de_InternetHealth(_, context),
656
+ Ipv4Prefixes: _json,
656
657
  Latitude: __limitedParseDouble,
657
658
  Longitude: __limitedParseDouble,
658
659
  Metro: __expectString,
@@ -96,6 +96,9 @@ declare const GetHealthEventCommand_base: {
96
96
  * // },
97
97
  * // },
98
98
  * // },
99
+ * // Ipv4Prefixes: [ // Ipv4PrefixList
100
+ * // "STRING_VALUE",
101
+ * // ],
99
102
  * // },
100
103
  * // ],
101
104
  * // Status: "STRING_VALUE", // required
@@ -102,6 +102,9 @@ declare const ListHealthEventsCommand_base: {
102
102
  * // },
103
103
  * // },
104
104
  * // },
105
+ * // Ipv4Prefixes: [ // Ipv4PrefixList
106
+ * // "STRING_VALUE",
107
+ * // ],
105
108
  * // },
106
109
  * // ],
107
110
  * // Status: "STRING_VALUE", // required
@@ -115,7 +115,7 @@ export interface LocalHealthEventsConfig {
115
115
  * @public
116
116
  * <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
117
117
  * threshold is crossed for a local health score.</p>
118
- * <p>If you don't set a minimum traffic impact threshold, the default value is 0.01%.</p>
118
+ * <p>If you don't set a minimum traffic impact threshold, the default value is 0.1%.</p>
119
119
  */
120
120
  MinTrafficImpact?: number;
121
121
  }
@@ -671,6 +671,11 @@ export interface ImpactedLocation {
671
671
  * <p>The calculated health at a specific location.</p>
672
672
  */
673
673
  InternetHealth?: InternetHealth;
674
+ /**
675
+ * @public
676
+ * <p>The IPv4 prefixes at the client location that was impacted by the health event.</p>
677
+ */
678
+ Ipv4Prefixes?: string[];
674
679
  }
675
680
  /**
676
681
  * @public
@@ -1237,15 +1242,18 @@ export interface StartQueryInput {
1237
1242
  * <ul>
1238
1243
  * <li>
1239
1244
  * <p>
1240
- * <code>MEASUREMENTS</code>: TBD definition</p>
1245
+ * <code>MEASUREMENTS</code>: Provides availability score, performance score, total traffic,
1246
+ * and round-trip times, at 5 minute intervals.</p>
1241
1247
  * </li>
1242
1248
  * <li>
1243
1249
  * <p>
1244
- * <code>TOP_LOCATIONS</code>: TBD definition</p>
1250
+ * <code>TOP_LOCATIONS</code>: Provides availability score, performance score, total traffic,
1251
+ * and time to first byte (TTFB) information, for the top location and ASN combinations that you're monitoring, by traffic volume.</p>
1245
1252
  * </li>
1246
1253
  * <li>
1247
1254
  * <p>
1248
- * <code>TOP_LOCATION_DETAILS</code>: TBD definition</p>
1255
+ * <code>TOP_LOCATION_DETAILS</code>: Provides TTFB for Amazon CloudFront, your
1256
+ * current configuration, and the best performing EC2 configuration, at 1 hour intervals.</p>
1249
1257
  * </li>
1250
1258
  * </ul>
1251
1259
  * <p>For lists of the fields returned with each query type and more information about how each type of query is
@@ -178,6 +178,7 @@ export interface ImpactedLocation {
178
178
  Status: HealthEventStatus | undefined;
179
179
  CausedBy?: NetworkImpairment;
180
180
  InternetHealth?: InternetHealth;
181
+ Ipv4Prefixes?: string[];
181
182
  }
182
183
  export declare const HealthEventImpactType: {
183
184
  readonly AVAILABILITY: "AVAILABILITY";
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.515.0",
4
+ "version": "3.520.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",