line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::WorkSpaces::DescribeWorkspacesResult; |
3
|
1
|
|
|
1
|
|
461
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has Workspaces => (is => 'ro', isa => 'ArrayRef[Paws::WorkSpaces::Workspace]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::WorkSpaces::DescribeWorkspacesResult |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 NextToken => Str |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
If not null, more results are available. Pass this value for the |
21
|
|
|
|
|
|
|
C<NextToken> parameter in a subsequent call to this operation to |
22
|
|
|
|
|
|
|
retrieve the next set of items. This token is valid for one day and |
23
|
|
|
|
|
|
|
must be used within that time frame. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 Workspaces => ArrayRef[L<Paws::WorkSpaces::Workspace>] |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
An array of structures that contain the information about the |
29
|
|
|
|
|
|
|
WorkSpaces. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Because the CreateWorkspaces operation is asynchronous, some of this |
32
|
|
|
|
|
|
|
information may be incomplete for a newly-created WorkSpace. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |