line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::RedShift::SnapshotCopyGrantMessage; |
3
|
1
|
|
|
1
|
|
365
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has SnapshotCopyGrants => (is => 'ro', isa => 'ArrayRef[Paws::RedShift::SnapshotCopyGrant]', request_name => 'SnapshotCopyGrant', 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::RedShift::SnapshotCopyGrantMessage |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 Marker => Str |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
An optional parameter that specifies the starting point to return a set |
22
|
|
|
|
|
|
|
of response records. When the results of a C<DescribeSnapshotCopyGrant> |
23
|
|
|
|
|
|
|
request exceed the value specified in C<MaxRecords>, AWS returns a |
24
|
|
|
|
|
|
|
value in the C<Marker> field of the response. You can retrieve the next |
25
|
|
|
|
|
|
|
set of response records by providing the returned marker value in the |
26
|
|
|
|
|
|
|
C<Marker> parameter and retrying the request. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Constraints: You can specify either the B<SnapshotCopyGrantName> |
29
|
|
|
|
|
|
|
parameter or the B<Marker> parameter, but not both. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 SnapshotCopyGrants => ArrayRef[L<Paws::RedShift::SnapshotCopyGrant>] |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The list of C<SnapshotCopyGrant> objects. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 _request_id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|