line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::OpsWorksCM::DescribeServersResponse; |
3
|
1
|
|
|
1
|
|
328
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has Servers => (is => 'ro', isa => 'ArrayRef[Paws::OpsWorksCM::Server]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::OpsWorksCM::DescribeServersResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 NextToken => Str |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
NextToken is a string that is returned in some command responses. It |
21
|
|
|
|
|
|
|
indicates that not all entries have been returned, and that you must |
22
|
|
|
|
|
|
|
run at least one more request to get remaining items. To get remaining |
23
|
|
|
|
|
|
|
results, call C<DescribeServers> again, and assign the token from the |
24
|
|
|
|
|
|
|
previous results as the value of the C<nextToken> parameter. If there |
25
|
|
|
|
|
|
|
are no more results, the response object's C<nextToken> parameter value |
26
|
|
|
|
|
|
|
is C<null>. Setting a C<nextToken> value that was not returned in your |
27
|
|
|
|
|
|
|
previous results causes an C<InvalidNextTokenException> to occur. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 Servers => ArrayRef[L<Paws::OpsWorksCM::Server>] |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Contains the response to a C<DescribeServers> request. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |