File Coverage

blib/lib/Net/Amazon/EC2/SnapshotAttribute.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Net::Amazon::EC2::SnapshotAttribute;
2 2     2   1005 use Moose;
  2         4  
  2         14  
3              
4             =head1 NAME
5              
6             Net::Amazon::EC2::SnapshotAttribute
7              
8             =head1 DESCRIPTION
9              
10             A class representing the snapshot attributes of a volume.
11              
12             =head1 ATTRIBUTES
13              
14             =over
15              
16             =item snapshot_id (required)
17              
18             The ID of the snapshot.
19              
20             =item permissions (required)
21              
22             An arrayref of Net::Amazon::EC2::CreateVolumePermission objects
23              
24             =back
25              
26             =cut
27              
28             has 'snapshot_id' => ( is => 'ro', isa => 'Str', required => 1 );
29             has 'permissions' => ( is => 'ro', isa => 'Maybe[ArrayRef[Net::Amazon::EC2::CreateVolumePermission]]', required => 0 );
30              
31             __PACKAGE__->meta->make_immutable();
32              
33             =head1 AUTHOR
34              
35             Jeff Kim <cpan@chosec.com>
36              
37             =head1 COPYRIGHT
38              
39             Copyright (c) 2006-2010 Jeff Kim. This program is free software; you can redistribute it and/or modify it
40             under the same terms as Perl itself.
41              
42             =cut
43              
44 2     2   10636 no Moose;
  2         3  
  2         9  
45             1;