File Coverage

blib/lib/Paws/Glue/JobRun.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             package Paws::Glue::JobRun;
2 1     1   337 use Moose;
  1         3  
  1         6  
3             has AllocatedCapacity => (is => 'ro', isa => 'Int');
4             has Arguments => (is => 'ro', isa => 'Paws::Glue::GenericMap');
5             has Attempt => (is => 'ro', isa => 'Int');
6             has CompletedOn => (is => 'ro', isa => 'Str');
7             has ErrorMessage => (is => 'ro', isa => 'Str');
8             has Id => (is => 'ro', isa => 'Str');
9             has JobName => (is => 'ro', isa => 'Str');
10             has JobRunState => (is => 'ro', isa => 'Str');
11             has LastModifiedOn => (is => 'ro', isa => 'Str');
12             has PredecessorRuns => (is => 'ro', isa => 'ArrayRef[Paws::Glue::Predecessor]');
13             has PreviousRunId => (is => 'ro', isa => 'Str');
14             has StartedOn => (is => 'ro', isa => 'Str');
15             has TriggerName => (is => 'ro', isa => 'Str');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::Glue::JobRun
23              
24             =head1 USAGE
25              
26             This class represents one of two things:
27              
28             =head3 Arguments in a call to a service
29              
30             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
31             Each attribute should be used as a named argument in the calls that expect this type of object.
32              
33             As an example, if Att1 is expected to be a Paws::Glue::JobRun object:
34              
35             $service_obj->Method(Att1 => { AllocatedCapacity => $value, ..., TriggerName => $value });
36              
37             =head3 Results returned from an API call
38              
39             Use accessors for each attribute. If Att1 is expected to be an Paws::Glue::JobRun object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->AllocatedCapacity
43              
44             =head1 DESCRIPTION
45              
46             Contains information about a job run.
47              
48             =head1 ATTRIBUTES
49              
50              
51             =head2 AllocatedCapacity => Int
52              
53             The amount of infrastructure capacity allocated to this job run.
54              
55              
56             =head2 Arguments => L<Paws::Glue::GenericMap>
57              
58             The job arguments associated with this run.
59              
60              
61             =head2 Attempt => Int
62              
63             The number or the attempt to run this job.
64              
65              
66             =head2 CompletedOn => Str
67              
68             The date and time this job run completed.
69              
70              
71             =head2 ErrorMessage => Str
72              
73             An error message associated with this job run.
74              
75              
76             =head2 Id => Str
77              
78             The ID of this job run.
79              
80              
81             =head2 JobName => Str
82              
83             The name of the job being run.
84              
85              
86             =head2 JobRunState => Str
87              
88             The current state of the job run.
89              
90              
91             =head2 LastModifiedOn => Str
92              
93             The last time this job run was modified.
94              
95              
96             =head2 PredecessorRuns => ArrayRef[L<Paws::Glue::Predecessor>]
97              
98             A list of predecessors to this job run.
99              
100              
101             =head2 PreviousRunId => Str
102              
103             The ID of the previous run of this job.
104              
105              
106             =head2 StartedOn => Str
107              
108             The date and time at which this job run was started.
109              
110              
111             =head2 TriggerName => Str
112              
113             The name of the trigger for this job run.
114              
115              
116              
117             =head1 SEE ALSO
118              
119             This class forms part of L<Paws>, describing an object used in L<Paws::Glue>
120              
121             =head1 BUGS and CONTRIBUTIONS
122              
123             The source code is located here: https://github.com/pplu/aws-sdk-perl
124              
125             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
126              
127             =cut
128