Class CfnAlarmModel.AlarmCapabilitiesProperty
Contains the configuration information of alarm state changes.
Inheritance
System.Object
CfnAlarmModel.AlarmCapabilitiesProperty
Implements
Namespace: Amazon.CDK.AWS.IoTEvents
Assembly: Amazon.CDK.AWS.IoTEvents.dll
Syntax (csharp)
public class AlarmCapabilitiesProperty : Object, CfnAlarmModel.IAlarmCapabilitiesProperty
Syntax (vb)
Public Class AlarmCapabilitiesProperty
Inherits Object
Implements CfnAlarmModel.IAlarmCapabilitiesProperty
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.AWS.IoTEvents;
var alarmCapabilitiesProperty = new AlarmCapabilitiesProperty {
AcknowledgeFlow = new AcknowledgeFlowProperty {
Enabled = false
},
InitializationConfiguration = new InitializationConfigurationProperty {
DisabledOnInitialization = false
}
};
Synopsis
Constructors
AlarmCapabilitiesProperty() |
Properties
AcknowledgeFlow | Specifies whether to get notified for alarm state changes. |
InitializationConfiguration | Specifies the default alarm state. |
Constructors
AlarmCapabilitiesProperty()
public AlarmCapabilitiesProperty()
Properties
AcknowledgeFlow
Specifies whether to get notified for alarm state changes.
public object AcknowledgeFlow { get; set; }
Property Value
System.Object
Remarks
InitializationConfiguration
Specifies the default alarm state.
public object InitializationConfiguration { get; set; }
Property Value
System.Object
Remarks
The configuration applies to all alarms that were created based on this alarm model.