Interface CfnMonitor.LocalHealthEventsConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMonitor.LocalHealthEventsConfigProperty.Jsii$Proxy
Enclosing class:
CfnMonitor

@Stability(Stable) public static interface CfnMonitor.LocalHealthEventsConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration information that determines the threshold and other conditions for when Internet Monitor creates a health event for a local performance or availability issue, when scores cross a threshold for one or more city-networks.

Defines the percentages, for performance scores or availability scores, that are the local thresholds for when Amazon CloudWatch Internet Monitor creates a health event. Also defines whether a local threshold is enabled or disabled, and the minimum percentage of overall traffic that must be impacted by an issue before Internet Monitor creates an event when a threshold is crossed for a local health score.

If you don't set a local health event threshold, the default value is 60%.

For more information, see Change health event thresholds in the Internet Monitor section of the Amazon CloudWatch User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.internetmonitor.*;
 LocalHealthEventsConfigProperty localHealthEventsConfigProperty = LocalHealthEventsConfigProperty.builder()
         .healthScoreThreshold(123)
         .minTrafficImpact(123)
         .status("status")
         .build();
 

See Also: