line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::IAM::ListAttachedUserPoliciesResponse; |
3
|
1
|
|
|
1
|
|
428
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has AttachedPolicies => (is => 'ro', isa => 'ArrayRef[Paws::IAM::AttachedPolicy]'); |
5
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool'); |
6
|
|
|
|
|
|
|
has Marker => (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::IAM::ListAttachedUserPoliciesResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 AttachedPolicies => ArrayRef[L<Paws::IAM::AttachedPolicy>] |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
A list of the attached policies. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 IsTruncated => Bool |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
A flag that indicates whether there are more items to return. If your |
28
|
|
|
|
|
|
|
results were truncated, you can make a subsequent pagination request |
29
|
|
|
|
|
|
|
using the C<Marker> request parameter to retrieve more items. Note that |
30
|
|
|
|
|
|
|
IAM might return fewer than the C<MaxItems> number of results even when |
31
|
|
|
|
|
|
|
there are more results available. We recommend that you check |
32
|
|
|
|
|
|
|
C<IsTruncated> after every call to ensure that you receive all of your |
33
|
|
|
|
|
|
|
results. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 Marker => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
When C<IsTruncated> is C<true>, this element is present and contains |
39
|
|
|
|
|
|
|
the value to use for the C<Marker> parameter in a subsequent pagination |
40
|
|
|
|
|
|
|
request. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 _request_id => Str |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
47
|
|
|
|
|
|
|
|