interface LocalHealthEventsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InternetMonitor.Mixins.CfnMonitorPropsMixin.LocalHealthEventsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinternetmonitor/mixins#CfnMonitorPropsMixin_LocalHealthEventsConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.internetmonitor.mixins.CfnMonitorPropsMixin.LocalHealthEventsConfigProperty |
Python | aws_cdk.mixins_preview.aws_internetmonitor.mixins.CfnMonitorPropsMixin.LocalHealthEventsConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_internetmonitor » mixins » CfnMonitorPropsMixin » LocalHealthEventsConfigProperty |
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 { mixins as internetmonitor_mixins } from '@aws-cdk/mixins-preview/aws-internetmonitor';
const localHealthEventsConfigProperty: internetmonitor_mixins.CfnMonitorPropsMixin.LocalHealthEventsConfigProperty = {
healthScoreThreshold: 123,
minTrafficImpact: 123,
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| health | number | The health event threshold percentage set for a local health score. |
| min | number | The minimum percentage of overall traffic for an application that must be impacted by an issue before Internet Monitor creates an event when a threshold is crossed for a local health score. |
| status? | string | The status of whether Internet Monitor creates a health event based on a threshold percentage set for a local health score. |
healthScoreThreshold?
Type:
number
(optional)
The health event threshold percentage set for a local health score.
minTrafficImpact?
Type:
number
(optional)
The minimum percentage of overall traffic for an application 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 minimum traffic impact threshold, the default value is 0.01%.
status?
Type:
string
(optional)
The status of whether Internet Monitor creates a health event based on a threshold percentage set for a local health score.
The status can be ENABLED or DISABLED .

.NET
Go
Java
Python
TypeScript