Show / Hide Table of Contents

Class AlarmIdentifier

A CloudWatch alarm that you want Amazon Route 53 health checker to use to determine whether this health check is healthy.

Inheritance
object
AlarmIdentifier
Implements
IAlarmIdentifier
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.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AlarmIdentifier : IAlarmIdentifier
Syntax (vb)
Public Class AlarmIdentifier Implements IAlarmIdentifier
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.Route53;

            var alarmIdentifier = new AlarmIdentifier {
                Name = "name",
                Region = "region"
            };

Synopsis

Constructors

AlarmIdentifier()

A CloudWatch alarm that you want Amazon Route 53 health checker to use to determine whether this health check is healthy.

Properties

Name

The name of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.

Region

The region of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.

Constructors

AlarmIdentifier()

A CloudWatch alarm that you want Amazon Route 53 health checker to use to determine whether this health check is healthy.

public AlarmIdentifier()
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.Route53;

            var alarmIdentifier = new AlarmIdentifier {
                Name = "name",
                Region = "region"
            };

Properties

Name

The name of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.

public string Name { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Region

The region of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.

public string Region { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IAlarmIdentifier
Back to top Generated by DocFX