line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EMR::ListInstances; |
3
|
1
|
|
|
1
|
|
335
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
4
|
|
|
|
|
|
|
has ClusterId => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has InstanceFleetId => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has InstanceFleetType => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has InstanceGroupId => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has InstanceGroupTypes => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
9
|
|
|
|
|
|
|
has InstanceStates => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
10
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
5684
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListInstances'); |
15
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EMR::ListInstancesOutput'); |
16
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
### main pod documentation begin ### |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Paws::EMR::ListInstances - Arguments for method ListInstances on Paws::EMR |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This class represents the parameters used for calling the method ListInstances on the |
28
|
|
|
|
|
|
|
Amazon Elastic MapReduce service. Use the attributes of this class |
29
|
|
|
|
|
|
|
as arguments to method ListInstances. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListInstances. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
As an example: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$service_obj->ListInstances(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 B<REQUIRED> ClusterId => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The identifier of the cluster for which to list the instances. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 InstanceFleetId => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The unique identifier of the instance fleet. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 InstanceFleetType => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The node type of the instance fleet. For example MASTER, CORE, or TASK. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Valid values are: C<"MASTER">, C<"CORE">, C<"TASK"> |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 InstanceGroupId => Str |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
The identifier of the instance group for which to list the instances. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 InstanceGroupTypes => ArrayRef[Str|Undef] |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The type of instance group for which to list the instances. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 InstanceStates => ArrayRef[Str|Undef] |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
A list of instance states that will filter the instances returned with |
75
|
|
|
|
|
|
|
this request. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 Marker => Str |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The pagination token that indicates the next set of results to |
82
|
|
|
|
|
|
|
retrieve. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 SEE ALSO |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method ListInstances in L<Paws::EMR> |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=cut |
98
|
|
|
|
|
|
|
|