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