line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::RedShift::HsmClientCertificateMessage; |
3
|
1
|
|
|
1
|
|
358
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has HsmClientCertificates => (is => 'ro', isa => 'ArrayRef[Paws::RedShift::HsmClientCertificate]', request_name => 'HsmClientCertificate', 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::HsmClientCertificateMessage |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 HsmClientCertificates => ArrayRef[L<Paws::RedShift::HsmClientCertificate>] |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
A list of the identifiers for one or more HSM client certificates used |
22
|
|
|
|
|
|
|
by Amazon Redshift clusters to store and retrieve database encryption |
23
|
|
|
|
|
|
|
keys in an HSM. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 Marker => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
A value that indicates the starting point for the next set of response |
29
|
|
|
|
|
|
|
records in a subsequent request. If a value is returned in a response, |
30
|
|
|
|
|
|
|
you can retrieve the next set of records by providing this returned |
31
|
|
|
|
|
|
|
marker value in the C<Marker> parameter and retrying the command. If |
32
|
|
|
|
|
|
|
the C<Marker> field is empty, all response records have been retrieved |
33
|
|
|
|
|
|
|
for the request. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 _request_id => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|