File Coverage

blib/lib/Paws/Lambda/AliasConfiguration.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::AliasConfiguration;
3 1     1   475 use Moose;
  1         4  
  1         8  
4             has AliasArn => (is => 'ro', isa => 'Str');
5             has Description => (is => 'ro', isa => 'Str');
6             has FunctionVersion => (is => 'ro', isa => 'Str');
7             has Name => (is => 'ro', isa => 'Str');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::Lambda::AliasConfiguration
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 AliasArn => Str
22              
23             Lambda function ARN that is qualified using the alias name as the
24             suffix. For example, if you create an alias called C<BETA> that points
25             to a helloworld function version, the ARN is
26             C<arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA>.
27              
28              
29             =head2 Description => Str
30              
31             Alias description.
32              
33              
34             =head2 FunctionVersion => Str
35              
36             Function version to which the alias points.
37              
38              
39             =head2 Name => Str
40              
41             Alias name.
42              
43              
44             =head2 _request_id => Str
45              
46              
47             =cut
48