File Coverage

blib/lib/Paws/S3/ListObjectVersionsOutput.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::S3::ListObjectVersionsOutput;
3 1     1   558 use Moose;
  1     1   2  
  1         8  
  1         634  
  1         3  
  1         10  
4             has CommonPrefixes => (is => 'ro', isa => 'ArrayRef[Paws::S3::CommonPrefix]');
5             has DeleteMarkers => (is => 'ro', isa => 'ArrayRef[Paws::S3::DeleteMarkerEntry]', traits => ['NameInRequest'], request_name => 'DeleteMarker');
6             has Delimiter => (is => 'ro', isa => 'Str');
7             has EncodingType => (is => 'ro', isa => 'Str');
8             has IsTruncated => (is => 'ro', isa => 'Bool');
9             has KeyMarker => (is => 'ro', isa => 'Str');
10             has MaxKeys => (is => 'ro', isa => 'Int');
11             has Name => (is => 'ro', isa => 'Str');
12             has NextKeyMarker => (is => 'ro', isa => 'Str');
13             has NextVersionIdMarker => (is => 'ro', isa => 'Str');
14             has Prefix => (is => 'ro', isa => 'Str');
15             has VersionIdMarker => (is => 'ro', isa => 'Str');
16             has Versions => (is => 'ro', isa => 'ArrayRef[Paws::S3::ObjectVersion]', traits => ['NameInRequest'], request_name => 'Version');
17              
18             has _request_id => (is => 'ro', isa => 'Str');
19             1;
20              
21             ### main pod documentation begin ###
22              
23             =head1 NAME
24              
25             Paws::S3::ListObjectVersionsOutput
26              
27             =head1 ATTRIBUTES
28              
29              
30             =head2 CommonPrefixes => ArrayRef[L<Paws::S3::CommonPrefix>]
31              
32              
33              
34              
35              
36             =head2 DeleteMarkers => ArrayRef[L<Paws::S3::DeleteMarkerEntry>]
37              
38              
39              
40              
41              
42             =head2 Delimiter => Str
43              
44              
45              
46              
47              
48             =head2 EncodingType => Str
49              
50             Encoding type used by Amazon S3 to encode object keys in the response.
51              
52             Valid values are: C<"url">
53              
54             =head2 IsTruncated => Bool
55              
56             A flag that indicates whether or not Amazon S3 returned all of the
57             results that satisfied the search criteria. If your results were
58             truncated, you can make a follow-up paginated request using the
59             NextKeyMarker and NextVersionIdMarker response parameters as a starting
60             place in another request to return the rest of the results.
61              
62              
63              
64             =head2 KeyMarker => Str
65              
66             Marks the last Key returned in a truncated response.
67              
68              
69              
70             =head2 MaxKeys => Int
71              
72              
73              
74              
75              
76             =head2 Name => Str
77              
78              
79              
80              
81              
82             =head2 NextKeyMarker => Str
83              
84             Use this value for the key marker request parameter in a subsequent
85             request.
86              
87              
88              
89             =head2 NextVersionIdMarker => Str
90              
91             Use this value for the next version id marker parameter in a subsequent
92             request.
93              
94              
95              
96             =head2 Prefix => Str
97              
98              
99              
100              
101              
102             =head2 VersionIdMarker => Str
103              
104              
105              
106              
107              
108             =head2 Versions => ArrayRef[L<Paws::S3::ObjectVersion>]
109              
110              
111              
112              
113              
114              
115             =cut
116