1VM::EC2::ELB::AttributeUss(e3r)Contributed Perl DocumentVaMt:i:oEnC2::ELB::Attributes(3)
2
3
4
6 VM::EC2::ELB:Attributes - Object describing the attributes of an
7 Elastic Load Balancer.
8
10 use VM::EC2;
11
12 my $ec2 = VM::EC2->new(...);
13 my $lb = $ec2->describe_load_balancer_attributes('my-lb');
14 my $access_log = $lb->AccessLog;
15 my $conn_drain = $lb->ConnectionDraining;
16 my $conn_settings = $lb->ConnectionSettings;
17 my $cross_zone = $lb->CrossZoneLoadBalancing;
18
20 This object is used to describe the parameters returned by a
21 DescribeLoadBalancerAttributes API call.
22
24 The following object methods are supported:
25
26 AccessLog -- If enabled, the load balancer captures detailed
27 information of all the requests and delivers the
28 information to the Amazon S3 bucket that you
29 specify.
30
31 ConnectionDraining -- If enabled, the load balancer allows existing
32 requests to complete before the load balancer
33 shifts traffic away from a deregistered or
34 unhealthy back-end instance.
35
36 ConnectionSettings -- By default, the Elastic Load Balancer maintains a
37 60-second idle connection timeout for both front-
38 end and back-end connections of your load
39 balancer. If the ConnectionSettings attribute is
40 set, Elastic Load Balancing will allow the
41 connections to remain idle (no data is sent over
42 the connection) for the specified duration.
43
44 CrossZoneLoadBalancing -- If enabled, the load balancer routes the request
45 traffic evenly across all back-end instances
46 regardless of the Availability Zones.
47
49 When used in a string context, this object will interpolate the
50 instance state.
51
53 VM::EC2 VM::EC2::Generic VM::EC2::ELB
54
56 Lance Kinley <lkinley@loyaltymethods.com>.
57
58 Copyright (c) 2014 Loyalty Methods, Inc.
59
60 This package and its accompanying libraries is free software; you can
61 redistribute it and/or modify it under the terms of the GPL (either
62 version 1, or at your option, any later version) or the Artistic
63 License 2.0. Refer to LICENSE for the full license text. In addition,
64 please see DISCLAIMER.txt for disclaimers of warranty.
65
66
67
68perl v5.28.1 2019-02-02 VM::EC2::ELB::Attributes(3)