File Coverage

blib/lib/Paws/S3/ListObjectsOutput.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::ListObjectsOutput;
3 1     1   433 use Moose;
  1     3   3  
  1         6  
  3         1233  
  3         4  
  3         21  
4             has CommonPrefixes => (is => 'ro', isa => 'ArrayRef[Paws::S3::CommonPrefix]');
5             has Contents => (is => 'ro', isa => 'ArrayRef[Paws::S3::Object]');
6             has Delimiter => (is => 'ro', isa => 'Str');
7             has EncodingType => (is => 'ro', isa => 'Str');
8             has IsTruncated => (is => 'ro', isa => 'Bool');
9             has Marker => (is => 'ro', isa => 'Str');
10             has MaxKeys => (is => 'ro', isa => 'Int');
11             has Name => (is => 'ro', isa => 'Str');
12             has NextMarker => (is => 'ro', isa => 'Str');
13             has Prefix => (is => 'ro', isa => 'Str');
14              
15             has _request_id => (is => 'ro', isa => 'Str');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::S3::ListObjectsOutput
23              
24             =head1 ATTRIBUTES
25              
26              
27             =head2 CommonPrefixes => ArrayRef[L<Paws::S3::CommonPrefix>]
28              
29              
30              
31              
32              
33             =head2 Contents => ArrayRef[L<Paws::S3::Object>]
34              
35              
36              
37              
38              
39             =head2 Delimiter => Str
40              
41              
42              
43              
44              
45             =head2 EncodingType => Str
46              
47             Encoding type used by Amazon S3 to encode object keys in the response.
48              
49             Valid values are: C<"url">
50              
51             =head2 IsTruncated => Bool
52              
53             A flag that indicates whether or not Amazon S3 returned all of the
54             results that satisfied the search criteria.
55              
56              
57              
58             =head2 Marker => Str
59              
60              
61              
62              
63              
64             =head2 MaxKeys => Int
65              
66              
67              
68              
69              
70             =head2 Name => Str
71              
72              
73              
74              
75              
76             =head2 NextMarker => Str
77              
78             When response is truncated (the IsTruncated element value in the
79             response is true), you can use the key name in this field as marker in
80             the subsequent request to get next set of objects. Amazon S3 lists
81             objects in alphabetical order Note: This element is returned only if
82             you have delimiter request parameter specified. If response does not
83             include the NextMaker and it is truncated, you can use the value of the
84             last Key in the response as the marker in the subsequent request to get
85             the next set of object keys.
86              
87              
88              
89             =head2 Prefix => Str
90              
91              
92              
93              
94              
95              
96             =cut
97