NAME
VM::EC2::ELB:Attributes - Object describing the attributes of an Elastic Load Balancer.
SYNOPSIS
use VM::EC2;
my $ec2 = VM::EC2->new(...);
my $lb = $ec2->describe_load_balancer_attributes('my-lb');
my $access_log = $lb->AccessLog;
my $conn_drain = $lb->ConnectionDraining;
my $conn_settings = $lb->ConnectionSettings;
my $cross_zone = $lb->CrossZoneLoadBalancing;
DESCRIPTION
This object is used to describe the parameters returned by a DescribeLoadBalancerAttributes API call.
METHODS
The following object methods are supported:
AccessLog -- If enabled, the load balancer captures detailed
information of all the requests and delivers the
information to the Amazon S3 bucket that you
specify.
ConnectionDraining -- If enabled, the load balancer allows existing
requests to complete before the load balancer
shifts traffic away from a deregistered or
unhealthy back-end instance.
ConnectionSettings -- By default, the Elastic Load Balancer maintains a
60-second idle connection timeout for both front-
end and back-end connections of your load
balancer. If the ConnectionSettings attribute is
set, Elastic Load Balancing will allow the
connections to remain idle (no data is sent over
the connection) for the specified duration.
CrossZoneLoadBalancing -- If enabled, the load balancer routes the request
traffic evenly across all back-end instances
regardless of the Availability Zones.
STRING OVERLOADING
When used in a string context, this object will interpolate the instance state.
SEE ALSO
VM::EC2 VM::EC2::Generic VM::EC2::ELB
AUTHOR
Lance Kinley <lkinley@loyaltymethods.com>.
Copyright (c) 2014 Loyalty Methods, Inc.
This package and its accompanying libraries is free software; you can redistribute it and/or modify it under the terms of the GPL (either version 1, or at your option, any later version) or the Artistic License 2.0. Refer to LICENSE for the full license text. In addition, please see DISCLAIMER.txt for disclaimers of warranty.