File Coverage

blib/lib/Paws/EMR/HadoopJarStepConfig.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::HadoopJarStepConfig;
2 1     1   665 use Moose;
  1         4  
  1         12  
3             has Args => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
4             has Jar => (is => 'ro', isa => 'Str', required => 1);
5             has MainClass => (is => 'ro', isa => 'Str');
6             has Properties => (is => 'ro', isa => 'ArrayRef[Paws::EMR::KeyValue]');
7             1;
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::EMR::HadoopJarStepConfig
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::HadoopJarStepConfig 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::HadoopJarStepConfig object:
31              
32             $result = $service_obj->Method(...);
33             $result->Att1->Args
34              
35             =head1 DESCRIPTION
36              
37             A job flow 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             A list of command line arguments passed to the JAR file's main function
47             when executed.
48              
49              
50             =head2 B<REQUIRED> Jar => Str
51              
52             A path to a JAR file run 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 => ArrayRef[L<Paws::EMR::KeyValue>]
63              
64             A list of Java properties that are set when the step runs. You can use
65             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