File Coverage

blib/lib/Paws/Lambda/GetFunctionResponse.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              
2             package Paws::Lambda::GetFunctionResponse;
3 1     1   618 use Moose;
  1         2  
  1         8  
4             has Code => (is => 'ro', isa => 'Paws::Lambda::FunctionCodeLocation');
5             has Configuration => (is => 'ro', isa => 'Paws::Lambda::FunctionConfiguration');
6             has Tags => (is => 'ro', isa => 'Paws::Lambda::Tags');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::Lambda::GetFunctionResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Code => L<Paws::Lambda::FunctionCodeLocation>
21              
22              
23              
24              
25             =head2 Configuration => L<Paws::Lambda::FunctionConfiguration>
26              
27              
28              
29              
30             =head2 Tags => L<Paws::Lambda::Tags>
31              
32             Returns the list of tags associated with the function.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39