Class DevOpsGuruInsightSeverityUpgraded.AlarmCondition
(experimental) Type definition for AlarmCondition.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class DevOpsGuruInsightSeverityUpgraded.AlarmCondition : DevOpsGuruInsightSeverityUpgraded.IAlarmCondition
Syntax (vb)
Public Class DevOpsGuruInsightSeverityUpgraded.AlarmCondition Implements DevOpsGuruInsightSeverityUpgraded.IAlarmCondition
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events;
var alarmCondition = new AlarmCondition {
DetectionBand = new [] { "detectionBand" },
ReferenceValue = new ReferenceValue {
ComparisonOperator = new [] { "comparisonOperator" },
DatapointsToAlarm = new [] { "datapointsToAlarm" },
EvaluationPeriod = new [] { "evaluationPeriod" },
Threshold = new [] { "threshold" }
}
};
Synopsis
Constructors
| AlarmCondition() | (experimental) Type definition for AlarmCondition. |
Properties
| DetectionBand | (experimental) detectionBand property. |
| ReferenceValue | (experimental) referenceValue property. |
Constructors
AlarmCondition()
(experimental) Type definition for AlarmCondition.
public AlarmCondition()
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events;
var alarmCondition = new AlarmCondition {
DetectionBand = new [] { "detectionBand" },
ReferenceValue = new ReferenceValue {
ComparisonOperator = new [] { "comparisonOperator" },
DatapointsToAlarm = new [] { "datapointsToAlarm" },
EvaluationPeriod = new [] { "evaluationPeriod" },
Threshold = new [] { "threshold" }
}
};
Properties
DetectionBand
(experimental) detectionBand property.
public string[]? DetectionBand { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
ReferenceValue
(experimental) referenceValue property.
public DevOpsGuruInsightSeverityUpgraded.IReferenceValue? ReferenceValue { get; set; }
Property Value
DevOpsGuruInsightSeverityUpgraded.IReferenceValue
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental