Show / Hide Table of Contents

Interface IEc2HealthCheckOptions

EC2 Heath check options.

Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public interface IEc2HealthCheckOptions
Syntax (vb)
Public Interface IEc2HealthCheckOptions
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.AutoScaling;
using Amazon.CDK;
var ec2HealthCheckOptions = new Ec2HealthCheckOptions {
    Grace = Duration.Minutes(30)
};

Synopsis

Properties

Grace

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

Properties

Grace

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

virtual Duration Grace { get; }
Property Value

Duration

Remarks

Default: Duration.seconds(0)

Back to top Generated by DocFX