| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EMR::ListClustersOutput; |
|
3
|
1
|
|
|
1
|
|
663
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
|
|
has Clusters => (is => 'ro', isa => 'ArrayRef[Paws::EMR::ClusterSummary]'); |
|
5
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::EMR::ListClustersOutput |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Clusters => ArrayRef[L<Paws::EMR::ClusterSummary>] |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The list of clusters for the account based on the given filters. |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 Marker => Str |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
The pagination token that indicates the next set of results to |
|
26
|
|
|
|
|
|
|
retrieve. |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=cut |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |