line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SDB::DomainMetadataResult; |
3
|
1
|
|
|
1
|
|
467
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
382
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has AttributeNameCount => (is => 'ro', isa => 'Int'); |
5
|
|
|
|
|
|
|
has AttributeNamesSizeBytes => (is => 'ro', isa => 'Int'); |
6
|
|
|
|
|
|
|
has AttributeValueCount => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has AttributeValuesSizeBytes => (is => 'ro', isa => 'Int'); |
8
|
|
|
|
|
|
|
has ItemCount => (is => 'ro', isa => 'Int'); |
9
|
|
|
|
|
|
|
has ItemNamesSizeBytes => (is => 'ro', isa => 'Int'); |
10
|
|
|
|
|
|
|
has Timestamp => (is => 'ro', isa => 'Int'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::SDB::DomainMetadataResult |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 AttributeNameCount => Int |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The number of unique attribute names in the domain. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 AttributeNamesSizeBytes => Int |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The total size of all unique attribute names in the domain, in bytes. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 AttributeValueCount => Int |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The number of all attribute name/value pairs in the domain. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 AttributeValuesSizeBytes => Int |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The total size of all attribute values in the domain, in bytes. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 ItemCount => Int |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The number of all items in the domain. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 ItemNamesSizeBytes => Int |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The total size of all item names in the domain, in bytes. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 Timestamp => Int |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The data and time when metadata was calculated, in Epoch (UNIX) |
57
|
|
|
|
|
|
|
seconds. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 _request_id => Str |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |
64
|
|
|
|
|
|
|
|