File Coverage

blib/lib/Paws/CloudFront/InvalidationList.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             package Paws::CloudFront::InvalidationList;
2 1     1   625 use Moose;
  1         3  
  1         9  
3             has IsTruncated => (is => 'ro', isa => 'Bool', required => 1);
4             has Items => (is => 'ro', isa => 'ArrayRef[Paws::CloudFront::InvalidationSummary]', request_name => 'InvalidationSummary', traits => ['NameInRequest']);
5             has Marker => (is => 'ro', isa => 'Str', required => 1);
6             has MaxItems => (is => 'ro', isa => 'Int', required => 1);
7             has NextMarker => (is => 'ro', isa => 'Str');
8             has Quantity => (is => 'ro', isa => 'Int', required => 1);
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CloudFront::InvalidationList
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::CloudFront::InvalidationList object:
27              
28             $service_obj->Method(Att1 => { IsTruncated => $value, ..., Quantity => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFront::InvalidationList object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->IsTruncated
36              
37             =head1 DESCRIPTION
38              
39             The C<InvalidationList> complex type describes the list of invalidation
40             objects. For more information about invalidation, see Invalidating
41             Objects (Web Distributions Only) in the I<Amazon CloudFront Developer
42             Guide>.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 B<REQUIRED> IsTruncated => Bool
48              
49             A flag that indicates whether more invalidation batch requests remain
50             to be listed. If your results were truncated, you can make a follow-up
51             pagination request using the C<Marker> request parameter to retrieve
52             more invalidation batches in the list.
53              
54              
55             =head2 Items => ArrayRef[L<Paws::CloudFront::InvalidationSummary>]
56              
57             A complex type that contains one C<InvalidationSummary> element for
58             each invalidation batch created by the current AWS account.
59              
60              
61             =head2 B<REQUIRED> Marker => Str
62              
63             The value that you provided for the C<Marker> request parameter.
64              
65              
66             =head2 B<REQUIRED> MaxItems => Int
67              
68             The value that you provided for the C<MaxItems> request parameter.
69              
70              
71             =head2 NextMarker => Str
72              
73             If C<IsTruncated> is C<true>, this element is present and contains the
74             value that you can use for the C<Marker> request parameter to continue
75             listing your invalidation batches where they left off.
76              
77              
78             =head2 B<REQUIRED> Quantity => Int
79              
80             The number of invalidation batches that were created by the current AWS
81             account.
82              
83              
84              
85             =head1 SEE ALSO
86              
87             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFront>
88              
89             =head1 BUGS and CONTRIBUTIONS
90              
91             The source code is located here: https://github.com/pplu/aws-sdk-perl
92              
93             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
94              
95             =cut
96