File Coverage

blib/lib/Paws/ELBv2/DescribeLoadBalancers.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ELBv2::DescribeLoadBalancers;
3 1     1   537 use Moose;
  1         3  
  1         8  
4             has LoadBalancerArns => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
5             has Marker => (is => 'ro', isa => 'Str');
6             has Names => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
7             has PageSize => (is => 'ro', isa => 'Int');
8              
9 1     1   6892 use MooseX::ClassAttribute;
  1         3  
  1         12  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeLoadBalancers');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ELBv2::DescribeLoadBalancersOutput');
13             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeLoadBalancersResult');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::ELBv2::DescribeLoadBalancers - Arguments for method DescribeLoadBalancers on Paws::ELBv2
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method DescribeLoadBalancers on the
25             Elastic Load Balancing service. Use the attributes of this class
26             as arguments to method DescribeLoadBalancers.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeLoadBalancers.
29              
30             As an example:
31              
32             $service_obj->DescribeLoadBalancers(Att1 => $value1, Att2 => $value2, ...);
33              
34             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 LoadBalancerArns => ArrayRef[Str|Undef]
40              
41             The Amazon Resource Names (ARN) of the load balancers. You can specify
42             up to 20 load balancers in a single call.
43              
44              
45              
46             =head2 Marker => Str
47              
48             The marker for the next set of results. (You received this marker from
49             a previous call.)
50              
51              
52              
53             =head2 Names => ArrayRef[Str|Undef]
54              
55             The names of the load balancers.
56              
57              
58              
59             =head2 PageSize => Int
60              
61             The maximum number of results to return with this call.
62              
63              
64              
65              
66             =head1 SEE ALSO
67              
68             This class forms part of L<Paws>, documenting arguments for method DescribeLoadBalancers in L<Paws::ELBv2>
69              
70             =head1 BUGS and CONTRIBUTIONS
71              
72             The source code is located here: https://github.com/pplu/aws-sdk-perl
73              
74             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
75              
76             =cut
77