File Coverage

blib/lib/Paws/IAM/ListGroupPoliciesResponse.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              
2             package Paws::IAM::ListGroupPoliciesResponse;
3 1     1   530 use Moose;
  1         3  
  1         8  
4             has IsTruncated => (is => 'ro', isa => 'Bool');
5             has Marker => (is => 'ro', isa => 'Str');
6             has PolicyNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]', required => 1);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::IAM::ListGroupPoliciesResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 IsTruncated => Bool
21              
22             A flag that indicates whether there are more items to return. If your
23             results were truncated, you can make a subsequent pagination request
24             using the C<Marker> request parameter to retrieve more items. Note that
25             IAM might return fewer than the C<MaxItems> number of results even when
26             there are more results available. We recommend that you check
27             C<IsTruncated> after every call to ensure that you receive all of your
28             results.
29              
30              
31             =head2 Marker => Str
32              
33             When C<IsTruncated> is C<true>, this element is present and contains
34             the value to use for the C<Marker> parameter in a subsequent pagination
35             request.
36              
37              
38             =head2 B<REQUIRED> PolicyNames => ArrayRef[Str|Undef]
39              
40             A list of policy names.
41              
42             This parameter allows (per its regex pattern) a string of characters
43             consisting of upper and lowercase alphanumeric characters with no
44             spaces. You can also include any of the following characters: =,.@-+
45              
46              
47             =head2 _request_id => Str
48              
49              
50             =cut
51