line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::DynamoDB::ListTablesOutput; |
3
|
1
|
|
|
1
|
|
469
|
use Moose; |
|
1
|
|
|
1
|
|
4
|
|
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
519
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
12
|
|
4
|
|
|
|
|
|
|
has LastEvaluatedTableName => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has TableNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::DynamoDB::ListTablesOutput |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 LastEvaluatedTableName => Str |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The name of the last table in the current page of results. Use this |
21
|
|
|
|
|
|
|
value as the C<ExclusiveStartTableName> in a new request to obtain the |
22
|
|
|
|
|
|
|
next page of results, until all the table names are returned. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
If you do not receive a C<LastEvaluatedTableName> value in the |
25
|
|
|
|
|
|
|
response, this means that there are no more table names to be |
26
|
|
|
|
|
|
|
retrieved. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 TableNames => ArrayRef[Str|Undef] |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The names of the tables associated with the current account at the |
32
|
|
|
|
|
|
|
current endpoint. The maximum size of this array is 100. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
If C<LastEvaluatedTableName> also appears in the output, you can use |
35
|
|
|
|
|
|
|
this value as the C<ExclusiveStartTableName> parameter in a subsequent |
36
|
|
|
|
|
|
|
C<ListTables> request and obtain the next page of results. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 _request_id => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=cut |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
1; |