line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Batch::RegisterJobDefinition; |
3
|
1
|
|
|
1
|
|
324
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ContainerProperties => (is => 'ro', isa => 'Paws::Batch::ContainerProperties'); |
5
|
|
|
|
|
|
|
has JobDefinitionName => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has Parameters => (is => 'ro', isa => 'Paws::Batch::ParametersMap'); |
7
|
|
|
|
|
|
|
has RetryStrategy => (is => 'ro', isa => 'Paws::Batch::RetryStrategy'); |
8
|
|
|
|
|
|
|
has Type => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
5544
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'RegisterJobDefinition'); |
13
|
|
|
|
|
|
|
class_has _api_uri => (isa => 'Str', is => 'ro', default => '/v1/registerjobdefinition'); |
14
|
|
|
|
|
|
|
class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); |
15
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Batch::RegisterJobDefinitionResponse'); |
16
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
### main pod documentation begin ### |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Paws::Batch::RegisterJobDefinition - Arguments for method RegisterJobDefinition on Paws::Batch |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This class represents the parameters used for calling the method RegisterJobDefinition on the |
28
|
|
|
|
|
|
|
AWS Batch service. Use the attributes of this class |
29
|
|
|
|
|
|
|
as arguments to method RegisterJobDefinition. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to RegisterJobDefinition. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
As an example: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$service_obj->RegisterJobDefinition(Att1 => $value1, Att2 => $value2, ...); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 ContainerProperties => L<Paws::Batch::ContainerProperties> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
An object with various properties specific for container-based jobs. |
45
|
|
|
|
|
|
|
This parameter is required if the C<type> parameter is C<container>. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 B<REQUIRED> JobDefinitionName => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The name of the job definition to register. Up to 128 letters |
52
|
|
|
|
|
|
|
(uppercase and lowercase), numbers, hyphens, and underscores are |
53
|
|
|
|
|
|
|
allowed. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 Parameters => L<Paws::Batch::ParametersMap> |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Default parameter substitution placeholders to set in the job |
60
|
|
|
|
|
|
|
definition. Parameters are specified as a key-value pair mapping. |
61
|
|
|
|
|
|
|
Parameters in a C<SubmitJob> request override any corresponding |
62
|
|
|
|
|
|
|
parameter defaults from the job definition. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 RetryStrategy => L<Paws::Batch::RetryStrategy> |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The retry strategy to use for failed jobs that are submitted with this |
69
|
|
|
|
|
|
|
job definition. Any retry strategy that is specified during a SubmitJob |
70
|
|
|
|
|
|
|
operation overrides the retry strategy defined here. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head2 B<REQUIRED> Type => Str |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
The type of job definition. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
Valid values are: C<"container"> |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head1 SEE ALSO |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method RegisterJobDefinition in L<Paws::Batch> |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=cut |
92
|
|
|
|
|
|
|
|