ElbHealthCheckOptions

class aws_cdk.aws_autoscaling.ElbHealthCheckOptions(*, grace)

Bases: object

ELB Heath check options.

Parameters:

grace (Duration) – Specified the time Auto Scaling waits before checking the health status of an EC2 instance that has come into service. This option is required for ELB health checks.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk as cdk
from aws_cdk import aws_autoscaling as autoscaling

elb_health_check_options = autoscaling.ElbHealthCheckOptions(
    grace=cdk.Duration.minutes(30)
)

Attributes

grace

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

This option is required for ELB health checks.