line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Lambda::PublishVersion; |
3
|
1
|
|
|
1
|
|
397
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has CodeSha256 => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has FunctionName => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'FunctionName' , required => 1); |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
5493
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'PublishVersion'); |
11
|
|
|
|
|
|
|
class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2015-03-31/functions/{FunctionName}/versions'); |
12
|
|
|
|
|
|
|
class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); |
13
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Lambda::FunctionConfiguration'); |
14
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
### main pod documentation begin ### |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Paws::Lambda::PublishVersion - Arguments for method PublishVersion on Paws::Lambda |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This class represents the parameters used for calling the method PublishVersion on the |
26
|
|
|
|
|
|
|
AWS Lambda service. Use the attributes of this class |
27
|
|
|
|
|
|
|
as arguments to method PublishVersion. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to PublishVersion. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
As an example: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
$service_obj->PublishVersion(Att1 => $value1, Att2 => $value2, ...); |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
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. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 CodeSha256 => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The SHA256 hash of the deployment package you want to publish. This |
43
|
|
|
|
|
|
|
provides validation on the code you are publishing. If you provide this |
44
|
|
|
|
|
|
|
parameter value must match the SHA256 of the $LATEST version for the |
45
|
|
|
|
|
|
|
publication to succeed. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 Description => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The description for the version you are publishing. If not provided, |
52
|
|
|
|
|
|
|
AWS Lambda copies the description from the $LATEST version. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 B<REQUIRED> FunctionName => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The Lambda function name. You can specify a function name (for example, |
59
|
|
|
|
|
|
|
C<Thumbnail>) or you can specify Amazon Resource Name (ARN) of the |
60
|
|
|
|
|
|
|
function (for example, |
61
|
|
|
|
|
|
|
C<arn:aws:lambda:us-west-2:account-id:function:ThumbNail>). AWS Lambda |
62
|
|
|
|
|
|
|
also allows you to specify a partial ARN (for example, |
63
|
|
|
|
|
|
|
C<account-id:Thumbnail>). Note that the length constraint applies only |
64
|
|
|
|
|
|
|
to the ARN. If you specify only the function name, it is limited to 64 |
65
|
|
|
|
|
|
|
characters in length. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head1 SEE ALSO |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method PublishVersion in L<Paws::Lambda> |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=cut |
81
|
|
|
|
|
|
|
|