File Coverage

blib/lib/Paws/Glue/Job.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::Job;
2 1     1   702 use Moose;
  1         4  
  1         10  
3             has AllocatedCapacity => (is => 'ro', isa => 'Int');
4             has Command => (is => 'ro', isa => 'Paws::Glue::JobCommand');
5             has Connections => (is => 'ro', isa => 'Paws::Glue::ConnectionsList');
6             has CreatedOn => (is => 'ro', isa => 'Str');
7             has DefaultArguments => (is => 'ro', isa => 'Paws::Glue::GenericMap');
8             has Description => (is => 'ro', isa => 'Str');
9             has ExecutionProperty => (is => 'ro', isa => 'Paws::Glue::ExecutionProperty');
10             has LastModifiedOn => (is => 'ro', isa => 'Str');
11             has LogUri => (is => 'ro', isa => 'Str');
12             has MaxRetries => (is => 'ro', isa => 'Int');
13             has Name => (is => 'ro', isa => 'Str');
14             has Role => (is => 'ro', isa => 'Str');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::Glue::Job
22              
23             =head1 USAGE
24              
25             This class represents one of two things:
26              
27             =head3 Arguments in a call to a service
28              
29             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
30             Each attribute should be used as a named argument in the calls that expect this type of object.
31              
32             As an example, if Att1 is expected to be a Paws::Glue::Job object:
33              
34             $service_obj->Method(Att1 => { AllocatedCapacity => $value, ..., Role => $value });
35              
36             =head3 Results returned from an API call
37              
38             Use accessors for each attribute. If Att1 is expected to be an Paws::Glue::Job object:
39              
40             $result = $service_obj->Method(...);
41             $result->Att1->AllocatedCapacity
42              
43             =head1 DESCRIPTION
44              
45             Specifies a job in the Data Catalog.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 AllocatedCapacity => Int
51              
52             The number of capacity units allocated to this job.
53              
54              
55             =head2 Command => L<Paws::Glue::JobCommand>
56              
57             The JobCommand that executes this job.
58              
59              
60             =head2 Connections => L<Paws::Glue::ConnectionsList>
61              
62             The connections used for this job.
63              
64              
65             =head2 CreatedOn => Str
66              
67             The time and date that this job specification was created.
68              
69              
70             =head2 DefaultArguments => L<Paws::Glue::GenericMap>
71              
72             The default parameters for this job.
73              
74              
75             =head2 Description => Str
76              
77             Description of this job.
78              
79              
80             =head2 ExecutionProperty => L<Paws::Glue::ExecutionProperty>
81              
82             An ExecutionProperty specifying the maximum number of concurrent runs
83             allowed for this job.
84              
85              
86             =head2 LastModifiedOn => Str
87              
88             The last point in time when this job specification was modified.
89              
90              
91             =head2 LogUri => Str
92              
93             Location of the logs for this job.
94              
95              
96             =head2 MaxRetries => Int
97              
98             The maximum number of times to retry this job if it fails.
99              
100              
101             =head2 Name => Str
102              
103             The name you assign to this job.
104              
105              
106             =head2 Role => Str
107              
108             The role associated with this job.
109              
110              
111              
112             =head1 SEE ALSO
113              
114             This class forms part of L<Paws>, describing an object used in L<Paws::Glue>
115              
116             =head1 BUGS and CONTRIBUTIONS
117              
118             The source code is located here: https://github.com/pplu/aws-sdk-perl
119              
120             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
121              
122             =cut
123