line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EFS::DescribeFileSystemsResponse; |
3
|
1
|
|
|
1
|
|
365
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has FileSystems => (is => 'ro', isa => 'ArrayRef[Paws::EFS::FileSystemDescription]'); |
5
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has NextMarker => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::EFS::DescribeFileSystemsResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 FileSystems => ArrayRef[L<Paws::EFS::FileSystemDescription>] |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Array of file system descriptions. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 Marker => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Present if provided by caller in the request (String). |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 NextMarker => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Present if there are more file systems than returned in the response |
33
|
|
|
|
|
|
|
(String). You can use the C<NextMarker> in the subsequent request to |
34
|
|
|
|
|
|
|
fetch the descriptions. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 _request_id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|