line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::DS::DescribeDirectoriesResult; |
3
|
1
|
|
|
1
|
|
560
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has DirectoryDescriptions => (is => 'ro', isa => 'ArrayRef[Paws::DS::DirectoryDescription]'); |
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::DS::DescribeDirectoriesResult |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 DirectoryDescriptions => ArrayRef[L<Paws::DS::DirectoryDescription>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The list of DirectoryDescription objects that were retrieved. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
It is possible that this list contains less than the number of items |
23
|
|
|
|
|
|
|
specified in the I<Limit> member of the request. This occurs if there |
24
|
|
|
|
|
|
|
are less than the requested number of items left to retrieve, or if the |
25
|
|
|
|
|
|
|
limitations of the operation have been exceeded. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 NextToken => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
If not null, more results are available. Pass this value for the |
31
|
|
|
|
|
|
|
I<NextToken> parameter in a subsequent call to DescribeDirectories to |
32
|
|
|
|
|
|
|
retrieve the next set of items. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |