| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::OpsWorks::DescribePermissionsResult; |
|
3
|
1
|
|
|
1
|
|
584
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
|
|
has Permissions => (is => 'ro', isa => 'ArrayRef[Paws::OpsWorks::Permission]'); |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::OpsWorks::DescribePermissionsResult |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head2 Permissions => ArrayRef[L<Paws::OpsWorks::Permission>] |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
An array of C<Permission> objects that describe the stack permissions. |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=over |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=item * |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
If the request object contains only a stack ID, the array contains a |
|
26
|
|
|
|
|
|
|
C<Permission> object with permissions for each of the stack IAM ARNs. |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=item * |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
If the request object contains only an IAM ARN, the array contains a |
|
31
|
|
|
|
|
|
|
C<Permission> object with permissions for each of the user's stack IDs. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=item * |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
If the request contains a stack ID and an IAM ARN, the array contains a |
|
36
|
|
|
|
|
|
|
single C<Permission> object with permissions for the specified stack |
|
37
|
|
|
|
|
|
|
and IAM ARN. |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=back |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
1; |