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