line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::S3::ListBucketAnalyticsConfigurationsOutput; |
3
|
1
|
|
|
1
|
|
555
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has AnalyticsConfigurationList => (is => 'ro', isa => 'ArrayRef[Paws::S3::AnalyticsConfiguration]', traits => ['NameInRequest'], request_name => 'AnalyticsConfiguration'); |
5
|
|
|
|
|
|
|
has ContinuationToken => (is => 'ro', isa => 'Str'); |
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::ListBucketAnalyticsConfigurationsOutput |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 AnalyticsConfigurationList => ArrayRef[L<Paws::S3::AnalyticsConfiguration>] |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The list of analytics configurations for a bucket. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 ContinuationToken => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The ContinuationToken that represents where this request began. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 IsTruncated => Bool |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Indicates whether the returned list of analytics configurations is |
36
|
|
|
|
|
|
|
complete. A value of true indicates that the list is not complete and |
37
|
|
|
|
|
|
|
the NextContinuationToken will be provided for a subsequent request. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 NextContinuationToken => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
NextContinuationToken is sent when isTruncated is true, which indicates |
44
|
|
|
|
|
|
|
that there are more analytics configurations to list. The next request |
45
|
|
|
|
|
|
|
must include this NextContinuationToken. The token is obfuscated and is |
46
|
|
|
|
|
|
|
not a usable value. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=cut |
52
|
|
|
|
|
|
|
|