Class CfnApplicationPropsMixin.AlarmProperty
The AWS::ApplicationInsights::Application Alarm property type defines a CloudWatch alarm to be monitored for the component.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnApplicationPropsMixin.AlarmProperty : CfnApplicationPropsMixin.IAlarmProperty
Syntax (vb)
Public Class CfnApplicationPropsMixin.AlarmProperty Implements CfnApplicationPropsMixin.IAlarmProperty
Remarks
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.ApplicationInsights.Mixins;
var alarmProperty = new AlarmProperty {
AlarmName = "alarmName",
Severity = "severity"
};
Synopsis
Constructors
| AlarmProperty() | The |
Properties
| AlarmName | The name of the CloudWatch alarm to be monitored for the component. |
| Severity | Indicates the degree of outage when the alarm goes off. |
Constructors
AlarmProperty()
The AWS::ApplicationInsights::Application Alarm property type defines a CloudWatch alarm to be monitored for the component.
public AlarmProperty()
Remarks
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.ApplicationInsights.Mixins;
var alarmProperty = new AlarmProperty {
AlarmName = "alarmName",
Severity = "severity"
};
Properties
AlarmName
The name of the CloudWatch alarm to be monitored for the component.
public string? AlarmName { get; set; }
Property Value
Remarks
Severity
Indicates the degree of outage when the alarm goes off.
public string? Severity { get; set; }