File Coverage

blib/lib/Paws/EMR/HadoopStepConfig.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::EMR::HadoopStepConfig;
2 1     1   492 use Moose;
  1         3  
  1         7  
3             has Args => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
4             has Jar => (is => 'ro', isa => 'Str');
5             has MainClass => (is => 'ro', isa => 'Str');
6             has Properties => (is => 'ro', isa => 'Paws::EMR::StringMap');
7             1;
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::EMR::HadoopStepConfig
14              
15             =head1 USAGE
16              
17             This class represents one of two things:
18              
19             =head3 Arguments in a call to a service
20              
21             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
22             Each attribute should be used as a named argument in the calls that expect this type of object.
23              
24             As an example, if Att1 is expected to be a Paws::EMR::HadoopStepConfig object:
25              
26             $service_obj->Method(Att1 => { Args => $value, ..., Properties => $value });
27              
28             =head3 Results returned from an API call
29              
30             Use accessors for each attribute. If Att1 is expected to be an Paws::EMR::HadoopStepConfig object:
31              
32             $result = $service_obj->Method(...);
33             $result->Att1->Args
34              
35             =head1 DESCRIPTION
36              
37             A cluster step consisting of a JAR file whose main function will be
38             executed. The main function submits a job for Hadoop to execute and
39             waits for the job to finish or fail.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 Args => ArrayRef[Str|Undef]
45              
46             The list of command line arguments to pass to the JAR file's main
47             function for execution.
48              
49              
50             =head2 Jar => Str
51              
52             The path to the JAR file that runs during the step.
53              
54              
55             =head2 MainClass => Str
56              
57             The name of the main class in the specified Java file. If not
58             specified, the JAR file should specify a main class in its manifest
59             file.
60              
61              
62             =head2 Properties => L<Paws::EMR::StringMap>
63              
64             The list of Java properties that are set when the step runs. You can
65             use these properties to pass key value pairs to your main function.
66              
67              
68              
69             =head1 SEE ALSO
70              
71             This class forms part of L<Paws>, describing an object used in L<Paws::EMR>
72              
73             =head1 BUGS and CONTRIBUTIONS
74              
75             The source code is located here: https://github.com/pplu/aws-sdk-perl
76              
77             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
78              
79             =cut
80