File Coverage

blib/lib/Paws/IAM/ListAccountAliases.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::IAM::ListAccountAliases;
3 1     1   566 use Moose;
  1     1   3  
  1         8  
  1         695  
  1         3  
  1         7  
4             has Marker => (is => 'ro', isa => 'Str');
5             has MaxItems => (is => 'ro', isa => 'Int');
6              
7 1     1   6777 use MooseX::ClassAttribute;
  1     1   3  
  1         12  
  1         8487  
  1         3  
  1         8  
8              
9             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListAccountAliases');
10             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::IAM::ListAccountAliasesResponse');
11             class_has _result_key => (isa => 'Str', is => 'ro', default => 'ListAccountAliasesResult');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::IAM::ListAccountAliases - Arguments for method ListAccountAliases on Paws::IAM
19              
20             =head1 DESCRIPTION
21              
22             This class represents the parameters used for calling the method ListAccountAliases on the
23             AWS Identity and Access Management service. Use the attributes of this class
24             as arguments to method ListAccountAliases.
25              
26             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListAccountAliases.
27              
28             As an example:
29              
30             $service_obj->ListAccountAliases(Att1 => $value1, Att2 => $value2, ...);
31              
32             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.
33              
34             =head1 ATTRIBUTES
35              
36              
37             =head2 Marker => Str
38              
39             Use this parameter only when paginating results and only after you
40             receive a response indicating that the results are truncated. Set it to
41             the value of the C<Marker> element in the response that you received to
42             indicate where the next call should start.
43              
44              
45              
46             =head2 MaxItems => Int
47              
48             (Optional) Use this only when paginating results to indicate the
49             maximum number of items you want in the response. If additional items
50             exist beyond the maximum you specify, the C<IsTruncated> response
51             element is C<true>.
52              
53             If you do not include this parameter, it defaults to 100. Note that IAM
54             might return fewer results, even when there are more results available.
55             In that case, the C<IsTruncated> response element returns C<true> and
56             C<Marker> contains a value to include in the subsequent call that tells
57             the service where to continue from.
58              
59              
60              
61              
62             =head1 SEE ALSO
63              
64             This class forms part of L<Paws>, documenting arguments for method ListAccountAliases in L<Paws::IAM>
65              
66             =head1 BUGS and CONTRIBUTIONS
67              
68             The source code is located here: https://github.com/pplu/aws-sdk-perl
69              
70             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
71              
72             =cut
73