1VM::EC2::ELB::Policies(U3s)er Contributed Perl DocumentatViMo:n:EC2::ELB::Policies(3)
2
3
4
6 VM::EC2::ELB:Policies - Elastic Load Balancer Policies
7
9 use VM::EC2;
10
11 my $ec2 = VM::EC2->new(...);
12 my $lb = $ec2->describe_load_balancers('my-lb');
13 my $p = $lb->Policies;
14 my @lb_policies = $p->LBCookieStickinessPolicies;
15 my @app_policies = $p->AppCookieStickinessPolicies;
16 my @other_policies = $p->OtherPolicies;
17
19 This object is used to describe the policies that are attached to an
20 Elastic Load Balancer, segregated by type. To more easily obtain a
21 full list of policies associated with the ELB, used the
22 VM::EC2->describe_load_balancers() method.
23
25 The following object methods are supported:
26
27 AppCookieStickinessPolicies -- Application-based cookie stickiness policies
28 LBCookieStickinessPolicies -- Load Balancer-based cookie stickiness policies
29 OtherPolicies -- Other Policies
30
32 NONE.
33
35 VM::EC2 VM::EC2::Generic VM::EC2::ELB
36
38 Lance Kinley <lkinley@loyaltymethods.com>.
39
40 Copyright (c) 2012 Loyalty Methods, Inc.
41
42 This package and its accompanying libraries is free software; you can
43 redistribute it and/or modify it under the terms of the GPL (either
44 version 1, or at your option, any later version) or the Artistic
45 License 2.0. Refer to LICENSE for the full license text. In addition,
46 please see DISCLAIMER.txt for disclaimers of warranty.
47
48
49
50perl v5.30.0 2019-07-26 VM::EC2::ELB::Policies(3)