line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::OpsWorks::DescribeEcsClustersResult; |
3
|
1
|
|
|
1
|
|
484
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
13
|
|
4
|
|
|
|
|
|
|
has EcsClusters => (is => 'ro', isa => 'ArrayRef[Paws::OpsWorks::EcsCluster]'); |
5
|
|
|
|
|
|
|
has NextToken => (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::OpsWorks::DescribeEcsClustersResult |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 EcsClusters => ArrayRef[L<Paws::OpsWorks::EcsCluster>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A list of C<EcsCluster> objects containing the cluster descriptions. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 NextToken => Str |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
If a paginated request does not return all of the remaining results, |
26
|
|
|
|
|
|
|
this parameter is set to a token that you can assign to the request |
27
|
|
|
|
|
|
|
object's C<NextToken> parameter to retrieve the next set of results. If |
28
|
|
|
|
|
|
|
the previous paginated request returned all of the remaining results, |
29
|
|
|
|
|
|
|
this parameter is set to C<null>. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 _request_id => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
1; |