File Coverage

blib/lib/Paws/S3/ListMultipartUploadsOutput.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::ListMultipartUploadsOutput;
3 1     1   766 use Moose;
  1     1   3  
  1         12  
  1         728  
  1         3  
  1         9  
4             has Bucket => (is => 'ro', isa => 'Str');
5             has CommonPrefixes => (is => 'ro', isa => 'ArrayRef[Paws::S3::CommonPrefix]');
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 MaxUploads => (is => 'ro', isa => 'Int');
11             has NextKeyMarker => (is => 'ro', isa => 'Str');
12             has NextUploadIdMarker => (is => 'ro', isa => 'Str');
13             has Prefix => (is => 'ro', isa => 'Str');
14             has UploadIdMarker => (is => 'ro', isa => 'Str');
15             has Uploads => (is => 'ro', isa => 'ArrayRef[Paws::S3::MultipartUpload]', traits => ['NameInRequest'], request_name => 'Upload');
16              
17             has _request_id => (is => 'ro', isa => 'Str');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::S3::ListMultipartUploadsOutput
25              
26             =head1 ATTRIBUTES
27              
28              
29             =head2 Bucket => Str
30              
31             Name of the bucket to which the multipart upload was initiated.
32              
33              
34              
35             =head2 CommonPrefixes => ArrayRef[L<Paws::S3::CommonPrefix>]
36              
37              
38              
39              
40              
41             =head2 Delimiter => Str
42              
43              
44              
45              
46              
47             =head2 EncodingType => Str
48              
49             Encoding type used by Amazon S3 to encode object keys in the response.
50              
51             Valid values are: C<"url">
52              
53             =head2 IsTruncated => Bool
54              
55             Indicates whether the returned list of multipart uploads is truncated.
56             A value of true indicates that the list was truncated. The list can be
57             truncated if the number of multipart uploads exceeds the limit allowed
58             or specified by max uploads.
59              
60              
61              
62             =head2 KeyMarker => Str
63              
64             The key at or after which the listing began.
65              
66              
67              
68             =head2 MaxUploads => Int
69              
70             Maximum number of multipart uploads that could have been included in
71             the response.
72              
73              
74              
75             =head2 NextKeyMarker => Str
76              
77             When a list is truncated, this element specifies the value that should
78             be used for the key-marker request parameter in a subsequent request.
79              
80              
81              
82             =head2 NextUploadIdMarker => Str
83              
84             When a list is truncated, this element specifies the value that should
85             be used for the upload-id-marker request parameter in a subsequent
86             request.
87              
88              
89              
90             =head2 Prefix => Str
91              
92             When a prefix is provided in the request, this field contains the
93             specified prefix. The result contains only keys starting with the
94             specified prefix.
95              
96              
97              
98             =head2 UploadIdMarker => Str
99              
100             Upload ID after which listing began.
101              
102              
103              
104             =head2 Uploads => ArrayRef[L<Paws::S3::MultipartUpload>]
105              
106              
107              
108              
109              
110              
111             =cut
112