File Coverage

blib/lib/Paws/EC2/GetConsoleOutputResult.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::GetConsoleOutputResult;
3 1     1   519 use Moose;
  1     1   3  
  1         7  
  1         287  
  1         2  
  1         5  
4             has InstanceId => (is => 'ro', isa => 'Str', request_name => 'instanceId', traits => ['NameInRequest',]);
5             has Output => (is => 'ro', isa => 'Str', request_name => 'output', traits => ['NameInRequest',]);
6             has Timestamp => (is => 'ro', isa => 'Str', request_name => 'timestamp', 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::GetConsoleOutputResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 InstanceId => Str
21              
22             The ID of the instance.
23              
24              
25             =head2 Output => Str
26              
27             The console output, Base64-encoded. If using a command line tool, the
28             tool decodes the output for you.
29              
30              
31             =head2 Timestamp => Str
32              
33             The time the output was last updated.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40