line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Lambda::AccountLimit; |
2
|
1
|
|
|
1
|
|
294
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has CodeSizeUnzipped => (is => 'ro', isa => 'Int'); |
4
|
|
|
|
|
|
|
has CodeSizeZipped => (is => 'ro', isa => 'Int'); |
5
|
|
|
|
|
|
|
has ConcurrentExecutions => (is => 'ro', isa => 'Int'); |
6
|
|
|
|
|
|
|
has TotalCodeSize => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
1; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::Lambda::AccountLimit |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 USAGE |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This class represents one of two things: |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
22
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::Lambda::AccountLimit object: |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { CodeSizeUnzipped => $value, ..., TotalCodeSize => $value }); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head3 Results returned from an API call |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::Lambda::AccountLimit object: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
33
|
|
|
|
|
|
|
$result->Att1->CodeSizeUnzipped |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Provides limits of code size and concurrency associated with the |
38
|
|
|
|
|
|
|
current account and region. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 CodeSizeUnzipped => Int |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Size, in bytes, of code/dependencies that you can zip into a deployment |
46
|
|
|
|
|
|
|
package (uncompressed zip/jar size) for uploading. The default limit is |
47
|
|
|
|
|
|
|
250 MB. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 CodeSizeZipped => Int |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Size, in bytes, of a single zipped code/dependencies package you can |
53
|
|
|
|
|
|
|
upload for your Lambda function(.zip/.jar file). Try using Amazon S3 |
54
|
|
|
|
|
|
|
for uploading larger files. Default limit is 50 MB. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 ConcurrentExecutions => Int |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Number of simultaneous executions of your function per region. For more |
60
|
|
|
|
|
|
|
information or to request a limit increase for concurrent executions, |
61
|
|
|
|
|
|
|
see Lambda Function Concurrent Executions. The default limit is 100. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 TotalCodeSize => Int |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
Maximum size, in bytes, of a code package you can upload per region. |
67
|
|
|
|
|
|
|
The default size is 75 GB. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head1 SEE ALSO |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Lambda> |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=cut |
82
|
|
|
|
|
|
|
|