| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudDirectory::LookupPolicyResponse; |
|
3
|
1
|
|
|
1
|
|
571
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has PolicyToPathList => (is => 'ro', isa => 'ArrayRef[Paws::CloudDirectory::PolicyToPath]'); |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
1; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::CloudDirectory::LookupPolicyResponse |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 NextToken => Str |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The pagination token. |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 PolicyToPathList => ArrayRef[L<Paws::CloudDirectory::PolicyToPath>] |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Provides list of path to policies. Policies contain C<PolicyId>, |
|
27
|
|
|
|
|
|
|
C<ObjectIdentifier>, and C<PolicyType>. For more information, see |
|
28
|
|
|
|
|
|
|
Policies. |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
|
35
|
|
|
|
|
|
|
|