File Coverage

blib/lib/Paws/Lambda/ListFunctions.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Lambda::ListFunctions;
3 1     1   365 use Moose;
  1     1   2  
  1         7  
  1         458  
  1         2  
  1         5  
4             has FunctionVersion => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'FunctionVersion' );
5             has Marker => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'Marker' );
6             has MasterRegion => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'MasterRegion' );
7             has MaxItems => (is => 'ro', isa => 'Int', traits => ['ParamInQuery'], query_name => 'MaxItems' );
8              
9 1     1   5526 use MooseX::ClassAttribute;
  1     1   2  
  1         7  
  1         5442  
  1         2  
  1         8  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListFunctions');
12             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2015-03-31/functions/');
13             class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Lambda::ListFunctionsResponse');
15             class_has _result_key => (isa => 'Str', is => 'ro');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::Lambda::ListFunctions - Arguments for method ListFunctions on Paws::Lambda
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method ListFunctions on the
27             AWS Lambda service. Use the attributes of this class
28             as arguments to method ListFunctions.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListFunctions.
31              
32             As an example:
33              
34             $service_obj->ListFunctions(Att1 => $value1, Att2 => $value2, ...);
35              
36             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.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 FunctionVersion => Str
42              
43             Optional string. If not specified, only the unqualified functions ARNs
44             (Amazon Resource Names) will be returned.
45              
46             Valid value:
47              
48             C<ALL> _ Will return all versions, including C<$LATEST> which will have
49             fully qualified ARNs (Amazon Resource Names).
50              
51             Valid values are: C<"ALL">
52              
53             =head2 Marker => Str
54              
55             Optional string. An opaque pagination token returned from a previous
56             C<ListFunctions> operation. If present, indicates where to continue the
57             listing.
58              
59              
60              
61             =head2 MasterRegion => Str
62              
63             Optional string. If not specified, will return only regular function
64             versions (i.e., non-replicated versions).
65              
66             Valid values are:
67              
68             The region from which the functions are replicated. For example, if you
69             specify C<us-east-1>, only functions replicated from that region will
70             be returned.
71              
72             C<ALL> _ Will return all functions from any region. If specified, you
73             also must specify a valid FunctionVersion parameter.
74              
75              
76              
77             =head2 MaxItems => Int
78              
79             Optional integer. Specifies the maximum number of AWS Lambda functions
80             to return in response. This parameter value must be greater than 0.
81              
82              
83              
84              
85             =head1 SEE ALSO
86              
87             This class forms part of L<Paws>, documenting arguments for method ListFunctions in L<Paws::Lambda>
88              
89             =head1 BUGS and CONTRIBUTIONS
90              
91             The source code is located here: https://github.com/pplu/aws-sdk-perl
92              
93             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
94              
95             =cut
96