Show / Hide Table of Contents

Class AlarmReference

A reference to a Alarm resource.

Inheritance
object
AlarmReference
Implements
IAlarmReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

AlarmName

The AlarmName of the Alarm resource.

public string AlarmName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IAlarmReference
Back to top Generated by DocFX