File Coverage

blib/lib/Paws/ImportExport/CreateJobOutput.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::CreateJobOutput;
3 1     1   685 use Moose;
  1         3  
  1         10  
4             has ArtifactList => (is => 'ro', isa => 'ArrayRef[Paws::ImportExport::Artifact]');
5             has JobId => (is => 'ro', isa => 'Str');
6             has JobType => (is => 'ro', isa => 'Str');
7             has Signature => (is => 'ro', isa => 'Str');
8             has SignatureFileContents => (is => 'ro', isa => 'Str');
9             has WarningMessage => (is => 'ro', isa => 'Str');
10              
11             has _request_id => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::ImportExport::CreateJobOutput
19              
20             =head1 ATTRIBUTES
21              
22              
23             =head2 ArtifactList => ArrayRef[L<Paws::ImportExport::Artifact>]
24              
25              
26              
27              
28             =head2 JobId => Str
29              
30              
31              
32              
33             =head2 JobType => Str
34              
35              
36              
37             Valid values are: C<"Import">, C<"Export">
38             =head2 Signature => Str
39              
40              
41              
42              
43             =head2 SignatureFileContents => Str
44              
45              
46              
47              
48             =head2 WarningMessage => Str
49              
50              
51              
52              
53             =head2 _request_id => Str
54              
55              
56             =cut
57