1VM::EC2::ELB::HealthCheUcske(r3)Contributed Perl DocumenVtMa:t:iEoCn2::ELB::HealthCheck(3)
2
3
4
6 VM::EC2::ELB:HealthCheck - Load Balancer Health Check Parameters
7
9 use VM::EC2;
10
11 $lb = $ec2->describe_load_balancers('my-lb');
12 my $hc = $lb->HealthCheck;
13 my $interval = $hc->Interval;
14 my $target = $hc->Target;
15 my $healthy_threshold = $hc->HealthyThreshold;
16 my $unhealthy_threshold = $hc->UnhealthyThreshold;
17 my $timeout = $hc->Timeout;
18
20 This object is used to describe the parameters used to perform
21 healthchecks on a load balancer. Generally you will not call this
22 directly, as all its methods are passed through by the VM::EC2::ELB
23 object returned from the HealthCheck() call.
24
26 The following object methods are supported:
27
28 Interval -- The time interval between health checks
29 Target -- The target protocol protocol and port of the check
30 HealthyThreshold -- The number of successive positive health checks that
31 need to be completed to be marked as healthy
32 UnhealthyThreshold -- The number of successive negative health checks that
33 need to be completed to be marked as unhealthy
34 Timeout -- The time interval of what is considered a timeout
35
37 When used in a string context, this object will interpolate object
38 parameters as a series of Key:Value strings
39
41 VM::EC2 VM::EC2::Generic VM::EC2::Snapshot VM::EC2::ELB
42
44 Lance Kinley <lkinley@loyaltymethods.com>.
45
46 Copyright (c) 2012 Loyalty Methods, Inc.
47
48 This package and its accompanying libraries is free software; you can
49 redistribute it and/or modify it under the terms of the GPL (either
50 version 1, or at your option, any later version) or the Artistic
51 License 2.0. Refer to LICENSE for the full license text. In addition,
52 please see DISCLAIMER.txt for disclaimers of warranty.
53
54
55
56perl v5.32.1 2021-01-27 VM::EC2::ELB::HealthCheck(3)