File Coverage

blib/lib/Paws/WorkSpaces/DescribeWorkspaceDirectoriesResult.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::WorkSpaces::DescribeWorkspaceDirectoriesResult;
3 1     1   1638 use Moose;
  1         6  
  1         21  
4             has Directories => (is => 'ro', isa => 'ArrayRef[Paws::WorkSpaces::WorkspaceDirectory]');
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::WorkSpaces::DescribeWorkspaceDirectoriesResult
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Directories => ArrayRef[L<Paws::WorkSpaces::WorkspaceDirectory>]
19              
20             An array of structures that contain information about the directories.
21              
22              
23             =head2 NextToken => Str
24              
25             If not null, more results are available. Pass this value for the
26             C<NextToken> parameter in a subsequent call to this operation to
27             retrieve the next set of items. This token is valid for one day and
28             must be used within that time frame.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35              
36             1;