Show / Hide Table of Contents

Class HealthCheckReference

A reference to a HealthCheck resource.

Inheritance
object
HealthCheckReference
Implements
IHealthCheckReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class HealthCheckReference : IHealthCheckReference
Syntax (vb)
Public Class HealthCheckReference Implements IHealthCheckReference
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.Interfaces.Route53;

            var healthCheckReference = new HealthCheckReference {
                HealthCheckId = "healthCheckId"
            };

Synopsis

Constructors

HealthCheckReference()

A reference to a HealthCheck resource.

Properties

HealthCheckId

The HealthCheckId of the HealthCheck resource.

Constructors

HealthCheckReference()

A reference to a HealthCheck resource.

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

            var healthCheckReference = new HealthCheckReference {
                HealthCheckId = "healthCheckId"
            };

Properties

HealthCheckId

The HealthCheckId of the HealthCheck resource.

public string HealthCheckId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IHealthCheckReference
Back to top Generated by DocFX