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.aws_autoscaling as autoscaling import aws_cdk.core as cdk 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.