File Coverage

blib/lib/Net/Amazon/EC2/KeyPair.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::KeyPair;
2 2     2   1024 use Moose;
  2         3  
  2         12  
3              
4             =head1 NAME
5              
6             Net::Amazon::EC2::KeyPair
7              
8             =head1 DESCRIPTION
9              
10             A class representing a key pair upon creation of a new pair.
11              
12             =head1 ATTRIBUTES
13              
14             =over
15              
16             =item key_material (required)
17              
18             The unencrypted PEM encoded RSA private key.
19              
20             =back
21              
22             =cut
23              
24             extends 'Net::Amazon::EC2::DescribeKeyPairsResponse';
25              
26             has 'key_material' => ( is => 'ro', isa => 'Str', required => 1 );
27              
28             __PACKAGE__->meta->make_immutable();
29              
30             =head1 AUTHOR
31              
32             Jeff Kim <cpan@chosec.com>
33              
34             =head1 COPYRIGHT
35              
36             Copyright (c) 2006-2010 Jeff Kim. This program is free software; you can redistribute it and/or modify it
37             under the same terms as Perl itself.
38              
39             =cut
40              
41 2     2   9332 no Moose;
  2         3  
  2         9  
42             1;