@aws-sdk/client-internetmonitor 3.378.0 → 3.382.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.
@@ -1,5 +1,6 @@
1
1
  export * from "./InternetMonitorClient";
2
2
  export * from "./InternetMonitor";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./models";
@@ -24,9 +24,22 @@ export declare class ConflictException extends __BaseException {
24
24
  readonly $fault: "client";
25
25
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
26
26
  }
27
+ export declare const LocalHealthEventsConfigStatus: {
28
+ readonly DISABLED: "DISABLED";
29
+ readonly ENABLED: "ENABLED";
30
+ };
31
+ export type LocalHealthEventsConfigStatus =
32
+ (typeof LocalHealthEventsConfigStatus)[keyof typeof LocalHealthEventsConfigStatus];
33
+ export interface LocalHealthEventsConfig {
34
+ Status?: LocalHealthEventsConfigStatus | string;
35
+ HealthScoreThreshold?: number;
36
+ MinTrafficImpact?: number;
37
+ }
27
38
  export interface HealthEventsConfig {
28
39
  AvailabilityScoreThreshold?: number;
29
40
  PerformanceScoreThreshold?: number;
41
+ AvailabilityLocalHealthEventsConfig?: LocalHealthEventsConfig;
42
+ PerformanceLocalHealthEventsConfig?: LocalHealthEventsConfig;
30
43
  }
31
44
  export declare const LogDeliveryStatus: {
32
45
  readonly DISABLED: "DISABLED";
@@ -158,6 +171,8 @@ export interface ImpactedLocation {
158
171
  }
159
172
  export declare const HealthEventImpactType: {
160
173
  readonly AVAILABILITY: "AVAILABILITY";
174
+ readonly LOCAL_AVAILABILITY: "LOCAL_AVAILABILITY";
175
+ readonly LOCAL_PERFORMANCE: "LOCAL_PERFORMANCE";
161
176
  readonly PERFORMANCE: "PERFORMANCE";
162
177
  };
163
178
  export type HealthEventImpactType =
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.378.0",
4
+ "version": "3.382.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,15 +21,15 @@
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.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",