File Coverage

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