interface ReferenceValue
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruInsightClosed.ReferenceValue |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruInsightClosed_ReferenceValue |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruInsightClosed.ReferenceValue |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruInsightClosed.ReferenceValue |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruInsightClosed ยป ReferenceValue |
Type definition for ReferenceValue.
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 referenceValue: devopsguru_events.DevOpsGuruInsightClosed.ReferenceValue = {
comparisonOperator: ['comparisonOperator'],
datapointsToAlarm: ['datapointsToAlarm'],
evaluationPeriod: ['evaluationPeriod'],
threshold: ['threshold'],
};
Properties
| Name | Type | Description |
|---|---|---|
| comparison | string[] | comparisonOperator property. |
| datapoints | string[] | datapointsToAlarm property. |
| evaluation | string[] | evaluationPeriod property. |
| threshold? | string[] | threshold property. |
comparisonOperator?
Type:
string[]
(optional, default: Do not filter on this field)
comparisonOperator property.
Specify an array of string values to match this event if the actual value of comparisonOperator is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datapointsToAlarm?
Type:
string[]
(optional, default: Do not filter on this field)
datapointsToAlarm property.
Specify an array of string values to match this event if the actual value of datapointsToAlarm is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
evaluationPeriod?
Type:
string[]
(optional, default: Do not filter on this field)
evaluationPeriod property.
Specify an array of string values to match this event if the actual value of evaluationPeriod is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
threshold?
Type:
string[]
(optional, default: Do not filter on this field)
threshold property.
Specify an array of string values to match this event if the actual value of threshold 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