File Coverage

blib/lib/Paws/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              
2             package Paws::EC2::KeyPair;
3 1     1   604 use Moose;
  1     1   3  
  1         9  
  1         728  
  1         4  
  1         12  
4             has KeyFingerprint => (is => 'ro', isa => 'Str', request_name => 'keyFingerprint', traits => ['NameInRequest',]);
5             has KeyMaterial => (is => 'ro', isa => 'Str', request_name => 'keyMaterial', traits => ['NameInRequest',]);
6             has KeyName => (is => 'ro', isa => 'Str', request_name => 'keyName', traits => ['NameInRequest',]);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::EC2::KeyPair
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 KeyFingerprint => Str
21              
22             The SHA-1 digest of the DER encoded private key.
23              
24              
25             =head2 KeyMaterial => Str
26              
27             An unencrypted PEM encoded RSA private key.
28              
29              
30             =head2 KeyName => Str
31              
32             The name of the key pair.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39