interface AlarmCondition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruInsightClosed.AlarmCondition |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruInsightClosed_AlarmCondition |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruInsightClosed.AlarmCondition |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruInsightClosed.AlarmCondition |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruInsightClosed ยป AlarmCondition |
Type definition for AlarmCondition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as devopsguru_events } from '@aws-cdk/mixins-preview/aws-devopsguru';
const alarmCondition: devopsguru_events.DevOpsGuruInsightClosed.AlarmCondition = {
detectionBand: ['detectionBand'],
referenceValue: {
comparisonOperator: ['comparisonOperator'],
datapointsToAlarm: ['datapointsToAlarm'],
evaluationPeriod: ['evaluationPeriod'],
threshold: ['threshold'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| detection | string[] | detectionBand property. |
| reference | Reference | referenceValue property. |
detectionBand?
Type:
string[]
(optional, default: Do not filter on this field)
detectionBand property.
Specify an array of string values to match this event if the actual value of detectionBand is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
referenceValue?
Type:
Reference
(optional, default: Do not filter on this field)
referenceValue property.
Specify an array of string values to match this event if the actual value of referenceValue is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript