Show / Hide Table of Contents

Class Ec2HealthCheckOptions

(deprecated) EC2 Heath check options.

Inheritance
object
Ec2HealthCheckOptions
Implements
IEc2HealthCheckOptions
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.AutoScaling
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class Ec2HealthCheckOptions : IEc2HealthCheckOptions
Syntax (vb)
Public Class Ec2HealthCheckOptions Implements IEc2HealthCheckOptions
Remarks

Stability: Deprecated

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;
             using Amazon.CDK.AWS.AutoScaling;

             var ec2HealthCheckOptions = new Ec2HealthCheckOptions {
                 Grace = Duration.Minutes(30)
             };

Synopsis

Constructors

Ec2HealthCheckOptions()

(deprecated) EC2 Heath check options.

Properties

Grace

(deprecated) Specified the time Auto Scaling waits before checking the health status of an EC2 instance that has come into service.

Constructors

Ec2HealthCheckOptions()

(deprecated) EC2 Heath check options.

public Ec2HealthCheckOptions()
Remarks

Stability: Deprecated

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;
             using Amazon.CDK.AWS.AutoScaling;

             var ec2HealthCheckOptions = new Ec2HealthCheckOptions {
                 Grace = Duration.Minutes(30)
             };

Properties

Grace

(deprecated) Specified the time Auto Scaling waits before checking the health status of an EC2 instance that has come into service.

[Obsolete]
public Duration? Grace { get; set; }
Property Value

Duration

Remarks

Default: Duration.seconds(0)

Stability: Deprecated

Implements

IEc2HealthCheckOptions
Back to top Generated by DocFX