Class AlarmReference
A reference to a Alarm resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudWatch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AlarmReference : IAlarmReference
Syntax (vb)
Public Class AlarmReference Implements IAlarmReference
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.CloudWatch;
var alarmReference = new AlarmReference {
AlarmArn = "alarmArn",
AlarmName = "alarmName"
};
Synopsis
Constructors
AlarmReference() | A reference to a Alarm resource. |
Properties
AlarmArn | The ARN of the Alarm resource. |
AlarmName | The AlarmName of the Alarm resource. |
Constructors
AlarmReference()
A reference to a Alarm resource.
public AlarmReference()
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.CloudWatch;
var alarmReference = new AlarmReference {
AlarmArn = "alarmArn",
AlarmName = "alarmName"
};
Properties
AlarmArn
The ARN of the Alarm resource.
public string AlarmArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
AlarmName
The AlarmName of the Alarm resource.
public string AlarmName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated