line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ElastiCache::DescribeSnapshotsListMessage; |
3
|
1
|
|
|
1
|
|
547
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has Snapshots => (is => 'ro', isa => 'ArrayRef[Paws::ElastiCache::Snapshot]', request_name => 'Snapshot', traits => ['NameInRequest',]); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::ElastiCache::DescribeSnapshotsListMessage |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 Marker => Str |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
An optional marker returned from a prior request. Use this marker for |
22
|
|
|
|
|
|
|
pagination of results from this operation. If this parameter is |
23
|
|
|
|
|
|
|
specified, the response includes only records beyond the marker, up to |
24
|
|
|
|
|
|
|
the value specified by C<MaxRecords>. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 Snapshots => ArrayRef[L<Paws::ElastiCache::Snapshot>] |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
A list of snapshots. Each item in the list contains detailed |
30
|
|
|
|
|
|
|
information about one snapshot. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 _request_id => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
37
|
|
|
|
|
|
|
|