line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::IAM::ListEntitiesForPolicyResponse; |
3
|
1
|
|
|
1
|
|
678
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
12
|
|
4
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool'); |
5
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has PolicyGroups => (is => 'ro', isa => 'ArrayRef[Paws::IAM::PolicyGroup]'); |
7
|
|
|
|
|
|
|
has PolicyRoles => (is => 'ro', isa => 'ArrayRef[Paws::IAM::PolicyRole]'); |
8
|
|
|
|
|
|
|
has PolicyUsers => (is => 'ro', isa => 'ArrayRef[Paws::IAM::PolicyUser]'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::IAM::ListEntitiesForPolicyResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 IsTruncated => Bool |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
A flag that indicates whether there are more items to return. If your |
25
|
|
|
|
|
|
|
results were truncated, you can make a subsequent pagination request |
26
|
|
|
|
|
|
|
using the C<Marker> request parameter to retrieve more items. Note that |
27
|
|
|
|
|
|
|
IAM might return fewer than the C<MaxItems> number of results even when |
28
|
|
|
|
|
|
|
there are more results available. We recommend that you check |
29
|
|
|
|
|
|
|
C<IsTruncated> after every call to ensure that you receive all of your |
30
|
|
|
|
|
|
|
results. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 Marker => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
When C<IsTruncated> is C<true>, this element is present and contains |
36
|
|
|
|
|
|
|
the value to use for the C<Marker> parameter in a subsequent pagination |
37
|
|
|
|
|
|
|
request. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 PolicyGroups => ArrayRef[L<Paws::IAM::PolicyGroup>] |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
A list of IAM groups that the policy is attached to. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 PolicyRoles => ArrayRef[L<Paws::IAM::PolicyRole>] |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
A list of IAM roles that the policy is attached to. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 PolicyUsers => ArrayRef[L<Paws::IAM::PolicyUser>] |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
A list of IAM users that the policy is attached to. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 _request_id => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |
59
|
|
|
|
|
|
|
|