File Coverage

blib/lib/Paws/IAM/ListAttachedGroupPolicies.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::IAM::ListAttachedGroupPolicies;
3 1     1   778 use Moose;
  1         4  
  1         11  
4             has GroupName => (is => 'ro', isa => 'Str', required => 1);
5             has Marker => (is => 'ro', isa => 'Str');
6             has MaxItems => (is => 'ro', isa => 'Int');
7             has PathPrefix => (is => 'ro', isa => 'Str');
8              
9 1     1   7687 use MooseX::ClassAttribute;
  1         6  
  1         15  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListAttachedGroupPolicies');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::IAM::ListAttachedGroupPoliciesResponse');
13             class_has _result_key => (isa => 'Str', is => 'ro', default => 'ListAttachedGroupPoliciesResult');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::IAM::ListAttachedGroupPolicies - Arguments for method ListAttachedGroupPolicies on Paws::IAM
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method ListAttachedGroupPolicies on the
25             AWS Identity and Access Management service. Use the attributes of this class
26             as arguments to method ListAttachedGroupPolicies.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListAttachedGroupPolicies.
29              
30             As an example:
31              
32             $service_obj->ListAttachedGroupPolicies(Att1 => $value1, Att2 => $value2, ...);
33              
34             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 B<REQUIRED> GroupName => Str
40              
41             The name (friendly name, not ARN) of the group to list attached
42             policies for.
43              
44             This parameter allows (per its regex pattern) a string of characters
45             consisting of upper and lowercase alphanumeric characters with no
46             spaces. You can also include any of the following characters: =,.@-
47              
48              
49              
50             =head2 Marker => Str
51              
52             Use this parameter only when paginating results and only after you
53             receive a response indicating that the results are truncated. Set it to
54             the value of the C<Marker> element in the response that you received to
55             indicate where the next call should start.
56              
57              
58              
59             =head2 MaxItems => Int
60              
61             (Optional) Use this only when paginating results to indicate the
62             maximum number of items you want in the response. If additional items
63             exist beyond the maximum you specify, the C<IsTruncated> response
64             element is C<true>.
65              
66             If you do not include this parameter, it defaults to 100. Note that IAM
67             might return fewer results, even when there are more results available.
68             In that case, the C<IsTruncated> response element returns C<true> and
69             C<Marker> contains a value to include in the subsequent call that tells
70             the service where to continue from.
71              
72              
73              
74             =head2 PathPrefix => Str
75              
76             The path prefix for filtering the results. This parameter is optional.
77             If it is not included, it defaults to a slash (/), listing all
78             policies.
79              
80             This paramater allows (per its regex pattern) a string of characters
81             consisting of either a forward slash (/) by itself or a string that
82             must begin and end with forward slashes, containing any ASCII character
83             from the ! (\u0021) thru the DEL character (\u007F), including most
84             punctuation characters, digits, and upper and lowercased letters.
85              
86              
87              
88              
89             =head1 SEE ALSO
90              
91             This class forms part of L<Paws>, documenting arguments for method ListAttachedGroupPolicies in L<Paws::IAM>
92              
93             =head1 BUGS and CONTRIBUTIONS
94              
95             The source code is located here: https://github.com/pplu/aws-sdk-perl
96              
97             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
98              
99             =cut
100