line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::S3::ListBucketInventoryConfigurationsOutput; |
3
|
1
|
|
|
1
|
|
564
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has ContinuationToken => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has InventoryConfigurationList => (is => 'ro', isa => 'ArrayRef[Paws::S3::InventoryConfiguration]', traits => ['NameInRequest'], request_name => 'InventoryConfiguration'); |
6
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool'); |
7
|
|
|
|
|
|
|
has NextContinuationToken => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::S3::ListBucketInventoryConfigurationsOutput |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 ContinuationToken => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
If sent in the request, the marker that is used as a starting point for |
24
|
|
|
|
|
|
|
this inventory configuration list response. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 InventoryConfigurationList => ArrayRef[L<Paws::S3::InventoryConfiguration>] |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The list of inventory configurations for a bucket. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 IsTruncated => Bool |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Indicates whether the returned list of inventory configurations is |
37
|
|
|
|
|
|
|
truncated in this response. A value of true indicates that the list is |
38
|
|
|
|
|
|
|
truncated. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 NextContinuationToken => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The marker used to continue this inventory configuration listing. Use |
45
|
|
|
|
|
|
|
the NextContinuationToken from this response to continue the listing in |
46
|
|
|
|
|
|
|
a subsequent request. The continuation token is an opaque value that |
47
|
|
|
|
|
|
|
Amazon S3 understands. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=cut |
53
|
|
|
|
|
|
|
|