line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::RedShift::ClusterVersionsMessage; |
3
|
1
|
|
|
1
|
|
403
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
404
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has ClusterVersions => (is => 'ro', isa => 'ArrayRef[Paws::RedShift::ClusterVersion]', request_name => 'ClusterVersion', traits => ['NameInRequest',]); |
5
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::RedShift::ClusterVersionsMessage |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 ClusterVersions => ArrayRef[L<Paws::RedShift::ClusterVersion>] |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
A list of C<Version> elements. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 Marker => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
A value that indicates the starting point for the next set of response |
27
|
|
|
|
|
|
|
records in a subsequent request. If a value is returned in a response, |
28
|
|
|
|
|
|
|
you can retrieve the next set of records by providing this returned |
29
|
|
|
|
|
|
|
marker value in the C<Marker> parameter and retrying the command. If |
30
|
|
|
|
|
|
|
the C<Marker> field is empty, all response records have been retrieved |
31
|
|
|
|
|
|
|
for the request. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 _request_id => Str |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |
38
|
|
|
|
|
|
|
|