File Coverage

blib/lib/Paws/ELBv2/LoadBalancer.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::ELBv2::LoadBalancer;
2 1     1   447 use Moose;
  1         3  
  1         7  
3             has AvailabilityZones => (is => 'ro', isa => 'ArrayRef[Paws::ELBv2::AvailabilityZone]');
4             has CanonicalHostedZoneId => (is => 'ro', isa => 'Str');
5             has CreatedTime => (is => 'ro', isa => 'Str');
6             has DNSName => (is => 'ro', isa => 'Str');
7             has IpAddressType => (is => 'ro', isa => 'Str');
8             has LoadBalancerArn => (is => 'ro', isa => 'Str');
9             has LoadBalancerName => (is => 'ro', isa => 'Str');
10             has Scheme => (is => 'ro', isa => 'Str');
11             has SecurityGroups => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
12             has State => (is => 'ro', isa => 'Paws::ELBv2::LoadBalancerState');
13             has Type => (is => 'ro', isa => 'Str');
14             has VpcId => (is => 'ro', isa => 'Str');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::ELBv2::LoadBalancer
22              
23             =head1 USAGE
24              
25             This class represents one of two things:
26              
27             =head3 Arguments in a call to a service
28              
29             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
30             Each attribute should be used as a named argument in the calls that expect this type of object.
31              
32             As an example, if Att1 is expected to be a Paws::ELBv2::LoadBalancer object:
33              
34             $service_obj->Method(Att1 => { AvailabilityZones => $value, ..., VpcId => $value });
35              
36             =head3 Results returned from an API call
37              
38             Use accessors for each attribute. If Att1 is expected to be an Paws::ELBv2::LoadBalancer object:
39              
40             $result = $service_obj->Method(...);
41             $result->Att1->AvailabilityZones
42              
43             =head1 DESCRIPTION
44              
45             Information about a load balancer.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 AvailabilityZones => ArrayRef[L<Paws::ELBv2::AvailabilityZone>]
51              
52             The Availability Zones for the load balancer.
53              
54              
55             =head2 CanonicalHostedZoneId => Str
56              
57             The ID of the Amazon Route 53 hosted zone associated with the load
58             balancer.
59              
60              
61             =head2 CreatedTime => Str
62              
63             The date and time the load balancer was created.
64              
65              
66             =head2 DNSName => Str
67              
68             The public DNS name of the load balancer.
69              
70              
71             =head2 IpAddressType => Str
72              
73             The type of IP addresses used by the subnets for your load balancer.
74             The possible values are C<ipv4> (for IPv4 addresses) and C<dualstack>
75             (for IPv4 and IPv6 addresses).
76              
77              
78             =head2 LoadBalancerArn => Str
79              
80             The Amazon Resource Name (ARN) of the load balancer.
81              
82              
83             =head2 LoadBalancerName => Str
84              
85             The name of the load balancer.
86              
87              
88             =head2 Scheme => Str
89              
90             The nodes of an Internet-facing load balancer have public IP addresses.
91             The DNS name of an Internet-facing load balancer is publicly resolvable
92             to the public IP addresses of the nodes. Therefore, Internet-facing
93             load balancers can route requests from clients over the Internet.
94              
95             The nodes of an internal load balancer have only private IP addresses.
96             The DNS name of an internal load balancer is publicly resolvable to the
97             private IP addresses of the nodes. Therefore, internal load balancers
98             can only route requests from clients with access to the VPC for the
99             load balancer.
100              
101              
102             =head2 SecurityGroups => ArrayRef[Str|Undef]
103              
104             The IDs of the security groups for the load balancer.
105              
106              
107             =head2 State => L<Paws::ELBv2::LoadBalancerState>
108              
109             The state of the load balancer.
110              
111              
112             =head2 Type => Str
113              
114             The type of load balancer.
115              
116              
117             =head2 VpcId => Str
118              
119             The ID of the VPC for the load balancer.
120              
121              
122              
123             =head1 SEE ALSO
124              
125             This class forms part of L<Paws>, describing an object used in L<Paws::ELBv2>
126              
127             =head1 BUGS and CONTRIBUTIONS
128              
129             The source code is located here: https://github.com/pplu/aws-sdk-perl
130              
131             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
132              
133             =cut
134