File Coverage

blib/lib/Paws/IAM/GroupDetail.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::IAM::GroupDetail;
2 1     1   600 use Moose;
  1         3  
  1         9  
3             has Arn => (is => 'ro', isa => 'Str');
4             has AttachedManagedPolicies => (is => 'ro', isa => 'ArrayRef[Paws::IAM::AttachedPolicy]');
5             has CreateDate => (is => 'ro', isa => 'Str');
6             has GroupId => (is => 'ro', isa => 'Str');
7             has GroupName => (is => 'ro', isa => 'Str');
8             has GroupPolicyList => (is => 'ro', isa => 'ArrayRef[Paws::IAM::PolicyDetail]');
9             has Path => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::IAM::GroupDetail
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::IAM::GroupDetail object:
28              
29             $service_obj->Method(Att1 => { Arn => $value, ..., Path => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::IAM::GroupDetail object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->Arn
37              
38             =head1 DESCRIPTION
39              
40             Contains information about an IAM group, including all of the group's
41             policies.
42              
43             This data type is used as a response element in the
44             GetAccountAuthorizationDetails action.
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 Arn => Str
50              
51            
52              
53              
54             =head2 AttachedManagedPolicies => ArrayRef[L<Paws::IAM::AttachedPolicy>]
55              
56             A list of the managed policies attached to the group.
57              
58              
59             =head2 CreateDate => Str
60              
61             The date and time, in ISO 8601 date-time format, when the group was
62             created.
63              
64              
65             =head2 GroupId => Str
66              
67             The stable and unique string identifying the group. For more
68             information about IDs, see IAM Identifiers in the I<Using IAM> guide.
69              
70              
71             =head2 GroupName => Str
72              
73             The friendly name that identifies the group.
74              
75              
76             =head2 GroupPolicyList => ArrayRef[L<Paws::IAM::PolicyDetail>]
77              
78             A list of the inline policies embedded in the group.
79              
80              
81             =head2 Path => Str
82              
83             The path to the group. For more information about paths, see IAM
84             Identifiers in the I<Using IAM> guide.
85              
86              
87              
88             =head1 SEE ALSO
89              
90             This class forms part of L<Paws>, describing an object used in L<Paws::IAM>
91              
92             =head1 BUGS and CONTRIBUTIONS
93              
94             The source code is located here: https://github.com/pplu/aws-sdk-perl
95              
96             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
97              
98             =cut
99