| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::S3::ListBucketMetricsConfigurationsOutput; |
|
3
|
1
|
|
|
1
|
|
577
|
use Moose; |
|
|
1
|
|
|
|
|
5
|
|
|
|
1
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
|
|
has ContinuationToken => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool'); |
|
6
|
|
|
|
|
|
|
has MetricsConfigurationList => (is => 'ro', isa => 'ArrayRef[Paws::S3::MetricsConfiguration]', traits => ['NameInRequest'], request_name => 'MetricsConfiguration'); |
|
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::ListBucketMetricsConfigurationsOutput |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 ContinuationToken => Str |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The marker that is used as a starting point for this metrics |
|
24
|
|
|
|
|
|
|
configuration list response. This value is present if it was sent in |
|
25
|
|
|
|
|
|
|
the request. |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 IsTruncated => Bool |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Indicates whether the returned list of metrics configurations is |
|
32
|
|
|
|
|
|
|
complete. A value of true indicates that the list is not complete and |
|
33
|
|
|
|
|
|
|
the NextContinuationToken will be provided for a subsequent request. |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 MetricsConfigurationList => ArrayRef[L<Paws::S3::MetricsConfiguration>] |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The list of metrics configurations for a bucket. |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 NextContinuationToken => Str |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The marker used to continue a metrics configuration listing that has |
|
46
|
|
|
|
|
|
|
been truncated. Use the NextContinuationToken from a previously |
|
47
|
|
|
|
|
|
|
truncated list response to continue the listing. The continuation token |
|
48
|
|
|
|
|
|
|
is an opaque value that Amazon S3 understands. |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=cut |
|
54
|
|
|
|
|
|
|
|