File Coverage

blib/lib/Paws/IAM/GetCredentialReportResponse.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::IAM::GetCredentialReportResponse;
3 1     1   881 use Moose;
  1         4  
  1         13  
4             has Content => (is => 'ro', isa => 'Str');
5             has GeneratedTime => (is => 'ro', isa => 'Str');
6             has ReportFormat => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::IAM::GetCredentialReportResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Content => Str
21              
22             Contains the credential report. The report is Base64-encoded.
23              
24              
25             =head2 GeneratedTime => Str
26              
27             The date and time when the credential report was created, in ISO 8601
28             date-time format.
29              
30              
31             =head2 ReportFormat => Str
32              
33             The format (MIME type) of the credential report.
34              
35             Valid values are: C<"text/csv">
36             =head2 _request_id => Str
37              
38              
39             =cut
40