File Coverage

blib/lib/Paws/ImportExport/GetStatusOutput.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::ImportExport::GetStatusOutput;
3 1     1   743 use Moose;
  1         4  
  1         13  
4             has ArtifactList => (is => 'ro', isa => 'ArrayRef[Paws::ImportExport::Artifact]');
5             has Carrier => (is => 'ro', isa => 'Str');
6             has CreationDate => (is => 'ro', isa => 'Str');
7             has CurrentManifest => (is => 'ro', isa => 'Str');
8             has ErrorCount => (is => 'ro', isa => 'Int');
9             has JobId => (is => 'ro', isa => 'Str');
10             has JobType => (is => 'ro', isa => 'Str');
11             has LocationCode => (is => 'ro', isa => 'Str');
12             has LocationMessage => (is => 'ro', isa => 'Str');
13             has LogBucket => (is => 'ro', isa => 'Str');
14             has LogKey => (is => 'ro', isa => 'Str');
15             has ProgressCode => (is => 'ro', isa => 'Str');
16             has ProgressMessage => (is => 'ro', isa => 'Str');
17             has Signature => (is => 'ro', isa => 'Str');
18             has SignatureFileContents => (is => 'ro', isa => 'Str');
19             has TrackingNumber => (is => 'ro', isa => 'Str');
20              
21             has _request_id => (is => 'ro', isa => 'Str');
22             1;
23              
24             ### main pod documentation begin ###
25              
26             =head1 NAME
27              
28             Paws::ImportExport::GetStatusOutput
29              
30             =head1 ATTRIBUTES
31              
32              
33             =head2 ArtifactList => ArrayRef[L<Paws::ImportExport::Artifact>]
34              
35              
36              
37              
38             =head2 Carrier => Str
39              
40              
41              
42              
43             =head2 CreationDate => Str
44              
45              
46              
47              
48             =head2 CurrentManifest => Str
49              
50              
51              
52              
53             =head2 ErrorCount => Int
54              
55              
56              
57              
58             =head2 JobId => Str
59              
60              
61              
62              
63             =head2 JobType => Str
64              
65              
66              
67             Valid values are: C<"Import">, C<"Export">
68             =head2 LocationCode => Str
69              
70              
71              
72              
73             =head2 LocationMessage => Str
74              
75              
76              
77              
78             =head2 LogBucket => Str
79              
80              
81              
82              
83             =head2 LogKey => Str
84              
85              
86              
87              
88             =head2 ProgressCode => Str
89              
90              
91              
92              
93             =head2 ProgressMessage => Str
94              
95              
96              
97              
98             =head2 Signature => Str
99              
100              
101              
102              
103             =head2 SignatureFileContents => Str
104              
105              
106              
107              
108             =head2 TrackingNumber => Str
109              
110              
111              
112              
113             =head2 _request_id => Str
114              
115              
116             =cut
117